forked from OSchip/llvm-project
When testing with VERBOSE=0, report results in the ISO format. We
include the triplet so that people that run multiple targets in parallel, say i386 and x86_64 can distinguish between the two. llvm-svn: 66849
This commit is contained in:
parent
34c4187152
commit
39eaa7bc67
|
@ -10,8 +10,13 @@ TESTDIRS +=
|
|||
endif
|
||||
|
||||
ifdef VERBOSE
|
||||
ifeq ($(VERBOSE),0)
|
||||
PROGRESS = :
|
||||
REPORTFAIL = echo 'FAILED: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
|
||||
else
|
||||
PROGRESS = echo $<
|
||||
REPORTFAIL = cat $@
|
||||
endif
|
||||
DONE = true
|
||||
else
|
||||
PROGRESS = printf '.'
|
||||
|
|
Loading…
Reference in New Issue