[Lldb-commits] [lldb] r360761 - [lldb] [lit] Pass --mode=compile to fix compiler-full-path.test

Michal Gorny via lldb-commits lldb-commits at lists.llvm.org
Wed May 15 03:48:55 PDT 2019


Author: mgorny
Date: Wed May 15 03:48:55 2019
New Revision: 360761

URL: http://llvm.org/viewvc/llvm-project?rev=360761&view=rev
Log:
[lldb] [lit] Pass --mode=compile to fix compiler-full-path.test

Pass '--mode=compile' to fix compiler-full-path.test failure on NetBSD
buildbot (apparently due to lack of 'link' executable).

Fixes r360355.  Acked by Pavel Labath.

Modified:
    lldb/trunk/lit/BuildScript/compiler-full-path.test

Modified: lldb/trunk/lit/BuildScript/compiler-full-path.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/BuildScript/compiler-full-path.test?rev=360761&r1=360760&r2=360761&view=diff
==============================================================================
--- lldb/trunk/lit/BuildScript/compiler-full-path.test (original)
+++ lldb/trunk/lit/BuildScript/compiler-full-path.test Wed May 15 03:48:55 2019
@@ -1,7 +1,8 @@
-RUN: %build -n --verbose --arch=64 --compiler=/path/to/my/clang -o foo \
-RUN:    foobar.c | FileCheck %s --check-prefix=CHECK-CLANG
-RUN: %build -n --verbose --arch=64 --compiler=/path/to/my/x64/cl.exe -o foo \
-RUN:    foobar.c | FileCheck %s --check-prefix=CHECK-MSVC
+RUN: %build -n --mode=compile --verbose --arch=64 --compiler=/path/to/my/clang \
+RUN:    -o foo foobar.c | FileCheck %s --check-prefix=CHECK-CLANG
+RUN: %build -n --mode=compile --verbose --arch=64 \
+RUN:    --compiler=/path/to/my/x64/cl.exe -o foo foobar.c | \
+RUN:    FileCheck %s --check-prefix=CHECK-MSVC
 
 CHECK-CLANG: Command Line: /path/to/my/clang
 CHECK-SAME: -o




More information about the lldb-commits mailing list