Skip to content

Commit 3740cb7

Browse files
jonathanpeppersjonpryor
authored andcommitted
[build] SKIP_NUNIT_TESTS check is reversed (#950)
When working with the `Makefile` I noticed this command doesn’t run the tests: ``` $ make run-nunit-tests make: Nothing to be done for `run-nunit-tests’. ``` And this command runs the tests: ``` $ make run-nunit-tests SKIP_NUNIT_TESTS=1 ``` I suspect the intention is that `ifneq` needs to be `ifeq`.
1 parent d871bf8 commit 3740cb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ define RUN_NUNIT_TEST
149149
endef
150150

151151
run-nunit-tests: $(NUNIT_TESTS)
152-
ifneq ($(SKIP_NUNIT_TESTS),)
152+
ifeq ($(SKIP_NUNIT_TESTS),)
153153
$(foreach t,$(NUNIT_TESTS), $(call RUN_NUNIT_TEST,$(t),1))
154154
endif # $(SKIP_NUNIT_TESTS) == ''
155155

0 commit comments

Comments
 (0)