mirror of
https://github.com/python/cpython.git
synced 2025-08-27 12:16:04 +00:00
bpo-35920: Windows 10 ARM32 platform support (GH-11774)
This commit is contained in:
parent
8c3ecc6bac
commit
62dfd7d6fe
17 changed files with 134 additions and 15 deletions
|
@ -10,6 +10,7 @@
|
|||
import unittest
|
||||
from test import support
|
||||
import os
|
||||
import platform
|
||||
import sys
|
||||
from os import path
|
||||
|
||||
|
@ -20,6 +21,7 @@ class TestCase(unittest.TestCase):
|
|||
def test_nonexisting(self):
|
||||
self.assertRaises(OSError, startfile, "nonexisting.vbs")
|
||||
|
||||
@unittest.skipIf(platform.win32_is_iot(), "starting files is not supported on Windows IoT Core or nanoserver")
|
||||
def test_empty(self):
|
||||
# We need to make sure the child process starts in a directory
|
||||
# we're not about to delete. If we're running under -j, that
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue