Add cleanup-tests-all command to Makefile to remove tests/tmp.
* This command should be separate in case we've specified to save keys generated during tests.testing/mmn/mktime_takes_localtime_not_gmtime
parent
6866bcf94a
commit
ffec019f35
10
Makefile
10
Makefile
|
@ -16,12 +16,20 @@ cleanup-tests:
|
|||
rm -f \#*\# && \
|
||||
rm -f ./*.pyc && \
|
||||
rm -f ./*.pyo
|
||||
mkdir -p tests/tmp
|
||||
mkdir -p tests/logs
|
||||
mv tests/*.log tests/logs/
|
||||
rm *.log
|
||||
rm tests/random_seed
|
||||
|
||||
cleanup-tests-all: cleanup-tests
|
||||
rm -rf tests/tmp
|
||||
|
||||
cleanup-build:
|
||||
mkdir buildnot
|
||||
rm -rf build*
|
||||
|
||||
cleantest: cleanup-src cleanup-tests cleanup-build
|
||||
cleantest: cleanup-src cleanup-tests
|
||||
mkdir -p tests/tmp
|
||||
touch placeholder.log
|
||||
rm -rf tests/tmp
|
||||
|
|
Loading…
Reference in New Issue