Add version information to ISO style test results.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67227 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Mike Stump 2009-03-18 20:25:18 +00:00
Родитель 299e829512
Коммит 9a2f1acf79
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -13,11 +13,12 @@ ifdef VERBOSE
ifeq ($(VERBOSE),0)
PROGRESS = :
REPORTFAIL = echo 'FAIL: clang' $(TARGET_TRIPLE) $(subst $(LLVM_SRC_ROOT)/tools/clang/,,$<)
DONE = $(LLVMToolDir)/clang-driver -v
else
PROGRESS = echo $<
REPORTFAIL = cat $@
endif
DONE = true
endif
else
PROGRESS = printf '.'
REPORTFAIL = (echo; echo '----' $< 'failed ----')