summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2023-03-02 08:03:13 +0100
committerhjk <hjk@qt.io>2023-03-02 07:08:44 +0000
commitbcfaddb473c5753eaab60f54a270a00f1d755cf0 (patch)
treef5d2221121145f633f584959164b679e4af9f53d
parent00502c46300af705ce7fc80846fc62db1f8cb97b (diff)
downloadqt-creator-bcfaddb473c5753eaab60f54a270a00f1d755cf0.tar.gz
Debugger: Remove 'UndefinedStaticMember' test
Compilers are getting increasingly better in optimizing this stuff out, it's difficult and rather unnecessary to keep track of all variations. Change-Id: I9e05d5afadc4d875dc3b61e61364cf085a825239 Reviewed-by: David Schulz <david.schulz@qt.io>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index 821e5bca82..3f2f66116f 100644
--- a/tests/auto/debugger/tst_dumpers.cpp
+++ b/tests/auto/debugger/tst_dumpers.cpp
@@ -8119,17 +8119,6 @@ void tst_Dumpers::dumper_data()
+ Check("str", "first, second, third", "QtcDumperTest_String");
- QTest::newRow("UndefinedStaticMembers")
- << Data("struct Foo { int a = 15; static int b; }; \n",
-
- "Foo f;",
-
- "&f")
-
- + Check("f.a", "15", "int")
- + Check("f.b", "<optimized out>", "") % GdbEngine
- + Check("f.b", "", "<Value unavailable error>") % CdbEngine;
-
QTest::newRow("LongDouble")
<< Data("",