forked from OSchip/llvm-project
Move test dirs forward and function_types to now reside under lang/c.
llvm-svn: 133882
This commit is contained in:
parent
fb8cd3712a
commit
04d9e8323e
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c foo.c
|
||||
|
|
@ -7,7 +7,7 @@ from lldbtest import *
|
|||
|
||||
class ForwardDeclarationTestCase(TestBase):
|
||||
|
||||
mydir = "forward"
|
||||
mydir = os.path.join("lang", "c", "forward")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
def test_with_dsym_and_run_command(self):
|
|
@ -1,4 +1,4 @@
|
|||
LEVEL = ../make
|
||||
LEVEL = ../../../make
|
||||
|
||||
C_SOURCES := main.c
|
||||
|
|
@ -7,7 +7,7 @@ from lldbtest import *
|
|||
|
||||
class FunctionTypesTestCase(TestBase):
|
||||
|
||||
mydir = "function_types"
|
||||
mydir = os.path.join("lang", "c", "function_types")
|
||||
|
||||
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
|
||||
def test_with_dsym(self):
|
Loading…
Reference in New Issue