|
28 | 28 | raise Exception('do not run this file directly; do something like: test/runner other')
|
29 | 29 |
|
30 | 30 | from tools.shared import config
|
31 |
| -from tools.shared import EMCC, EMXX, EMAR, EMRANLIB, FILE_PACKAGER, WINDOWS, LLVM_NM |
| 31 | +from tools.shared import EMCC, EMXX, EMAR, EMRANLIB, FILE_PACKAGER, LLVM_NM |
32 | 32 | from tools.shared import CLANG_CC, CLANG_CXX, LLVM_AR, LLVM_DWARFDUMP, LLVM_DWP, EMCMAKE, EMCONFIGURE, WASM_LD
|
33 | 33 | from common import RunnerCore, path_from_root, is_slow_test, ensure_dir, disabled, make_executable
|
34 | 34 | from common import env_modify, no_mac, no_windows, only_windows, requires_native_clang, with_env_modify
|
|
40 | 40 | from common import EMTEST_BUILD_VERBOSE, PYTHON, WEBIDL_BINDER
|
41 | 41 | from common import requires_network
|
42 | 42 | from tools import shared, building, utils, response_file, cache
|
43 |
| -from tools.utils import read_file, write_file, delete_file, read_binary |
| 43 | +from tools.utils import read_file, write_file, delete_file, read_binary, MACOS, WINDOWS |
44 | 44 | import common
|
45 | 45 | import jsrun
|
46 | 46 | import clang_native
|
@@ -5721,6 +5721,8 @@ def test_only_force_stdlibs_2(self):
|
5721 | 5721 | @crossplatform
|
5722 | 5722 | @also_with_env_modify({'gb_locale': {'LC_ALL': 'en_GB'}, 'long_tz': {'TZ': 'Asia/Kathmandu'}})
|
5723 | 5723 | def test_strftime_zZ(self):
|
| 5724 | + if os.environ.get('LC_ALL') == 'en_GB' and MACOS: |
| 5725 | + self.skipTest('setting LC_ALL is not compatible with macOS python') |
5724 | 5726 | self.do_runf('other/test_strftime_zZ.c', 'ok!')
|
5725 | 5727 |
|
5726 | 5728 | def test_strptime_symmetry(self):
|
|
0 commit comments