Move C++-related test directories to now reside under lang.

llvm-svn: 133878
This commit is contained in:
Johnny Chen 2011-06-25 20:19:47 +00:00
parent 33e89de95a
commit 91b6b77795
6 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
LEVEL = ../../make
LEVEL = ../../../make
CXX_SOURCES := pass-to-base.cpp

View File

@ -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

View File

@ -1,4 +1,4 @@
LEVEL = ../../make
LEVEL = ../../../make
CXX_SOURCES := main.cpp

View File

@ -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).