forked from OSchip/llvm-project
Move C++-related test directories to now reside under lang.
llvm-svn: 133878
This commit is contained in:
parent
33e89de95a
commit
91b6b77795
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := pass-to-base.cpp
|
||||
|
|
@ -10,7 +10,7 @@ from lldbtest import *
|
|||
|
||||
class DynamicValueTestCase(TestBase):
|
||||
|
||||
mydir = os.path.join("cpp", "dynamic-value")
|
||||
mydir = os.path.join("lang", "cpp", "dynamic-value")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
@python_api_test
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
CXX_SOURCES := main.cpp
|
||||
|
|
@ -12,7 +12,7 @@ def Msg(expr, val):
|
|||
|
||||
class CppVirtualMadness(TestBase):
|
||||
|
||||
mydir = os.path.join("cpp", "virtual")
|
||||
mydir = os.path.join("lang", "cpp", "virtual")
|
||||
|
||||
# This is the pattern by design to match the "my_expr = 'value'" output from
|
||||
# printf() stmts (see main.cpp).
|
Loading…
Reference in New Issue