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>
This commit is contained in:
hjk
2023-03-02 08:03:13 +01:00
parent 00502c4630
commit bcfaddb473

View File

@@ -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("",