mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
CI: Run test262 tests with optimized bytecode as well
This commit is contained in:
parent
1141e2b56a
commit
0eeba7084d
Notes:
sideshowbarker
2024-07-17 03:45:56 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/0eeba7084d Pull-request: https://github.com/SerenityOS/serenity/pull/16294
1 changed files with 8 additions and 1 deletions
9
.github/workflows/libjs-test262.yml
vendored
9
.github/workflows/libjs-test262.yml
vendored
|
@ -110,6 +110,7 @@ jobs:
|
|||
run: |
|
||||
cp -f ../libjs-website/test262/data/per-file-master.json .
|
||||
cp -f ../libjs-website/test262/data/per-file-bytecode-master.json .
|
||||
cp -f ../libjs-website/test262/data/per-file-bytecode-optimized-master.json .
|
||||
cp -f ../libjs-website/wasm/data/per-file-master.json wasm-per-file-master.json
|
||||
|
||||
- name: Run test262 and test262-parser-tests
|
||||
|
@ -121,7 +122,8 @@ jobs:
|
|||
--test262-parser-tests ../test262-parser-tests \
|
||||
--results-json ../libjs-website/test262/data/results.json \
|
||||
--per-file-output ../libjs-website/test262/data/per-file-master.json \
|
||||
--per-file-bytecode-output ../libjs-website/test262/data/per-file-bytecode-master.json
|
||||
--per-file-bytecode-output ../libjs-website/test262/data/per-file-bytecode-master.json \
|
||||
--per-file-bytecode-optimized-output ../libjs-website/test262/data/per-file-bytecode-optimized-master.json
|
||||
|
||||
- name: Run test-wasm
|
||||
working-directory: libjs-test262/Build
|
||||
|
@ -170,6 +172,11 @@ jobs:
|
|||
working-directory: libjs-test262
|
||||
run: ./per_file_result_diff.py -o per-file-bytecode-master.json -n ../libjs-website/test262/data/per-file-bytecode-master.json
|
||||
|
||||
- name: Compare optimized bytecode
|
||||
continue-on-error: true
|
||||
working-directory: libjs-test262
|
||||
run: ./per_file_result_diff.py -o per-file-bytecode-optimized-master.json -n ../libjs-website/test262/data/per-file-bytecode-optimized-master.json
|
||||
|
||||
- name: Compare wasm
|
||||
continue-on-error: true
|
||||
working-directory: libjs-test262
|
||||
|
|
Loading…
Reference in a new issue