[zorg] r351908 - [zorg] Remove --session-file-format from LLDB test suite

Jonas Devlieghere via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 22 16:38:36 PST 2019


Author: jdevlieghere
Date: Tue Jan 22 16:38:35 2019
New Revision: 351908

URL: http://llvm.org/viewvc/llvm-project?rev=351908&view=rev
Log:
[zorg] Remove --session-file-format from LLDB test suite

Removes the session format specifier (`--session-file-format fm`) from
the lldb test suite invocations. The format is not unique for inline
tests and cause problems when multiple of those are running
concurrently. The default format is perfectly fine and the bots don't
care about the log's filename.

Modified:
    zorg/trunk/zorg/jenkins/build.py

Modified: zorg/trunk/zorg/jenkins/build.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/jenkins/build.py?rev=351908&r1=351907&r2=351908&view=diff
==============================================================================
--- zorg/trunk/zorg/jenkins/build.py (original)
+++ zorg/trunk/zorg/jenkins/build.py Tue Jan 22 16:38:35 2019
@@ -555,7 +555,6 @@ def lldb_builder():
             "--executable", os.path.join(built_products_dir, "lldb"),
             "-C", effective_clang,
             "--arch", arch,
-            "--session-file-format", "fm",
             "--results-formatter",
             "lldbsuite.test_event.formatter.xunit.XunitFormatter",
             "--results-file", results_file,
@@ -586,7 +585,6 @@ def lldb_cmake_builder():
     header("Configure")
     dotest_args=['--arch', 'x86_64', '--build-dir',
                  conf.lldbbuilddir()+'/lldb-test-build.noindex',
-                 '--session-file-format' , 'fm',
                  '-s='+log_dir,
                  '-t',
                  '--env', 'TERM=vt100']




More information about the llvm-commits mailing list