@@ -15,9 +15,11 @@ def clear_caches(self):
15
15
platform ._sys_version_cache .clear ()
16
16
platform ._uname_cache = None
17
17
18
+ @unittest .skip ("TODO: RUSTPYTHON" )
18
19
def test_architecture (self ):
19
20
res = platform .architecture ()
20
21
22
+ @unittest .skip ("TODO: RUSTPYTHON" )
21
23
@support .skip_unless_symlink
22
24
def test_architecture_via_symlink (self ): # issue3762
23
25
# On Windows, the EXE needs to know where pythonXY.dll and *.pyd is at
@@ -85,6 +87,7 @@ def tearDown(self):
85
87
sys ._git = self .save_git
86
88
sys .platform = self .save_platform
87
89
90
+ @support .cpython_only
88
91
def test_sys_version (self ):
89
92
# Old test.
90
93
for input , output in (
@@ -269,6 +272,7 @@ def test_mac_ver_with_fork(self):
269
272
self .assertEqual (cpid , pid )
270
273
self .assertEqual (sts , 0 )
271
274
275
+ @unittest .skip ("TODO: RUSTPYTHON" )
272
276
def test_libc_ver (self ):
273
277
# check that libc_ver(executable) doesn't raise an exception
274
278
if os .path .isdir (sys .executable ) and \
@@ -349,6 +353,7 @@ def test__comparable_version(self):
349
353
self .assertLess (V ('0.960923' ), V ('2.2beta29' ))
350
354
351
355
356
+ @unittest .skip ("TODO: RUSTPYTHON" )
352
357
def test_macos (self ):
353
358
self .addCleanup (self .clear_caches )
354
359
0 commit comments