From 1b5736cc542fe930de85f72bb6e89fada4d18b34 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Thu, 29 Dec 2016 11:13:24 -0700 Subject: [PATCH] Add test clause (currently not working) --- cook.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cook.sh b/cook.sh index 75f10427a..2c798dccf 100755 --- a/cook.sh +++ b/cook.sh @@ -50,6 +50,12 @@ function op { xargo build --target "$TARGET" --release $CARGOFLAGS popd > /dev/null ;; + test) + pushd build > /dev/null + cp -r "$ROOT/Xargo.toml" "$ROOT/libc-artifacts" . + xargo test --no-run --target "$TARGET" --release $CARGOFLAGS + popd > /dev/null + ;; clean) pushd build > /dev/null xargo clean -- GitLab