summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-04-14 09:43:39 +0200
committerhjk <hjk@theqtcompany.com>2015-04-14 08:13:50 +0000
commitd73a5c9f889aa282f531fa375aae237f14570e10 (patch)
tree29ee2e5c4ef422d6b1b755bbf31301a14406e543
parent05e0b074c1dbfef8aac7e719e3ab23c7916288ac (diff)
downloadqt-creator-d73a5c9f889aa282f531fa375aae237f14570e10.tar.gz
Debugger: Fix GCC/LLDB anon struct test by adjusting expectations
Change-Id: I31775513c2e4a690b2620225682c89ee8c9156d2 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 39e7c3bb8a..b6fa79a82e 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -5740,7 +5740,7 @@ void tst_Dumpers::dumper_data()
"unused(&v, &n);\n")
+ Check("v", "", "{...}") % GdbEngine
- + Check("v", "", Pattern("<anonymous .*>")) % LldbEngine
+ + Check("v", "", Pattern(".*anonymous .*")) % LldbEngine
+ Check("n", "", "S")
+ Check("v.a", "2", "int") % GdbVersion(0, 70699)
+ Check("v.0.a", "2", "int") % GdbVersion(70700)