From d1bb7be7d49754d6de7e9164f4edbcb02da02e72 Mon Sep 17 00:00:00 2001 From: Adam Dunkels Date: Tue, 11 Nov 2014 11:17:02 +0100 Subject: [PATCH] Need to have seed number included in filename, else the faillog files won't be reported at end of test --- regression-tests/Makefile.simulation-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests/Makefile.simulation-test b/regression-tests/Makefile.simulation-test index bc14c8b24..58818c328 100644 --- a/regression-tests/Makefile.simulation-test +++ b/regression-tests/Makefile.simulation-test @@ -29,7 +29,7 @@ TESTS=$(wildcard ??-*.csc) TESTLOGS=$(patsubst %.csc,%.testlog,$(TESTS)) LOGS=$(patsubst %.csc,%.log,$(TESTS)) -FAILLOGS=$(patsubst %.csc,%.faillog,$(TESTS)) +FAILLOGS=$(patsubst %.csc,%.*.faillog,$(TESTS)) #Set random seeds to create reproduceable results. RANDOMSEED=1 5