diff options
author | Jan Mercl <0xjnml@gmail.com> | 2017-07-03 23:36:03 +0200 |
---|---|---|
committer | Jan Mercl <0xjnml@gmail.com> | 2017-07-03 23:36:03 +0200 |
commit | 2aa5e95243d7c8dca1acf8439d8a9da0225242cb (patch) | |
tree | 999d7b00caa67eab6e99efae9d5b16c8db1a53e2 /Makefile | |
parent | 481e652f27a8ccebf301ff73a65fa7f38bd204d5 (diff) |
Add TestThread3 (does not yet pass). Updates #15.
modified: Makefile
modified: all_test.go
modified: generator.go
modified: internal/bin/bin_linux_386.go
modified: internal/bin/bin_linux_amd64.go
new file: internal/threadtest3/threadtest3_linux_386.go
new file: internal/threadtest3/threadtest3_linux_amd64.go
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ all: editor clean: go clean - rm -f *~ *.test *.out test.db testdb-* tt4-test*.db* + rm -f *~ *.test *.out test.db* tt4-test*.db* cover: t=$(shell tempfile) ; go test -coverprofile $$t && go tool cover -html $$t && unlink $$t |