< prev index next >

test/TestCommon.gmk

Print this page

        

*** 323,339 **** JT_HOME = $(JPRT_JTREG_HOME) endif endif # Problematic tests to be excluded ! PROBLEM_LISTS=$(call MixedDirs,$(wildcard ProblemList.txt)) # Create exclude list for this platform and arch ifdef NO_EXCLUDES JTREG_EXCLUSIONS = else ! JTREG_EXCLUSIONS = $(PROBLEM_LISTS:%=-exclude:%) endif # convert list of directories to dos paths define MixedDirs $(foreach i,$1,$(shell $(GETMIXEDPATH) "${i}")) --- 323,340 ---- JT_HOME = $(JPRT_JTREG_HOME) endif endif # Problematic tests to be excluded ! EXTRA_PROBLEM_LISTS := ! PROBLEM_LISTS := ProblemList.txt $(EXTRA_PROBLEM_LISTS) # Create exclude list for this platform and arch ifdef NO_EXCLUDES JTREG_EXCLUSIONS = else ! JTREG_EXCLUSIONS = $(addprefix -exclude:, $(wildcard $(PROBLEM_LISTS))) endif # convert list of directories to dos paths define MixedDirs $(foreach i,$1,$(shell $(GETMIXEDPATH) "${i}"))
< prev index next >