We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29fb6c0 commit 2bd3ac5Copy full SHA for 2bd3ac5
Lib/test/test_platform.py
@@ -532,8 +532,10 @@ def test_ios_ver(self):
532
self.assertEqual(override.model, "Whiz")
533
self.assertTrue(override.is_simulator)
534
535
- @unittest.skipIf(support.is_emscripten, "Does not apply to Emscripten")
536
def test_libc_ver(self):
+ if support.is_emscripten:
537
+ assert platform.libc_ver() == ("emscripten", "4.0.12")
538
+ return
539
# check that libc_ver(executable) doesn't raise an exception
540
if os.path.isdir(sys.executable) and \
541
os.path.exists(sys.executable+'.exe'):
0 commit comments