test: Save logs during testing and add them to version control

This change removes the ConsoleLogger from the TestSuiteFixture and registers a PlainFileLogger instead, which saves
logs during testing into the file bin/test/data/log/test_log.txt.
This commit is contained in:
Eberhard Graether
2014-06-30 17:15:17 +02:00
parent b38252e894
commit 3a983598e6
7 changed files with 93 additions and 6 deletions
+3
View File
@@ -15,4 +15,7 @@ rm -rf bin/lib/Release
rm -rf bin/test/Debug
rm -rf bin/test/Release
# Remove log files
find bin/test/data/log -type f -name 'log*' -delete
echo -e $SUCCESS "clean complete"