50940aba5d
The skia gn/ninja build step and the emscripten build step were using a different set of defines. this violated assumptions of a couple of tests Change-Id: Id5364c0e1281b2e4024685fe8f106ee55c4961cb Reviewed-on: https://skia-review.googlesource.com/c/skia/+/338343 Commit-Queue: Nathaniel Nifong <nifong@google.com> Reviewed-by: Kevin Lubick <kjlubick@google.com>
24 lines
927 B
Makefile
24 lines
927 B
Makefile
run_local_debug:
|
|
rm -rf /tmp/wasm-gmtests/
|
|
mkdir /tmp/wasm-gmtests/
|
|
touch /tmp/wasm-gmtests/empty.txt
|
|
node run-wasm-gm-tests --js_file ../../out/wasm_gm_tests_debug/wasm_gm_tests.js \
|
|
--wasm_file ../../out/wasm_gm_tests_debug/wasm_gm_tests.wasm \
|
|
--resources ../../resources \
|
|
--known_hashes /tmp/wasm-gmtests/empty.txt \
|
|
--output /tmp/wasm-gmtests/ \
|
|
--use_gpu --timeout 600 \
|
|
--manual_mode
|
|
|
|
run_local:
|
|
rm -rf /tmp/wasm-gmtests/
|
|
mkdir /tmp/wasm-gmtests/
|
|
touch /tmp/wasm-gmtests/empty.txt
|
|
node run-wasm-gm-tests --js_file ../../out/wasm_gm_tests/wasm_gm_tests.js \
|
|
--wasm_file ../../out/wasm_gm_tests/wasm_gm_tests.wasm \
|
|
--resources ../../resources \
|
|
--known_hashes /tmp/wasm-gmtests/empty.txt \
|
|
--output /tmp/wasm-gmtests/ \
|
|
--use_gpu --timeout 220 \
|
|
--manual_mode
|