[master] ef77c38 GC, Kristian says is no longer needed

Federico G. Schwindt fgsch at lodoss.net
Wed Nov 5 14:04:12 CET 2014


commit ef77c38dd6537b060dacb130d0e3614b1fe08606
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Wed Nov 5 13:02:00 2014 +0000

    GC, Kristian says is no longer needed

diff --git a/bin/varnishtest/Makefile.kristian b/bin/varnishtest/Makefile.kristian
deleted file mode 100644
index 04b9f8a..0000000
--- a/bin/varnishtest/Makefile.kristian
+++ /dev/null
@@ -1,35 +0,0 @@
-# Usage: make -f Makefile.kristian -j20 (for 20 parallel jobs)
-
-SHELL = /bin/sh
-
-# Complete all tests even if one fails
-MAKEFLAGS = -k
-
-objs=$(addsuffix .done,$(basename $(notdir $(wildcard tests/*vtc))))
-
-check: $(objs)
-	@echo "==================="
-	@echo "All tests succeeded"
-	@echo "==================="
-
-# Capture output of varnishtest for a specific test. Only output it if the
-# test failed.
-#
-# XXX: 'echo' in dash (often used as /bin/sh) does not support -E and
-#      always interpret \n's(as in a \ and a n, not a real line break),
-#      thus the /bin/echo -E crud to avoid double line breaks on
-#      "body | <foo>\n".
-#
-# XXX: Even if this doesn't create a real file, it's not a phony target per
-#      se, as it has to fire every time you run 'make check'.
-%.done: tests/%.vtc
-	@if output=$$(./varnishtest $< 2>&1 ); then\
-		echo "$< OK";\
-	else\
-		ret=$$?;\
-		/bin/echo -E 1>&2 "$$output";\
-		echo 1>&2 $< "FAILED ($$ret)\n";\
-		exit $$ret;\
-	fi;
-
-.PHONY: check



More information about the varnish-commit mailing list