Skip to content

Clean up and ignore files created when regression tests are run #5241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ src/cpp/cprover_library.inc
# regression/test files
*.out
regression/**/tests.log
regression/**/tests-*.log
regression/**/*.goto-cc-saved
regression/**/*.gb
regression/**/*.smt2
jbmc/regression/**/tests.log
Expand Down
2 changes: 1 addition & 1 deletion regression/ansi-c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ show:
clean:
find -name '*.out' -execdir $(RM) '{}' \;
find -name '*.gb' -execdir $(RM) '{}' \;
$(RM) tests.log
$(RM) tests.log tests-c++-front-end.log
1 change: 1 addition & 0 deletions regression/memory-analyzer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ GOTO_GCC_EXE=../../../src/goto-cc/goto-gcc
MEMORY_ANALYZER_EXE=../../../src/memory-analyzer/memory-analyzer

clean:
find -name '*.gb' -execdir $(RM) '{}' \;
find -name '*.exe' -execdir $(RM) '{}' \;
find -name '*.out' -execdir $(RM) '{}' \;
$(RM) tests.log
Expand Down