Add CI for ARM linux
diff --git a/ci/run.sh b/ci/run.sh
index 3f1f3bf..9e3e970 100644
--- a/ci/run.sh
+++ b/ci/run.sh
@@ -10,6 +10,8 @@
     adb wait-for-device
     adb push /root/target/$TARGET/debug/all-* /data/test
     adb shell /data/test
+elif [ "$TARGET" = "arm-unknown-linux-gnueabihf" ]; then
+    qemu-arm -L /usr/arm-linux-gnueabi /root/target/$TARGET/debug/all-*
 else
     cargo test --manifest-path libc-test/Cargo.toml --target $TARGET
 fi