aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-12-11 15:42:20 +0100
committerhjk <hjk@qt.io>2020-12-14 09:25:32 +0000
commit50b2eb934f4c323006fff579e05c867edc7e0af6 (patch)
treef369f882a9c445be708588df42446d369d660d7d
parent361884320abfc126e6646d9f4467c4b77d82fa72 (diff)
Debugger: Disable some static member tests for LLDB
LLDB does not report anything in that case nowadays. Which is actually fine. Makes StaticMembersInLib and UndefinedStaticMembers pass. Change-Id: I302ab702e5eacf89fcd08ea1935dbf43e5e56fa8 Reviewed-by: David Schulz <david.schulz@qt.io>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 744bd99809..c36b172e35 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -7963,7 +7963,7 @@ void tst_Dumpers::dumper_data()
"&f")
+ Check("f.a", "15", "int")
- + Check("f.b", "<optimized out>", "") % NoCdbEngine
+ + Check("f.b", "<optimized out>", "") % GdbEngine
+ Check("f.b", "", "<Value unavailable error>") % CdbEngine;
@@ -8006,7 +8006,7 @@ void tst_Dumpers::dumper_data()
+ QtVersion(0x50800, 0x5ffff) // Both test cases are gone in Qt6
+ Check("d.Log10_2_100000", "30103", "int")
- + Check("p.FlagBit", "<optimized out>", "") % NoCdbEngine
+ + Check("p.FlagBit", "<optimized out>", "") % GdbEngine
+ Check("p.FlagBit", "", "<Value unavailable error>", "") % CdbEngine;
#endif