[zorg] r351901 - [lldb-cmake-matrix] Remove test format
Jonas Devlieghere via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 22 16:10:31 PST 2019
Author: jdevlieghere
Date: Tue Jan 22 16:10:30 2019
New Revision: 351901
URL: http://llvm.org/viewvc/llvm-project?rev=351901&view=rev
Log:
[lldb-cmake-matrix] Remove test format
The test format `fm` is not unique for inline tests, causing issues when
concurrently execution two such tests at the same time. More
specifically, when the test has executed, the log file is renamed and
this fails when another instance already moved the file.
Modified:
zorg/trunk/zorg/jenkins/lldb-cmake-matrix-stage2.sh
Modified: zorg/trunk/zorg/jenkins/lldb-cmake-matrix-stage2.sh
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/lldb-cmake-matrix-stage2.sh?rev=351901&r1=351900&r2=351901&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/lldb-cmake-matrix-stage2.sh (original)
+++ zorg/trunk/zorg/jenkins/lldb-cmake-matrix-stage2.sh Tue Jan 22 16:10:30 2019
@@ -114,7 +114,7 @@ cmake $WORKSPACE/llvm \
-G Ninja \
-DLLDB_TEST_C_COMPILER="${HISTORIC_CLANG}" \
-DLLDB_TEST_CXX_COMPILER="${HISTORIC_CLANG}++" \
- -DLLDB_TEST_USER_ARGS="--framework;$BASE_BUILD/bin/LLDB.framework;--executable;$BASE_BUILD/bin/lldb;--skip-category;gmodules;--arch=x86_64;--build-dir;$BUILD;--session-file-format;fm;-s=$LOGS_DIR;--env;TERM=vt100;" \
+ -DLLDB_TEST_USER_ARGS="--framework;$BASE_BUILD/bin/LLDB.framework;--executable;$BASE_BUILD/bin/lldb;--skip-category;gmodules;--arch=x86_64;--build-dir;$BUILD;-s=$LOGS_DIR;--env;TERM=vt100;" \
-DLLVM_LIT_ARGS="--xunit-xml-output=$RESULTS_FILE -v"
echo "@@@@@@"
More information about the llvm-commits
mailing list