aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-24 07:18:36 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-24 07:18:36 +0000
commit584425c301325cf6af714eb76554cceabfab626c (patch)
tree8f9f51116757b07c4ec7b3efea8f0406066e165c
parentee45d6dc89b8113c8065938a0d2b67a4cac77dd2 (diff)
cmake: Run tests with 'verbose' enabled by default, so that the failure is
visible in the log. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@82688 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index a557ff66e2..1ecdc53b75 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -41,7 +41,7 @@ if(PYTHONINTERP_FOUND)
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
COMMAND ${PYTHON_EXECUTABLE}
${LLVM_SOURCE_DIR}/utils/lit/lit.py
- -s ${CLANG_TEST_EXTRA_ARGS}
+ -sv ${CLANG_TEST_EXTRA_ARGS}
${CMAKE_CURRENT_BINARY_DIR}/${testdir}
DEPENDS clang clang-cc index-test
COMMENT "Running Clang regression tests in ${testdir}")
@@ -57,7 +57,7 @@ if(PYTHONINTERP_FOUND)
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
COMMAND ${PYTHON_EXECUTABLE}
${LLVM_SOURCE_DIR}/utils/lit/lit.py
- -s ${CLANG_TEST_EXTRA_ARGS}
+ -sv ${CLANG_TEST_EXTRA_ARGS}
${CMAKE_CURRENT_BINARY_DIR}
DEPENDS clang clang-cc index-test
COMMENT "Running Clang regression tests")
@@ -72,7 +72,7 @@ if(PYTHONINTERP_FOUND)
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
COMMAND ${PYTHON_EXECUTABLE}
${LLVM_SOURCE_DIR}/utils/lit/lit.py
- -s ${CLANG_TEST_EXTRA_ARGS}
+ -sv ${CLANG_TEST_EXTRA_ARGS}
${CMAKE_CURRENT_SOURCE_DIR}/../utils/C++Tests
DEPENDS clang clang-cc index-test
COMMENT "Running Clang regression tests")