Skip to content

Commit

Permalink
Don't build browser files in release tests
Browse files Browse the repository at this point in the history
  • Loading branch information
copy committed Jul 11, 2022
1 parent aff546c commit f7e7777
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ build/integration-test-fs/fs.json:
tests: all-debug build/integration-test-fs/fs.json
./tests/full/run.js

tests-release: all build/integration-test-fs/fs.json
tests-release: build/libv86.js build/v86.wasm build/integration-test-fs/fs.json
TEST_RELEASE_BUILD=1 ./tests/full/run.js

nasmtests: all-debug
Expand All @@ -277,7 +277,7 @@ qemutests: all-debug
./tests/qemu/run-qemu.js > build/qemu-test-reference
diff build/qemu-test-result build/qemu-test-reference

qemutests-release: all
qemutests-release: build/libv86.js build/v86.wasm
$(MAKE) -C tests/qemu test-i386
TEST_RELEASE_BUILD=1 time ./tests/qemu/run.js > build/qemu-test-result
./tests/qemu/run-qemu.js > build/qemu-test-reference
Expand All @@ -287,7 +287,7 @@ kvm-unit-test: all-debug
(cd tests/kvm-unit-tests && ./configure && make x86/realmode.flat)
tests/kvm-unit-tests/run.js tests/kvm-unit-tests/x86/realmode.flat

kvm-unit-test-release: all
kvm-unit-test-release: build/libv86.js build/v86.wasm
(cd tests/kvm-unit-tests && ./configure && make x86/realmode.flat)
TEST_RELEASE_BUILD=1 tests/kvm-unit-tests/run.js tests/kvm-unit-tests/x86/realmode.flat

Expand Down

0 comments on commit f7e7777

Please sign in to comment.