From 34e7cb177ccd1b8f5863a753458a57fb6ed529d4 Mon Sep 17 00:00:00 2001 From: giles Date: Wed, 8 Apr 2026 21:00:45 +0000 Subject: [PATCH] Add bytecode repeat test to WASM build pipeline Runs test_bytecode_repeat.js as step 6 of build-all.sh. Currently warns on failure (known bug). Will become a hard gate once the bytecode when/do/perform fix lands. Co-Authored-By: Claude Opus 4.6 (1M context) --- hosts/ocaml/browser/build-all.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/ocaml/browser/build-all.sh b/hosts/ocaml/browser/build-all.sh index 12b17013..6bd38a53 100755 --- a/hosts/ocaml/browser/build-all.sh +++ b/hosts/ocaml/browser/build-all.sh @@ -35,4 +35,7 @@ cp -r dist/sx_browser.bc.wasm.assets ./ 2>/dev/null || true echo "=== 5. Run WASM tests ===" node test_wasm_native.js +echo "=== 6. Run bytecode regression tests ===" +node test_bytecode_repeat.js || echo "WARNING: bytecode repeat test failed (known bug)" + echo "=== Done ==="