From 07ff16349dee03123e2f4e13b50bfb7ba5abcfa6 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 28 Aug 2025 11:34:43 -0700 Subject: [PATCH] Add `-Wno-experimental` to bigendian test suite. NFC The change to make this config as experimental (#25058) raced with that adding of the test suite (#25068). Adding `-Wno-experimental` here like we do for other such configurations (e.g. wasm64). --- test/test_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_core.py b/test/test_core.py index 2dd030198f360..636c4b14a295c 100644 --- a/test/test_core.py +++ b/test/test_core.py @@ -10053,7 +10053,7 @@ def setUp(self): # This setup will still use the native x64 Node.js in Emscripten internal use to compile code, but # runs all unit tests via qemu on the s390x big endian version of Node.js. -bigendian0 = make_run('bigendian0', cflags=['-O0'], settings={'SUPPORT_BIG_ENDIAN': 1}) +bigendian0 = make_run('bigendian0', cflags=['-O0', '-Wno-experimental'], settings={'SUPPORT_BIG_ENDIAN': 1}) # TestCoreBase is just a shape for the specific subclasses, we don't test it itself del TestCoreBase # noqa