Changeset 10 for python/trunk/Lib/test


Ignore:
Timestamp:
Sep 3, 2010, 5:33:06 PM (15 years ago)
Author:
Yuri Dario
Message:

python: merged offline changes.

Location:
python/trunk/Lib/test
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • python/trunk/Lib/test/regrtest.py

    r2 r10  
    10371037        test_signal
    10381038        """,
     1039    'os2knix':
     1040        """
     1041        test_al
     1042        test_applesingle
     1043        test_audioop
     1044        test_bsddb185
     1045        test_bsddb3
     1046        test_cd
     1047        test_cl
     1048        test_commands
     1049        test_dl
     1050        test_gl
     1051        test_imgfile
     1052        test_linuxaudiodev
     1053        test_mhlib
     1054        test_mmap
     1055        test_nis
     1056        test_openpty
     1057        test_ossaudiodev
     1058        test_pty
     1059        test_resource
     1060        test_sqlite
     1061        test_startfile
     1062        test_sunaudiodev
     1063        """,
    10391064    'freebsd4':
    10401065        """
  • python/trunk/Lib/test/test_tempfile.py

    r2 r10  
    260260        mode = stat.S_IMODE(os.stat(file.name).st_mode)
    261261        expected = 0600
    262         if sys.platform in ('win32', 'os2emx', 'mac'):
     262        if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    263263            # There's no distinction among 'user', 'group' and 'world';
    264264            # replicate the 'user' bits.
     
    479479            mode &= 0777 # Mask off sticky bits inherited from /tmp
    480480            expected = 0700
    481             if sys.platform in ('win32', 'os2emx', 'mac'):
     481            if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    482482                # There's no distinction among 'user', 'group' and 'world';
    483483                # replicate the 'user' bits.
  • python/trunk/Lib/test/test_unicodedata.py

    r2 r10  
    7272        # but the other test cases will still be run
    7373        import unicodedata
    74         self.db = unicodedata
    7574
    7675    def tearDown(self):
Note: See TracChangeset for help on using the changeset viewer.