conversion from .lyx
[fw/sdcc] / support / regression / Makefile
index 5d596da459177266290ac218c150ddc74a145091..1b3e6d5de2249e6db10ee10fed4df583d6c57f59 100644 (file)
@@ -26,7 +26,7 @@
 # The paths below assume that sdcc, sdcc-extra, and gbdk-lib all reside in
 # the same directory.
 
-# Old nores:
+# Old notes:
 # Starting at the bottom
 # Set of source test suites
 # Each source suite is processesd producing multiple device specific test suites.
@@ -61,10 +61,23 @@ GENERATE_CASES = generate-cases.py
 # files and how to run the emulator.
 ALL_PORTS = $(filter-out CVS,$(notdir $(wildcard $(PORTS_DIR)/*)))
 
+all: test-ports
+
 # Test all of the ports
 test-ports:
        for i in $(ALL_PORTS); do $(MAKE) inter-port-clean test-port PORT=$$i; done
 
+# Helper rule for testing the z80 port only
+test-z80:
+       $(MAKE) inter-port-clean clean test-port PORT=z80
+
+# Helper rule for testing the host cc only
+test-host:
+       $(MAKE) inter-port-clean clean test-port PORT=host
+
+test-host2:
+       $(MAKE) test-port PORT=host
+
 # Begin per-port rules
 # List of all of the known source test suites.
 ALL_TESTS = $(shell find $(TESTS_DIR) -name "*.c")
@@ -103,6 +116,7 @@ SDCCFLAGS += -Ifwk/include
 
 # Rule to generate the iterations of a test suite off the soure suite.
 $(PORT_CASES_DIR)/%$(DIREXT): $(TESTS_DIR)/%.c $(GENERATE_CASES)
+       echo Processing $<
        rm -rf $(CASES_DIR)/tests
        mkdir -p $(CASES_DIR)/tests
        mkdir -p $@
@@ -129,7 +143,7 @@ test-port: port-results
 # test
 
 # List of all of the generated iteration source files.
-SUB_CASES = $(wildcard $(CASES)/*.c)
+SUB_CASES = $(sort $(wildcard $(CASES)/*.c))
 # List of all the sub result logs generated from the iterations.
 SUB_RESULTS = $(SUB_CASES:%.c=%.out)
 # Overall target.  Concatenation of all of the sub results.