|
@@ -145,23 +145,26 @@ endif
|
|
|
ifndef FAILLIST
|
|
|
export FAILLIST:=$(TEST_OUTPUTDIR)/faillist
|
|
|
endif
|
|
|
+export TEST_FAILLIST:=$(TEST_OUTPUTDIR)/faillist
|
|
|
|
|
|
ifndef LONGLOG
|
|
|
export LONGLOG:=$(TEST_OUTPUTDIR)/longlog
|
|
|
endif
|
|
|
+export TEST_LONGLOG:=$(TEST_OUTPUTDIR)/longlog
|
|
|
|
|
|
ifndef LOG
|
|
|
export LOG:=$(TEST_OUTPUTDIR)/log
|
|
|
endif
|
|
|
+export TEST_LOG:=$(TEST_OUTPUTDIR)/log
|
|
|
|
|
|
-ifndef SEPLOG
|
|
|
+ifndef TEST_SEPLOG
|
|
|
ifdef MAKEINC_SEPARATE
|
|
|
-export SEPLOG:=$(TEST_OUTPUTDIR)/seplog
|
|
|
+export TEST_SEPLOG:=$(TEST_OUTPUTDIR)/seplog
|
|
|
endif
|
|
|
endif
|
|
|
|
|
|
# locations of all logfiles
|
|
|
-LOGFILES=$(LOG) $(LONGLOG) $(FAILLIST) $(SEPLOG)
|
|
|
+LOGFILES=$(TEST_LOG) $(TEST_LONGLOG) $(TEST_FAILLIST) $(TEST_SEPLOG)
|
|
|
LOGEXT=.testlog .tbslog .tbflog .webtbslog .webtbflog
|
|
|
|
|
|
# Subdirs available in the test subdir
|