Browse Source

fail if test.c is found so i stop screwing myself up

Mike Frysinger 18 years ago
parent
commit
c40c7db317
1 changed files with 4 additions and 0 deletions
  1. 4 0
      test/Test.mak

+ 4 - 0
test/Test.mak

@@ -11,6 +11,10 @@ ifneq ($(TESTS_DISABLED),)
 TESTS := $(filter-out $(TESTS_DISABLED),$(TESTS))
 endif
 
+ifneq ($(filter-out test,$(TESTS)),$(TESTS))
+$(error Sanity check: cannot have a test named "test.c")
+endif
+
 include ../Rules.mak
 
 U_TARGETS := $(TESTS)