summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/testlib/selftests/tst_selftests.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/auto/testlib/selftests/tst_selftests.cpp b/tests/auto/testlib/selftests/tst_selftests.cpp
index 28d75f9591..80e8414b89 100644
--- a/tests/auto/testlib/selftests/tst_selftests.cpp
+++ b/tests/auto/testlib/selftests/tst_selftests.cpp
@@ -50,7 +50,7 @@ class tst_Selftests: public QObject
private slots:
void runSubTest_data();
void runSubTest();
- void cleanupTestCase();
+ void cleanup();
private:
void doRunSubTest(QString const& subdir, QString const& logger, QStringList const& arguments );
@@ -609,8 +609,9 @@ BenchmarkResult BenchmarkResult::parse(QString const& line, QString* error)
return out;
}
-void tst_Selftests::cleanupTestCase()
+void tst_Selftests::cleanup()
{
+ // Remove the test output file
QFile::remove("test_output");
}