Skip to content

Commit

Permalink
Clean all temporary files from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Spacetown committed Mar 3, 2024
1 parent b1a76bf commit 4d603f0
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion tests/decisions-neg-delta/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ json: coverage.json
clean:
rm -f testcase
rm -f *.gc*
rm -f coverage*.*
rm -f coverage*.* summary_coverage.json
2 changes: 1 addition & 1 deletion tests/decisions/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ json: coverage.json
clean:
rm -f testcase
rm -f *.gc*
rm -f coverage*.*
rm -f coverage*.* summary_coverage.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ else
cmd.exe /C "rmdir /S /Q project\relevant-library";\
fi
endif
rm -f coverage*.* sonarqube.xml jacoco.xml
rm -f coverage*.* cobertura.xml sonarqube.xml jacoco.xml
2 changes: 1 addition & 1 deletion tests/nested/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ clean:
rm -f ./subdir/testcase
rm -f *.gc* */*.gc* */*/*.gc* */*/*/*.gc* */*/*/*/*.gc*
rm -f *.o */*.o */*/*.o */*/*/*.o */*/*/*/*.o
rm -f coverage*.* cobertura*.* sonarqube*.* jacoco*.* coveralls.json
rm -f clover.xml coverage*.* cobertura*.* sonarqube*.* jacoco*.* coveralls.json
2 changes: 1 addition & 1 deletion tests/no-markers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ json:
clean:
rm -f testcase
rm -f *.gc*
rm -f coverage.txt coverage*.html cobertura.xml sonarqube.xml jacoco.xml coverage.json coverage.lcov
rm -f coverage.txt coverage.css coverage*.html cobertura.xml sonarqube.xml jacoco.xml *coverage.json coverage.lcov

# mark ALL targets as phony (because they are)
.PHONY: %
2 changes: 1 addition & 1 deletion tests/simple1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ clean:
rm -f testcase
rm -f fail_under.stderr
rm -f *.gc*
rm -f coverage.txt jacoco.xml coverage*.html coverage*.css cobertura.xml sonarqube.xml coverage.json summary_coverage.json coveralls.json
rm -f coverage.txt jacoco.xml clover.xml coverage*.html coverage*.css cobertura.xml sonarqube.xml coverage.json summary_coverage.json coveralls.json
2 changes: 1 addition & 1 deletion tests/source_from_pipe/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jacoco: coverage.json
$(GCOVR) -a $< --jacoco -o jacoco.xml

clean:
rm -rf build
rm -rf *.gcd* *.o
rm -f testcase coverage*.* cobertura*.* sonarqube*.* jacoco*.* coveralls.json
2 changes: 1 addition & 1 deletion tests/symlink-root/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ else
cmd.exe /C "rmdir /S /Q symlink";\
fi
endif
rm -f root/*.gc* coverage*.*
rm -f root/*.gc* root/testcase coverage*.*
4 changes: 2 additions & 2 deletions tests/wrong-casing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ json:
$(GCOVR) --verbose --gcov-keep --gcov-use-existing-files --json-pretty --json coverage.json main.case_1.gcov data

clean:
rm -f *.gcov
rm -f coveralls.json
rm -f data/*.gcov
rm -f coverage.json

0 comments on commit 4d603f0

Please sign in to comment.