summaryrefslogtreecommitdiff
path: root/tests/glean/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/glean/test.cpp')
-rw-r--r--tests/glean/test.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/glean/test.cpp b/tests/glean/test.cpp
index 0d3dbfb6b..f94680ff0 100644
--- a/tests/glean/test.cpp
+++ b/tests/glean/test.cpp
@@ -115,20 +115,4 @@ Test::Input1Stream::operator ifstream& () {
return *s;
} // Test::Input1Stream::operator ::ifstream&
-Test::Input2Stream::Input2Stream(Test& t) {
- s = new ifstream(t.env->resultFileName(
- t.env->options.db2Name, t.name).c_str());
- if (!*s)
- throw Test::CantOpenResultsFile(t.name, t.env->options.db2Name);
-} // Test::Input2Stream::Input2Stream
-
-Test::Input2Stream::~Input2Stream() {
- s->close();
- delete s;
-} // Test::Input2Stream::~Input2Stream
-
-Test::Input2Stream::operator ifstream& () {
- return *s;
-} // Test::Input2Stream::operator ::ifstream&
-
} // namespace GLEAN