aboutsummaryrefslogtreecommitdiff
path: root/test/lang/c
diff options
context:
space:
mode:
authorMatt Kopec <Matt.Kopec@intel.com>2013-02-27 20:13:38 +0000
committerMatt Kopec <Matt.Kopec@intel.com>2013-02-27 20:13:38 +0000
commit4f9103faba72fdfc4b4299d6d459bc820ee597b2 (patch)
tree89a7c863f458dfab77bdbfc2fea2058d95e2525b /test/lang/c
parent6e46a3ebaf487676b636a2e92b030e5e9a781ecf (diff)
downloadlldb-4f9103faba72fdfc4b4299d6d459bc820ee597b2.tar.gz
Add GNU indirect function support in expressions for Linux.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176206 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lang/c')
-rw-r--r--test/lang/c/strings/TestCStrings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lang/c/strings/TestCStrings.py b/test/lang/c/strings/TestCStrings.py
index 0a1a82667..481f8b01c 100644
--- a/test/lang/c/strings/TestCStrings.py
+++ b/test/lang/c/strings/TestCStrings.py
@@ -16,7 +16,6 @@ class CStringsTestCase(TestBase):
self.buildDsym()
self.static_method_commands()
- @expectedFailureLinux # bugzilla 14437
@dwarf_test
def test_with_dwarf_and_run_command(self):
"""Tests that C strings work as expected in expressions"""
@@ -43,6 +42,7 @@ class CStringsTestCase(TestBase):
self.expect("expression -- z[2]",
startstr = "(const char) $1 = 'x'")
+ # On Linux, the expression below will test GNU indirect function calls.
self.expect("expression -- (int)strlen(\"hello\")",
startstr = "(int) $2 = 5")