summaryrefslogtreecommitdiff
path: root/ci/run.sh
diff options
context:
space:
mode:
authorKevin Brothaler <admin@digipom.com>2017-01-17 21:17:46 -0400
committerKevin Brothaler <admin@digipom.com>2017-01-17 21:19:30 -0400
commitf8e12769ca92363453587c7f4258cb0603be11f3 (patch)
treeb65de0cdde4f3de6172d3b22306f1b9a66856bc4 /ci/run.sh
parent938955c0f49fb4eacf4448d249184e52e3be7f45 (diff)
downloadrust-libc-f8e12769ca92363453587c7f4258cb0603be11f3.tar.gz
Replace Python script with Rust script.
Diffstat (limited to 'ci/run.sh')
-rwxr-xr-xci/run.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/run.sh b/ci/run.sh
index 3419090f0a..d33af30fd9 100755
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -114,11 +114,13 @@ case "$TARGET" in
;;
i386-apple-ios)
- python ./ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py $CARGO_TARGET_DIR/$TARGET/debug/libc-test
+ rustc -O ./ci/ios/deploy_and_run_on_ios_simulator.rs
+ ./deploy_and_run_on_ios_simulator $CARGO_TARGET_DIR/$TARGET/debug/libc-test
;;
x86_64-apple-ios)
- python ./ci/ios/deploy_and_run_ios_binary_on_ios_simulator.py $CARGO_TARGET_DIR/$TARGET/debug/libc-test
+ rustc -O ./ci/ios/deploy_and_run_on_ios_simulator.rs
+ ./deploy_and_run_on_ios_simulator $CARGO_TARGET_DIR/$TARGET/debug/libc-test
;;
arm-unknown-linux-gnueabihf)