Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions zorg/jenkins/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def cmake_builder(target):
cmake_cmd += ['-DCMAKE_CXX_COMPILER_LAUNCHER=' + conf.sccache_path]

timeout_flag = '--timeout=' + str(conf.timeout)
lit_flags = ['--xunit-xml-output=testresults.xunit.xml', '-v', '-vv', '--time-tests', timeout_flag]
lit_flags = ['--xunit-xml-output=testresults.xunit.xml', '-v', '-vv', timeout_flag]
if conf.max_parallel_tests:
lit_flags += ['-j', conf.max_parallel_tests]
cmake_cmd += ['-DLLVM_LIT_ARGS={}'.format(' '.join(lit_flags))]
Expand Down Expand Up @@ -448,7 +448,7 @@ def clang_builder(target):
'-DCMAKE_CXX_COMPILER=' + conf.CC() + "++"])

timeout_flag = '--timeout=' + str(conf.timeout)
lit_flags = ['--xunit-xml-output=testresults.xunit.xml', '-v', '-vv', '--time-tests', timeout_flag]
lit_flags = ['--xunit-xml-output=testresults.xunit.xml', '-v', '-vv', timeout_flag]

if conf.max_parallel_tests:
lit_flags += ['-j', conf.max_parallel_tests]
Expand Down
2 changes: 1 addition & 1 deletion zorg/jenkins/jobs/jobs/clang-stage2-cmake-RgSan
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pipeline {
--projects="clang;clang-tools-extra" \
--cmake-flag='-DLLVM_USE_SANITIZER=Address;Undefined' \
--cmake-flag="-DLIBCXX_INCLUDE_TESTS=OFF" \
--timeout=2400 \
--timeout=1800 \
--cmake-flag="-DPython3_EXECUTABLE=$(which python)"
'''
}
Expand Down