diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-01 13:36:44 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-01 13:36:44 +0000 |
commit | 3e15a7a147e95fa99aab95aa9541ab46ba96b2a2 (patch) | |
tree | 751f17a225e8a869af2203411be9de0ada8d3b85 /lldb/packages/Python/lldbsuite/test/commands/frame | |
parent | 27cc2efaf2afba22c961c1e3a5c3b7e6da89fc2f (diff) | |
download | bcm5719-llvm-3e15a7a147e95fa99aab95aa9541ab46ba96b2a2.tar.gz bcm5719-llvm-3e15a7a147e95fa99aab95aa9541ab46ba96b2a2.zip |
[lldb][NFC] Fix failing tests after restructuring test folder
Just adjusts all the relative paths in the Makefiles (and
the breakpoint test which seems to rely on the name of its
folder).
llvm-svn: 370611
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/frame')
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile b/lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile index cb1af719ac3..127cea792d2 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile +++ b/lldb/packages/Python/lldbsuite/test/commands/frame/language/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../../make +LEVEL = ../../../make CXX_SOURCES := main.cpp other.cpp other-2.cpp C_SOURCES := somefunc.c diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile b/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile index f5a47fcc46c..cd9ca5c86d8 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile +++ b/lldb/packages/Python/lldbsuite/test/commands/frame/var-scope/Makefile @@ -1,3 +1,3 @@ -LEVEL = ../../make +LEVEL = ../../../make C_SOURCES := main.c include $(LEVEL)/Makefile.rules diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile b/lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile index 50d4ab65a6e..6067ee45e98 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile +++ b/lldb/packages/Python/lldbsuite/test/commands/frame/var/Makefile @@ -1,4 +1,4 @@ -LEVEL = ../../make +LEVEL = ../../../make C_SOURCES := main.c CFLAGS_EXTRAS += -std=c99 |