Add test code used to diagnose bug #37.

This commit is contained in:
David Baird
2014-11-13 08:43:07 -05:00
parent 5abf4a78bd
commit 4fe25a880f
4 changed files with 230 additions and 1 deletions
+4 -1
View File
@@ -1,9 +1,12 @@
CXXFLAGS = -std=gnu++0x -Wall
LDLIBS = -lstdc++
.PHONY: all clean
.PHONY: all clean test
all: example-client example-client-cpp11
clean:
-rm example-client example-client-cpp11 *.o
cd test; $(MAKE) clean
test:
cd test; $(MAKE) test
testserver: node_modules
node example-server.js
node_modules: