[PATCH] D67655: lldb: move a test input to the test Inputs dir

Krasimir Georgiev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 17 05:21:31 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL372112: lldb: move a test input to the test Inputs dir (authored by krasimir, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D67655/new/

https://reviews.llvm.org/D67655

Files:
  lldb/trunk/lit/Commands/Inputs/main.c
  lldb/trunk/lit/Commands/command-script-import.test


Index: lldb/trunk/lit/Commands/command-script-import.test
===================================================================
--- lldb/trunk/lit/Commands/command-script-import.test
+++ lldb/trunk/lit/Commands/command-script-import.test
@@ -2,7 +2,7 @@
 # RUN: echo 'run' >> %t.in
 # RUN: echo 'command script import %S/Inputs/frame.py' >> %t.in
 
-# RUN: %clang -g -O0 %S/../Settings/Inputs/main.c -o %t.out
+# RUN: %clang -g -O0 %S/Inputs/main.c -o %t.out
 # RUN: %lldb -b -s %t.in %t.out | FileCheck %s
 
 # CHECK: frame #0
Index: lldb/trunk/lit/Commands/Inputs/main.c
===================================================================
--- lldb/trunk/lit/Commands/Inputs/main.c
+++ lldb/trunk/lit/Commands/Inputs/main.c
@@ -0,0 +1,2 @@
+int foo() { return 0; }
+int main() { return foo(); }


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D67655.220485.patch
Type: text/x-patch
Size: 794 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190917/def7c9d8/attachment.bin>


More information about the llvm-commits mailing list