Skip to content

Commit b9e7e42

Browse files
committed
Move miniBDD catch-style unit test to proper folder and include in Makefile
1 parent 18f02d6 commit b9e7e42

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

unit/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ SRC += analyses/ai/ai.cpp \
1919
path_strategies.cpp \
2020
pointer-analysis/value_set.cpp \
2121
solvers/floatbv/float_utils.cpp \
22+
solvers/miniBDD/miniBDD.cpp \
2223
solvers/refinement/array_pool/array_pool.cpp \
2324
solvers/refinement/string_constraint_generator_valueof/calculate_max_string_length.cpp \
2425
solvers/refinement/string_constraint_generator_valueof/get_numeric_value_from_character.cpp \
@@ -112,7 +113,6 @@ OBJ += $(CPROVER_LIBS) testing-utils/testing-utils$(LIBEXT)
112113
CATCH_TEST = unit_tests$(EXEEXT)
113114
N_CATCH_TESTS = $(shell \
114115
cat $$(find . -name "*.cpp" \
115-
-and -not -name "miniBDD_new.cpp" \
116116
-a -not -name "expr_undefined_casts.cpp") | \
117117
grep -c -E "(SCENARIO|TEST_CASE)")
118118

unit/miniBDD_new.cpp renamed to unit/solvers/miniBDD/miniBDD.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
#include <util/arith_tools.h>
1919
#include <util/expanding_vector.h>
2020

21-
#include <iostream>
22-
2321
class bdd_propt:public propt
2422
{
2523
public:

0 commit comments

Comments
 (0)