File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ add_custom_target(java-regression ALL
5757 DEPENDS ${java_regression_compiled_sources}
5858)
5959
60+ file (GLOB_RECURSE out_files "regression/**/*.out" )
61+ file (GLOB_RECURSE goto_binary_files "regression/**/*.gb" )
6062set_property (
6163 TARGET java-regression
6264 APPEND
63- PROPERTY ADDITIONAL_CLEAN_FILES ${java_regression_compiled_sources} )
65+ PROPERTY ADDITIONAL_CLEAN_FILES ${java_regression_compiled_sources} ${out_files} ${goto_binary_files} regression/tests. log regression/tests-symex-driven-loading. log )
Original file line number Diff line number Diff line change @@ -99,3 +99,14 @@ if(WITH_MEMORY_ANALYZER)
9999 add_subdirectory (memory-analyzer)
100100 add_subdirectory (extract_type_header)
101101endif ()
102+
103+ add_custom_target (cbmc-regression ALL )
104+
105+ add_dependencies (cbmc cbmc-regression)
106+
107+ file (GLOB_RECURSE out_files "**/*.out" )
108+ file (GLOB_RECURSE goto_binary_files "**/*.gb" )
109+ set_property (
110+ TARGET cbmc-regression
111+ APPEND
112+ PROPERTY ADDITIONAL_CLEAN_FILES ${out_files} ${goto_binary_files} tests.log )
You can’t perform that action at this time.
0 commit comments