Changeset 3402 for trunk/essentials/dev-lang/python/Lib/test
- Timestamp:
- Jun 11, 2007, 12:50:36 AM (18 years ago)
- 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 1181 1181 test_sunaudiodev 1182 1182 """, 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 """, 1183 1208 'freebsd4': 1184 1209 """ -
trunk/essentials/dev-lang/python/Lib/test/test_tempfile.py
r3225 r3402 265 265 mode = stat.S_IMODE(os.stat(file.name).st_mode) 266 266 expected = 0600 267 if sys.platform in ('win32', 'os2emx', ' mac'):267 if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'): 268 268 # There's no distinction among 'user', 'group' and 'world'; 269 269 # replicate the 'user' bits. … … 484 484 mode &= 0777 # Mask off sticky bits inherited from /tmp 485 485 expected = 0700 486 if sys.platform in ('win32', 'os2emx', ' mac'):486 if sys.platform in ('win32', 'os2emx', 'os2knix', 'mac'): 487 487 # There's no distinction among 'user', 'group' and 'world'; 488 488 # replicate the 'user' bits.
Note:
See TracChangeset
for help on using the changeset viewer.