From d9765358159886ce3be0031e409dec9443ea7e17 Mon Sep 17 00:00:00 2001 From: Mitchell Johnson Date: Sun, 4 Sep 2022 17:30:34 -0400 Subject: 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. --- Makefile | 4 ++-- 1 file 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 -- cgit v1.1