Add initial unit test codes using Catch.

Add Kuroga build script.
This commit is contained in:
Syoyo Fujita
2016-04-18 16:03:24 +09:00
parent 54bd46014c
commit 72ef6cbb76
15 changed files with 17897 additions and 11 deletions

13
tests/Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: clean
tester: tester.cc
g++ -g -O0 -o tester tester.cc
all: tester
check: tester
./tester
clean:
rm -rf tester