Skip to content

Commit 66bccf0

Browse files
author
thk123
committed
Renamed exe and added exes to gitignore
1 parent 3001529 commit 66bccf0

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

unit/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

unit/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SRC = catch_entry_point.cpp \
1+
SRC = unit_tests.cpp \
22
catch_example.cpp \
33
# Empty last line
44

@@ -24,7 +24,7 @@ LIBS = ../src/ansi-c/ansi-c$(LIBEXT) \
2424
../src/solvers/solvers$(LIBEXT) \
2525
# Empty last line
2626

27-
TESTS = catch_entry_point$(EXEEXT) \
27+
TESTS = unit_tests$(EXEEXT) \
2828
miniBDD$(EXEEXT) \
2929
string_utils$(EXEEXT) \
3030
sharing_node$(EXEEXT) \
@@ -34,15 +34,15 @@ CLEANFILES = $(TESTS)
3434

3535
all: cprover.dir $(TESTS)
3636

37-
all: cprover.dir catch_entry_point$(EXEEXT)
37+
all: cprover.dir unit_tests$(EXEEXT)
3838

3939
test: all
4040
$(foreach test,$(TESTS), (echo Running: $(test); ./$(test)$(EXEEXT)) &&) true
4141

4242

4343
###############################################################################
4444

45-
catch_entry_point$(EXEEXT): $(OBJ)
45+
unit_tests$(EXEEXT): $(OBJ)
4646
$(LINKBIN)
4747

4848
miniBDD$(EXEEXT): miniBDD$(OBJEXT)

unit/catch_entry_point.cpp renamed to unit/unit_tests.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
Author: DiffBlue Limited. All rights reserved.
66
77
\*******************************************************************/
8-
#ifndef CATCH_ENTRY_POINT_H
9-
#define CATCH_ENTRY_POINT_H
108

119
#define CATCH_CONFIG_MAIN
1210
#include "catch.hpp"
13-
14-
15-
#endif // CATCH_ENTRY_POINT_H

0 commit comments

Comments
 (0)