summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-04-17 10:20:38 +0200
committerhjk <hjk@theqtcompany.com>2015-04-17 08:25:14 +0000
commit7d134000415f5d38ab8c47ed2bb436d259ab0465 (patch)
treee1162643e6b6688fab6fa64dbcaea3f340be5250
parent50eab33aac42dcbed2f638fa5e1055d61aa4cae7 (diff)
downloadqt-creator-7d134000415f5d38ab8c47ed2bb436d259ab0465.tar.gz
Debugger: Remove StdStream dumper test
This was testing a bool value, not a stream, and doing that wrong on Windows. Change-Id: I86b1aaea99e77b2aa3c37bb5c9c3e0ba8a90cb05 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--tests/auto/debugger/tst_dumpers.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp
index deab2783e1..c07ca861a7 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",