summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-06-25 20:43:57 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-06-25 20:43:57 +0000
commitfb8cd3712a3ac971580753150f969c8755f0f26f (patch)
treef1c0934293ead2b61c559864de1b95cf65ee82c2 /lldb
parent6684b1e19aadf23dd2b9d8dc64a2f7a3d0c3122d (diff)
downloadbcm5719-llvm-fb8cd3712a3ac971580753150f969c8755f0f26f.tar.gz
bcm5719-llvm-fb8cd3712a3ac971580753150f969c8755f0f26f.zip
Move some directories to now reside under lang/c or lang/cpp.
llvm-svn: 133881
Diffstat (limited to 'lldb')
-rw-r--r--lldb/test/lang/c/array_types/Makefile (renamed from lldb/test/array_types/Makefile)2
-rw-r--r--lldb/test/lang/c/array_types/TestArrayTypes.py (renamed from lldb/test/array_types/TestArrayTypes.py)2
-rw-r--r--lldb/test/lang/c/array_types/cmds.txt (renamed from lldb/test/array_types/cmds.txt)0
-rw-r--r--lldb/test/lang/c/array_types/main.c (renamed from lldb/test/array_types/main.c)0
-rw-r--r--lldb/test/lang/c/bitfields/Makefile (renamed from lldb/test/bitfields/Makefile)2
-rw-r--r--lldb/test/lang/c/bitfields/TestBitfields.py (renamed from lldb/test/bitfields/TestBitfields.py)2
-rw-r--r--lldb/test/lang/c/bitfields/main.c (renamed from lldb/test/bitfields/main.c)0
-rw-r--r--lldb/test/lang/cpp/class_static/Makefile (renamed from lldb/test/signed_types/Makefile)2
-rw-r--r--lldb/test/lang/cpp/class_static/TestStaticVariables.py (renamed from lldb/test/class_static/TestStaticVariables.py)2
-rw-r--r--lldb/test/lang/cpp/class_static/main.cpp (renamed from lldb/test/class_static/main.cpp)0
-rw-r--r--lldb/test/lang/cpp/class_types/Makefile (renamed from lldb/test/unique-types/Makefile)2
-rw-r--r--lldb/test/lang/cpp/class_types/TestClassTypes.py (renamed from lldb/test/class_types/TestClassTypes.py)2
-rw-r--r--lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py (renamed from lldb/test/class_types/TestClassTypesDisassembly.py)2
-rw-r--r--lldb/test/lang/cpp/class_types/cmds.txt (renamed from lldb/test/class_types/cmds.txt)0
-rw-r--r--lldb/test/lang/cpp/class_types/main.cpp (renamed from lldb/test/class_types/main.cpp)0
-rw-r--r--lldb/test/lang/cpp/signed_types/Makefile (renamed from lldb/test/class_static/Makefile)2
-rw-r--r--lldb/test/lang/cpp/signed_types/TestSignedTypes.py (renamed from lldb/test/signed_types/TestSignedTypes.py)2
-rw-r--r--lldb/test/lang/cpp/signed_types/main.cpp (renamed from lldb/test/signed_types/main.cpp)0
-rw-r--r--lldb/test/lang/cpp/unique-types/Makefile (renamed from lldb/test/class_types/Makefile)2
-rw-r--r--lldb/test/lang/cpp/unique-types/TestUniqueTypes.py (renamed from lldb/test/unique-types/TestUniqueTypes.py)2
-rw-r--r--lldb/test/lang/cpp/unique-types/main.cpp (renamed from lldb/test/unique-types/main.cpp)0
-rw-r--r--lldb/test/lang/cpp/unsigned_types/Makefile5
-rw-r--r--lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py (renamed from lldb/test/unsigned_types/TestUnsignedTypes.py)2
-rw-r--r--lldb/test/lang/cpp/unsigned_types/main.cpp (renamed from lldb/test/unsigned_types/main.cpp)0
-rw-r--r--lldb/test/unsigned_types/Makefile5
25 files changed, 19 insertions, 19 deletions
diff --git a/lldb/test/array_types/Makefile b/lldb/test/lang/c/array_types/Makefile
index d6cd0db0506..b09a579159d 100644
--- a/lldb/test/array_types/Makefile
+++ b/lldb/test/lang/c/array_types/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
C_SOURCES := main.c
diff --git a/lldb/test/array_types/TestArrayTypes.py b/lldb/test/lang/c/array_types/TestArrayTypes.py
index 7d5eea1d3ce..81cb65fd0d8 100644
--- a/lldb/test/array_types/TestArrayTypes.py
+++ b/lldb/test/lang/c/array_types/TestArrayTypes.py
@@ -7,7 +7,7 @@ from lldbtest import *
class ArrayTypesTestCase(TestBase):
- mydir = "array_types"
+ mydir = os.path.join("lang", "c", "array_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
diff --git a/lldb/test/array_types/cmds.txt b/lldb/test/lang/c/array_types/cmds.txt
index 8feebe21204..8feebe21204 100644
--- a/lldb/test/array_types/cmds.txt
+++ b/lldb/test/lang/c/array_types/cmds.txt
diff --git a/lldb/test/array_types/main.c b/lldb/test/lang/c/array_types/main.c
index 5f0680a43b8..5f0680a43b8 100644
--- a/lldb/test/array_types/main.c
+++ b/lldb/test/lang/c/array_types/main.c
diff --git a/lldb/test/bitfields/Makefile b/lldb/test/lang/c/bitfields/Makefile
index d6cd0db0506..b09a579159d 100644
--- a/lldb/test/bitfields/Makefile
+++ b/lldb/test/lang/c/bitfields/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
C_SOURCES := main.c
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/lang/c/bitfields/TestBitfields.py
index bf8f541bc25..be091cb57cd 100644
--- a/lldb/test/bitfields/TestBitfields.py
+++ b/lldb/test/lang/c/bitfields/TestBitfields.py
@@ -7,7 +7,7 @@ from lldbtest import *
class BitfieldsTestCase(TestBase):
- mydir = "bitfields"
+ mydir = os.path.join("lang", "c", "bitfields")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
diff --git a/lldb/test/bitfields/main.c b/lldb/test/lang/c/bitfields/main.c
index 8d4116b2278..8d4116b2278 100644
--- a/lldb/test/bitfields/main.c
+++ b/lldb/test/lang/c/bitfields/main.c
diff --git a/lldb/test/signed_types/Makefile b/lldb/test/lang/cpp/class_static/Makefile
index d4bc9c68904..314f1cb2f07 100644
--- a/lldb/test/signed_types/Makefile
+++ b/lldb/test/lang/cpp/class_static/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
CXX_SOURCES := main.cpp
diff --git a/lldb/test/class_static/TestStaticVariables.py b/lldb/test/lang/cpp/class_static/TestStaticVariables.py
index b23eb675aad..18415b16595 100644
--- a/lldb/test/class_static/TestStaticVariables.py
+++ b/lldb/test/lang/cpp/class_static/TestStaticVariables.py
@@ -9,7 +9,7 @@ from lldbtest import *
class StaticVariableTestCase(TestBase):
- mydir = "class_static"
+ mydir = os.path.join("lang", "cpp", "class_static")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
diff --git a/lldb/test/class_static/main.cpp b/lldb/test/lang/cpp/class_static/main.cpp
index 2068eadcac5..2068eadcac5 100644
--- a/lldb/test/class_static/main.cpp
+++ b/lldb/test/lang/cpp/class_static/main.cpp
diff --git a/lldb/test/unique-types/Makefile b/lldb/test/lang/cpp/class_types/Makefile
index d4bc9c68904..314f1cb2f07 100644
--- a/lldb/test/unique-types/Makefile
+++ b/lldb/test/lang/cpp/class_types/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
CXX_SOURCES := main.cpp
diff --git a/lldb/test/class_types/TestClassTypes.py b/lldb/test/lang/cpp/class_types/TestClassTypes.py
index 358c32d6293..657f90d2395 100644
--- a/lldb/test/class_types/TestClassTypes.py
+++ b/lldb/test/lang/cpp/class_types/TestClassTypes.py
@@ -8,7 +8,7 @@ from lldbtest import *
class ClassTypesTestCase(TestBase):
- mydir = "class_types"
+ mydir = os.path.join("lang", "cpp", "class_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
diff --git a/lldb/test/class_types/TestClassTypesDisassembly.py b/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py
index 3cb10dadf8a..9d88fb29f8b 100644
--- a/lldb/test/class_types/TestClassTypesDisassembly.py
+++ b/lldb/test/lang/cpp/class_types/TestClassTypesDisassembly.py
@@ -9,7 +9,7 @@ from lldbtest import *
class IterateFrameAndDisassembleTestCase(TestBase):
- mydir = "class_types"
+ mydir = os.path.join("lang", "cpp", "class_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym_and_run_command(self):
diff --git a/lldb/test/class_types/cmds.txt b/lldb/test/lang/cpp/class_types/cmds.txt
index 1c7ef9f1c8a..1c7ef9f1c8a 100644
--- a/lldb/test/class_types/cmds.txt
+++ b/lldb/test/lang/cpp/class_types/cmds.txt
diff --git a/lldb/test/class_types/main.cpp b/lldb/test/lang/cpp/class_types/main.cpp
index 251e66c3c9f..251e66c3c9f 100644
--- a/lldb/test/class_types/main.cpp
+++ b/lldb/test/lang/cpp/class_types/main.cpp
diff --git a/lldb/test/class_static/Makefile b/lldb/test/lang/cpp/signed_types/Makefile
index d4bc9c68904..314f1cb2f07 100644
--- a/lldb/test/class_static/Makefile
+++ b/lldb/test/lang/cpp/signed_types/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
CXX_SOURCES := main.cpp
diff --git a/lldb/test/signed_types/TestSignedTypes.py b/lldb/test/lang/cpp/signed_types/TestSignedTypes.py
index 2f7933fa31c..7a3e8665982 100644
--- a/lldb/test/signed_types/TestSignedTypes.py
+++ b/lldb/test/lang/cpp/signed_types/TestSignedTypes.py
@@ -10,7 +10,7 @@ from lldbtest import *
class UnsignedTypesTestCase(TestBase):
- mydir = "signed_types"
+ mydir = os.path.join("lang", "cpp", "signed_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
diff --git a/lldb/test/signed_types/main.cpp b/lldb/test/lang/cpp/signed_types/main.cpp
index 3e40f3aa3dc..3e40f3aa3dc 100644
--- a/lldb/test/signed_types/main.cpp
+++ b/lldb/test/lang/cpp/signed_types/main.cpp
diff --git a/lldb/test/class_types/Makefile b/lldb/test/lang/cpp/unique-types/Makefile
index d4bc9c68904..314f1cb2f07 100644
--- a/lldb/test/class_types/Makefile
+++ b/lldb/test/lang/cpp/unique-types/Makefile
@@ -1,4 +1,4 @@
-LEVEL = ../make
+LEVEL = ../../../make
CXX_SOURCES := main.cpp
diff --git a/lldb/test/unique-types/TestUniqueTypes.py b/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py
index 4d7083884ef..a5a265d571e 100644
--- a/lldb/test/unique-types/TestUniqueTypes.py
+++ b/lldb/test/lang/cpp/unique-types/TestUniqueTypes.py
@@ -9,7 +9,7 @@ from lldbtest import *
class UniqueTypesTestCase(TestBase):
- mydir = "unique-types"
+ mydir = os.path.join("lang", "cpp", "unique-types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
diff --git a/lldb/test/unique-types/main.cpp b/lldb/test/lang/cpp/unique-types/main.cpp
index c551c0e2c0d..c551c0e2c0d 100644
--- a/lldb/test/unique-types/main.cpp
+++ b/lldb/test/lang/cpp/unique-types/main.cpp
diff --git a/lldb/test/lang/cpp/unsigned_types/Makefile b/lldb/test/lang/cpp/unsigned_types/Makefile
new file mode 100644
index 00000000000..314f1cb2f07
--- /dev/null
+++ b/lldb/test/lang/cpp/unsigned_types/Makefile
@@ -0,0 +1,5 @@
+LEVEL = ../../../make
+
+CXX_SOURCES := main.cpp
+
+include $(LEVEL)/Makefile.rules
diff --git a/lldb/test/unsigned_types/TestUnsignedTypes.py b/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
index e8156b5b922..b616f4682ed 100644
--- a/lldb/test/unsigned_types/TestUnsignedTypes.py
+++ b/lldb/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
@@ -10,7 +10,7 @@ from lldbtest import *
class UnsignedTypesTestCase(TestBase):
- mydir = "unsigned_types"
+ mydir = os.path.join("lang", "cpp", "unsigned_types")
@unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
def test_with_dsym(self):
diff --git a/lldb/test/unsigned_types/main.cpp b/lldb/test/lang/cpp/unsigned_types/main.cpp
index b0d68377e98..b0d68377e98 100644
--- a/lldb/test/unsigned_types/main.cpp
+++ b/lldb/test/lang/cpp/unsigned_types/main.cpp
diff --git a/lldb/test/unsigned_types/Makefile b/lldb/test/unsigned_types/Makefile
deleted file mode 100644
index d4bc9c68904..00000000000
--- a/lldb/test/unsigned_types/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-LEVEL = ../make
-
-CXX_SOURCES := main.cpp
-
-include $(LEVEL)/Makefile.rules
OpenPOWER on IntegriCloud