summaryrefslogtreecommitdiff
path: root/ci/run.sh
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-09-17 15:18:18 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-09-17 15:19:58 -0700
commit684cfa46918d0c1a2591e7008e826d60d62c59b8 (patch)
tree7b40b595a4e0f9b646bbc7323dc32f29eeeeac0b /ci/run.sh
parent1ff961010ba16ccbdd74f88cf23fb11e413f6910 (diff)
downloadrust-libc-684cfa46918d0c1a2591e7008e826d60d62c59b8.tar.gz
Add aarch64 support/CI
Diffstat (limited to 'ci/run.sh')
-rw-r--r--ci/run.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/run.sh b/ci/run.sh
index 9604f1be11..16778a9872 100644
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -16,6 +16,8 @@ elif [ "$TARGET" = "mips-unknown-linux-gnu" ]; then
# FIXME: this segfaults on travis, passes locally?
#qemu-mips -L /usr/mips-linux-gnu libc-test/target/$TARGET/debug/all-*
echo skip
+elif [ "$TARGET" = "aarch64-unknown-linux-gnu" ]; then
+ qemu-aarch64 -L /usr/aarch64-linux-gnu/ libc-test/target/$TARGET/debug/libc-test
else
cargo run --manifest-path libc-test/Cargo.toml --target $TARGET
fi