aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Johnson <ehntoo@ehntoo.org>2022-09-04 17:30:34 -0400
committeriximeow <git@iximeow.net>2022-09-29 15:50:31 -0700
commitd9765358159886ce3be0031e409dec9443ea7e17 (patch)
tree52cefc67014eb77d0504190e289905175cb1f18f
parent5ddcc51fdee3460fa7aa7f79110d6e811389d080 (diff)
Fix Makefile execution on macOS
Apparently test execution under cargo is delegated and the --ignored flag was being consumed by cargo rather than the test executor. Pass the `--ignored` flag after a `--` to stop cargo processing the argument.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2dbd6e6..dd1bf7b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ test: test-fast test-exhaustive
test-fast: test-std test-no-std
test-exhaustive:
- cargo test --ignored
- cargo test --no-default-features --ignored
+ cargo test -- --ignored
+ cargo test --no-default-features -- --ignored
test-std:
cargo test