We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2eff3d commit a785e5cCopy full SHA for a785e5c
runtimes/CMakeLists.txt
@@ -178,6 +178,12 @@ if(LLVM_INCLUDE_TESTS)
178
# Add a global check rule now that all subdirectories have been traversed
179
# and we know the total set of lit testsuites.
180
181
+ set(LIT_ARGS_DEFAULT "-sv --show-xfail --show-unsupported")
182
+ if (MSVC OR XCODE)
183
+ set(LIT_ARGS_DEFAULT "${LIT_ARGS_DEFAULT} --no-progress-bar")
184
+ endif()
185
+ set(LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT}" CACHE STRING "Default options for lit")
186
+
187
add_lit_target(check-runtimes
188
"Running all regression tests"
189
${RUNTIMES_LIT_TESTSUITES}
0 commit comments