File tree 2 files changed +14
-1
lines changed
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
57
57
DEPENDS ${java_regression_compiled_sources}
58
58
)
59
59
60
+ file (GLOB_RECURSE out_files "regression/**/*.out" )
61
+ file (GLOB_RECURSE goto_binary_files "regression/**/*.gb" )
60
62
set_property (
61
63
TARGET java-regression
62
64
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)
99
99
add_subdirectory (memory-analyzer)
100
100
add_subdirectory (extract_type_header)
101
101
endif ()
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