Skip to content

Commit

Permalink
Remoev hard-coded plan list from ci-test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon committed Sep 27, 2020
1 parent e77426a commit 5265786
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ python examples/build.py

# Test with DummyVM (each test in a separate run)
cd vmbindings/dummyvm
for p in nogc semispace; do
for p in $(find ../../src/plan -mindepth 1 -type d | xargs -L 1 basename); do
for t in $(ls src/tests/ -I mod.rs | sed -n 's/\.rs$//p'); do
cargo test --features $p -- $t;
done;
Expand Down

0 comments on commit 5265786

Please sign in to comment.