summaryrefslogtreecommitdiff
path: root/ci/run.sh
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-09-05 20:18:21 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-09-05 20:18:21 -0700
commitd2044231dc905d0a3b3f68a60e84dc4ae399ef7b (patch)
treea6951bc34fa5231efacaafab9c739a96856bb015 /ci/run.sh
parente102a7265104cc4ae7ddfe90f3dd4790456a5066 (diff)
downloadrust-libc-d2044231dc905d0a3b3f68a60e84dc4ae399ef7b.tar.gz
Remove caching and fix FreeBSD tests
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-xci/run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/run.sh b/ci/run.sh
index ddf18fd2aa..a4d0a97132 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -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