tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Makefile (524B)


      1 .PHONY: update
      2 
      3 warning = '\# Wasm Spec Tests\n\nThese tests are autogenerated using a tool, do not edit.\n\nSee `jit-test/etc/wasm/` for more information.'
      4 
      5 update:
      6 (cd ./generate-spectests && RUST_BACKTRACE=1 RUST_LOG=info cargo run --release)
      7 rm -r ../../tests/wasm/spec || echo "No tests to delete."
      8 cp -R generate-spectests/tests/js ../../tests/wasm/spec
      9 echo $(warning) > ../../tests/wasm/spec/README.md
     10 [ -f ./spec-tests.patch ] && (cd ../../tests/wasm/spec && patch -u -p7 < ../../../etc/wasm/spec-tests.patch)