diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index deab2783e16d423b9a1c1994907a6358de84a8bb..c07ca861a7663a9a143f270807fa50f090b0d27c 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -4383,24 +4383,6 @@ void tst_Dumpers::dumper_data() + Check("v2.3", "[3]", "", "Foo"); - QTest::newRow("StdStream") - << Data("#include <istream>\n" - "#include <fstream>\n", - - "using namespace std;\n" - "ifstream is0, is;\n" - "#ifdef Q_OS_WIN\n" - "is.open(\"C:\\\\Program Files\\\\Windows NT\\\\Accessories\\\\wordpad.exe\");\n" - "#else\n" - "is.open(\"/etc/passwd\");\n" - "#endif\n" - "bool ok = is.good();\n" - "unused(&ok, &is, &is0);\n") - - + Check("is", "", "std::ifstream") - + Check("ok", "true", "bool"); - - QTest::newRow("StdUnorderedMap") << Data("#include <unordered_map>\n" "#include <string>\n",