blob: 16ab12a82526cf565e5eabb801413f6b65ce9421 (
plain)
1
2
3
4
5
6
7
|
-include ../tools.mk
all:
# Running all the shards should hit every test
$(RUSTC) --test main.rs
$(call RUN,main) --test-shard 1.2 | grep "test_1 ... ok"
$(call RUN,main) --test-shard 2.2 | grep "test_2 ... ok"
|