[Python-checkins] python/dist/src/Lib/test regrtest.py,1.126,1.127 test_posix.py,1.1,1.2

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 17 Feb 2003 13:48:51 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv15332/Lib/test

Modified Files:
	regrtest.py test_posix.py 
Log Message:
test_posix is an expected skip on Win32.  Also fixed test_posix to
import from test.test_support instead of directly from test_support.


Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.126
retrieving revision 1.127
diff -C2 -d -r1.126 -r1.127
*** regrtest.py	14 Feb 2003 19:29:22 -0000	1.126
--- regrtest.py	17 Feb 2003 21:48:47 -0000	1.127
***************
*** 573,576 ****
--- 573,577 ----
          test_ossaudiodev
          test_poll
+         test_posix
          test_pty
          test_pwd

Index: test_posix.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_posix.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_posix.py	17 Feb 2003 18:17:05 -0000	1.1
--- test_posix.py	17 Feb 2003 21:48:48 -0000	1.2
***************
*** 1,5 ****
  "Test posix functions"
  
! from test_support import TestSkipped, TestFailed, TESTFN, run_suite
  
  try:
--- 1,5 ----
  "Test posix functions"
  
! from test.test_support import TestSkipped, TestFailed, TESTFN, run_suite
  
  try: