Chromium Code Reviews| Index: fetch-torture-tests.sh |
| diff --git a/fetch-torture-tests.sh b/fetch-torture-tests.sh |
| new file mode 100755 |
| index 0000000000000000000000000000000000000000..b16358fa54ae9779afecb996bee7489db9d798a0 |
| --- /dev/null |
| +++ b/fetch-torture-tests.sh |
| @@ -0,0 +1,15 @@ |
| +#!/bin/bash |
| + |
| +BUILDID=4915 |
| + |
| +wget https://storage.googleapis.com/wasm-llvm/builds/git/wasm-torture-s-$BUILDID.tbz2 |
| +tar xjf wasm-torture-s-$BUILDID.tbz2 |
| +rm wasm-torture-s-$BUILDID.tbz2 |
|
Jim Stichnoth
2016/04/14 20:03:43
How about something like this, to avoid temp files
Eric Holk
2016/04/15 15:24:26
Done.
I also tried to make this 80-col, but unfor
Jim Stichnoth
2016/04/15 19:47:25
Yeah, that's why I didn't comment on 80-col. :)
N
Eric Holk
2016/04/15 20:05:16
I like it. Done.
|
| + |
| +wget https://storage.googleapis.com/wasm-llvm/builds/git/wasm-torture-s2wasm-sexpr-wasm-$BUILDID.tbz2 |
| +tar xjf wasm-torture-s2wasm-sexpr-wasm-$BUILDID.tbz2 |
| +rm wasm-torture-s2wasm-sexpr-wasm-$BUILDID.tbz2 |
| + |
| +wget https://storage.googleapis.com/wasm-llvm/builds/git/wasm-binaries-$BUILDID.tbz2 |
| +tar xjf wasm-binaries-$BUILDID.tbz2 |
| +rm wasm-binaries-$BUILDID.tbz2 |