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.
22 lines
404 B
Bash
Executable File
22 lines
404 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SUCCESS="\033[32mSuccess:\033[00m"
|
|
|
|
# Enter masterproject directory
|
|
MY_PATH=`dirname "$0"`
|
|
cd $MY_PATH/..
|
|
|
|
# Remove folders and contents
|
|
rm -rf build
|
|
rm -rf bin/app/Debug
|
|
rm -rf bin/app/Release
|
|
rm -rf bin/lib/Debug
|
|
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"
|