diff options
author | Alex Crichton <alex@alexcrichton.com> | 2017-09-05 20:18:21 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2017-09-05 20:18:21 -0700 |
commit | d2044231dc905d0a3b3f68a60e84dc4ae399ef7b (patch) | |
tree | a6951bc34fa5231efacaafab9c739a96856bb015 /ci/run.sh | |
parent | e102a7265104cc4ae7ddfe90f3dd4790456a5066 (diff) | |
download | rust-libc-d2044231dc905d0a3b3f68a60e84dc4ae399ef7b.tar.gz |
Remove caching and fix FreeBSD tests
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-x | ci/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,8 +41,8 @@ if [ "$QEMU" != "" ]; then # Do the standard rigamarole of cross-compiling an executable and then the # script to run just executes the binary. - cargo build --manifest-path libc-test/Cargo.toml --target $TARGET - cp $CARGO_TARGET_DIR/$TARGET/debug/libc-test $tmpdir/mount/ + cargo build --manifest-path libc-test/Cargo.toml --target $TARGET --tests + cp $CARGO_TARGET_DIR/$TARGET/debug/main-* $tmpdir/mount/libc-test echo 'exec $1/libc-test' > $tmpdir/mount/run.sh du -sh $tmpdir/mount |