aboutsummaryrefslogtreecommitdiff
path: root/test/lang/c
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2011-08-22 22:34:22 +0000
committerSean Callanan <scallanan@apple.com>2011-08-22 22:34:22 +0000
commitc01c05c7a8a198761fb917308dd53e6e143384ad (patch)
tree9663fe056c8cf98984dddf8932ac538fac087fa1 /test/lang/c
parent17f3d054e3d27fb7ce0892945c6ffb6c11516f88 (diff)
downloadlldb-c01c05c7a8a198761fb917308dd53e6e143384ad.tar.gz
Restored the version of LLVM that we previously
rolled back, and the testcase that the rollback broke. The new LLVM has a new ARM disassembler, which may cause instability. Keeping the old one would force us into a contorted position vis-a-vis the LLVM sources we bring in, so we will address issues on the new one rather than keeping the old one around. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@138284 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lang/c')
-rw-r--r--test/lang/c/function_types/TestFunctionTypes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lang/c/function_types/TestFunctionTypes.py b/test/lang/c/function_types/TestFunctionTypes.py
index 255849e7c..e4680ab01 100644
--- a/test/lang/c/function_types/TestFunctionTypes.py
+++ b/test/lang/c/function_types/TestFunctionTypes.py
@@ -24,12 +24,12 @@ class FunctionTypesTestCase(TestBase):
def test_pointers_with_dsym(self):
"""Test that a function pointer to 'printf' works and can be called."""
self.buildDsym()
- #self.function_pointers() # ROLLED BACK
+ self.function_pointers()
def test_pointers_with_dwarf(self):
"""Test that a function pointer to 'printf' works and can be called."""
self.buildDwarf()
- #self.function_pointers() # ROLLED BACK
+ self.function_pointers()
def setUp(self):
# Call super's setUp().