File tree Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Expand file tree Collapse file tree 3 files changed +16
-9
lines changed Original file line number Diff line number Diff line change
1
+ # Unit test binaries
2
+ elf_reader
3
+ float_utils
4
+ json
5
+ miniBDD
6
+ osx_fat_reader
7
+ sharing_map
8
+ sharing_node
9
+ smt2_parser
10
+ string_utils
11
+ unicode
12
+ unit_tests
Original file line number Diff line number Diff line change 1
- SRC = catch_entry_point .cpp \
1
+ SRC = unit_tests .cpp \
2
2
catch_example.cpp \
3
3
# Empty last line
4
4
@@ -24,7 +24,7 @@ LIBS = ../src/ansi-c/ansi-c$(LIBEXT) \
24
24
../src/solvers/solvers$(LIBEXT ) \
25
25
# Empty last line
26
26
27
- TESTS = catch_entry_point $(EXEEXT ) \
27
+ TESTS = unit_tests $(EXEEXT ) \
28
28
miniBDD$(EXEEXT ) \
29
29
string_utils$(EXEEXT ) \
30
30
sharing_node$(EXEEXT ) \
@@ -34,15 +34,15 @@ CLEANFILES = $(TESTS)
34
34
35
35
all : cprover.dir $(TESTS )
36
36
37
- all : cprover.dir catch_entry_point $(EXEEXT )
37
+ all : cprover.dir unit_tests $(EXEEXT )
38
38
39
39
test : all
40
40
$(foreach test,$(TESTS ) , (echo Running: $(test ) ; ./$(test )$(EXEEXT ) ) && ) true
41
41
42
42
43
43
# ##############################################################################
44
44
45
- catch_entry_point $(EXEEXT ) : $(OBJ )
45
+ unit_tests $(EXEEXT ) : $(OBJ )
46
46
$(LINKBIN )
47
47
48
48
miniBDD$(EXEEXT ) : miniBDD$(OBJEXT )
Original file line number Diff line number Diff line change 5
5
Author: DiffBlue Limited. All rights reserved.
6
6
7
7
\*******************************************************************/
8
- #ifndef CATCH_ENTRY_POINT_H
9
- #define CATCH_ENTRY_POINT_H
10
8
11
9
#define CATCH_CONFIG_MAIN
12
10
#include " catch.hpp"
13
-
14
-
15
- #endif // CATCH_ENTRY_POINT_H
You can’t perform that action at this time.
0 commit comments