Skip to content

Commit 760e1fc

Browse files
author
thk123
committed
Renamed exe and added exes to gitignore
1 parent b22210d commit 760e1fc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

unit/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Unit test binaries
2+
miniBDD
3+
sharing_node
4+
string_utils
5+
unit_tests

unit/Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: all cprover.dir test
22

3-
SRC = catch_entry_point.cpp \
3+
SRC = unit_tests.cpp \
44
catch_example.cpp \
55
# Empty last line
66

@@ -26,7 +26,7 @@ LIBS = ../src/ansi-c/ansi-c$(LIBEXT) \
2626
../src/solvers/solvers$(LIBEXT) \
2727
# Empty last line
2828

29-
TESTS = catch_entry_point$(EXEEXT) \
29+
TESTS = unit_tests$(EXEEXT) \
3030
miniBDD$(EXEEXT) \
3131
string_utils$(EXEEXT) \
3232
sharing_node$(EXEEXT) \
@@ -43,7 +43,7 @@ test: all
4343

4444
###############################################################################
4545

46-
catch_entry_point$(EXEEXT): $(OBJ)
46+
unit_tests$(EXEEXT): $(OBJ)
4747
$(LINKBIN)
4848

4949
miniBDD$(EXEEXT): miniBDD$(OBJEXT)

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

-5
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)