diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08ef13e467..649ae45cb5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -123,7 +123,7 @@ jobs: run: npm run clean - name: Test experimental features env: - ASC_FEATURES: mutable-globals,threads,reference-types,bigint-integration,gc + ASC_FEATURES: threads,reference-types,bigint-integration,gc run: | npm run test:compiler rt/flags features/js-bigint-integration features/reference-types features/threads std-wasi/process std-wasi/crypto test-runtimes: diff --git a/tests/compiler.js b/tests/compiler.js index b641f3954c..affd483713 100644 --- a/tests/compiler.js +++ b/tests/compiler.js @@ -342,7 +342,6 @@ function runTest(basename) { } let rtracedBuffer = stdout.toBuffer(); const instantiateRtrace = section("instantiate rtrace"); - v8.setFlagsFromString("--experimental-wasm-bigint"); if (!testInstantiate(basename, rtracedBuffer, glue, stderr, config.asc_wasi)) { failed = true; failedTests.add(basename); @@ -350,7 +349,6 @@ function runTest(basename) { } else { instantiateRtrace.end(SUCCESS); } - v8.setFlagsFromString("--no-experimental-wasm-bigint"); }); }); if (failed) return 1; diff --git a/tests/features.json b/tests/features.json index 92adbebdef..07322b22df 100644 --- a/tests/features.json +++ b/tests/features.json @@ -1,6 +1,8 @@ { "mutable-globals": { }, + "bigint-integration": { + }, "nontrapping-f2i": { "asc_flags": [ "--enable nontrapping-f2i" @@ -40,11 +42,6 @@ "--experimental-wasm-gc" ] }, - "bigint-integration": { - "v8_flags": [ - "--experimental-wasm-bigint" - ] - }, "exception-handling": { "asc_flags": [ "--enable exception-handling"