Skip to content

Commit

Permalink
Renamed exe and added exes to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
thk123 committed May 10, 2017
1 parent b22210d commit 760e1fc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
5 changes: 5 additions & 0 deletions unit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Unit test binaries
miniBDD
sharing_node
string_utils
unit_tests
6 changes: 3 additions & 3 deletions unit/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: all cprover.dir test

SRC = catch_entry_point.cpp \
SRC = unit_tests.cpp \
catch_example.cpp \
# Empty last line

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

TESTS = catch_entry_point$(EXEEXT) \
TESTS = unit_tests$(EXEEXT) \
miniBDD$(EXEEXT) \
string_utils$(EXEEXT) \
sharing_node$(EXEEXT) \
Expand All @@ -43,7 +43,7 @@ test: all

###############################################################################

catch_entry_point$(EXEEXT): $(OBJ)
unit_tests$(EXEEXT): $(OBJ)
$(LINKBIN)

miniBDD$(EXEEXT): miniBDD$(OBJEXT)
Expand Down
5 changes: 0 additions & 5 deletions unit/catch_entry_point.cpp → unit/unit_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@
Author: DiffBlue Limited. All rights reserved.
\*******************************************************************/
#ifndef CATCH_ENTRY_POINT_H
#define CATCH_ENTRY_POINT_H

#define CATCH_CONFIG_MAIN
#include "catch.hpp"


#endif // CATCH_ENTRY_POINT_H

0 comments on commit 760e1fc

Please sign in to comment.