Ignore:
Timestamp:
Jun 11, 2007, 12:50:36 AM (18 years ago)
Author:
bird
Message:

os2emx -> os2knix.

Location:
trunk/essentials/dev-lang/python/Lib/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/dev-lang/python/Lib/test/regrtest.py

    r3225 r3402  
    11811181        test_sunaudiodev
    11821182        """,
     1183    'os2knix':
     1184        """
     1185        test_al
     1186        test_applesingle
     1187        test_audioop
     1188        test_bsddb185
     1189        test_bsddb3
     1190        test_cd
     1191        test_cl
     1192        test_commands
     1193        test_dl
     1194        test_gl
     1195        test_imgfile
     1196        test_linuxaudiodev
     1197        test_mhlib
     1198        test_mmap
     1199        test_nis
     1200        test_openpty
     1201        test_ossaudiodev
     1202        test_pty
     1203        test_resource
     1204        test_sqlite
     1205        test_startfile
     1206        test_sunaudiodev
     1207        """,
    11831208    'freebsd4':
    11841209        """
  • trunk/essentials/dev-lang/python/Lib/test/test_tempfile.py

    r3225 r3402  
    265265        mode = stat.S_IMODE(os.stat(file.name).st_mode)
    266266        expected = 0600
    267         if sys.platform in ('win32', 'os2emx', 'mac'):
     267        if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    268268            # There's no distinction among 'user', 'group' and 'world';
    269269            # replicate the 'user' bits.
     
    484484            mode &= 0777 # Mask off sticky bits inherited from /tmp
    485485            expected = 0700
    486             if sys.platform in ('win32', 'os2emx', 'mac'):
     486            if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'):
    487487                # There's no distinction among 'user', 'group' and 'world';
    488488                # replicate the 'user' bits.
Note: See TracChangeset for help on using the changeset viewer.