aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile')
-rw-r--r--Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile b/Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile
deleted file mode 100644
index ac76fdeac..000000000
--- a/Godeps/_workspace/src/github.com/robertkrimen/otto/test/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-.PHONY: test fetch clean build err report
-
-TESTER := tester
-
-test: $(TESTER)
- for test in test-*.js; do ./$^ -test=true $$test 1>/dev/null || exit 1; done
- @echo PASS
-
-report: $(TESTER)
- ./$^ -report | grep -v "MT READY"
-
-fetch: $(TESTER)
- ./$^ fetch
-
-build:
- go build -a -o $(TESTER)
-
-$(TESTER): tester.go
- $(MAKE) build
-
-clean:
- rm -f test-*.js
- rm -f $(TESTER)
-
-err: $(TESTER)
- for test in test-*.js; do ./$^ $$test; done 2>$@