[Python-checkins] CVS: python/nondist/peps pep-0200.txt,1.17,1.18

Tim Peters python-dev@python.org
Sat, 19 Aug 2000 22:59:29 -0700


Update of /cvsroot/python/python/nondist/peps
In directory slayer.i.sourceforge.net:/tmp/cvs-serv1542

Modified Files:
	pep-0200.txt 
Log Message:
Closed the "test_popen2 fails under Windows" bug -- although I'm
only sure about that for Win98SE.
Moved the test_fork1 bug up to the top since it's the only
interesting std test failure remaining.


Index: pep-0200.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0200.txt,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** pep-0200.txt	2000/08/20 03:25:22	1.17
--- pep-0200.txt	2000/08/20 05:59:27	1.18
***************
*** 91,94 ****
--- 91,104 ----
      test case         platform   R B    date reported
      ---------         --------   - -    -------------
+     test_fork1        Linux      X      26-Jul-2000     just SMP?
+         [no clue; there are probably two bugs here]
+         [19-Aug-200 tim
+          Charles Waldman whipped up a patch to give child processes a new
+          "global lock":
+          http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
+          While this doesn't appear to address the symptoms we *saw*, it
+          *does* so far appear to be fixing the failing cases anyway
+         ]
+ 
      test_winreg2      Win32      X X    26-Jul-2000
          [19-Aug-2000 tim
***************
*** 103,107 ****
--- 113,134 ----
          ]
  
+ 
+ Previously failing test cases
+ 
+     If you find a test bouncing between this section and the previous one,
+     the code it's testing is in trouble!
+ 
+     test case         platform   R B    date reported
+     ---------         --------   - -    -------------
      test_popen2       Win32      X X    26-Jul-2000
+         [20-Aug-2000 tim
+          changed the popen2.py _test function to use the "more" cmd
+          when os.name == "nt".  This makes test_popen2 pass under
+          Win98SE.
+          HOWEVER, the Win98 "more" invents a leading newline out
+          of thin air, and I'm not sure that the other Windows flavors
+          of "more" also do that.
+          So, somebody please try under other Windows flavors!
+         ]
          [still fails 15-Aug-2000 for me, on Win98 - tim
               test test_popen2 crashed -- exceptions.AssertionError :
***************
*** 112,133 ****
          ]
  
-     test_fork1        Linux      X      26-Jul-2000     just SMP?
-         [no clue; there are probably two bugs here]
-         [19-Aug-200 tim
-          Charles Waldman whipped up a patch to give child processes a new
-          "global lock":
-          http://sourceforge.net/patch/?func=detailpatch&patch_id=101226&group_id=5470
-          While this doesn't appear to address the symptoms we *saw*, it
-          *does* so far appear to be fixing the failing cases anyway
-         ]
- 
- 
- Previously failing test cases
- 
-     If you find a test bouncing between this section and the previous one,
-     the code it's testing is in trouble!
- 
-     test case         platform   R B    date reported
-     ---------         --------   - -    -------------
      test_winreg        Win32     X X    26-Jul-2000
          [works 15-Aug-2000 for me, on Win98 - tim]
--- 139,142 ----