forked from qt-creator/qt-creator
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:
@@ -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("",
|
||||
|
Reference in New Issue
Block a user