1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Let build fail if test fails
Author: Jani Monoses
Last_Update: 2013-07-08
## Taken from launchpad.net (patch for 2.0.7-16ubuntu1)
Index: pth/Makefile.in
===================================================================
--- pth.orig/Makefile.in
+++ pth/Makefile.in
@@ -340,7 +340,7 @@ what-next:
# execute and debug one of the test programs
test: test-std
test-std: test_std
- -@./test_std; \
+ @./test_std; \
if [ $$? -eq 0 ]; then \
touch .done-test >/dev/null 2>&1 || $(TRUE); \
if [ ".`grep $(PLATFORM) $(S)PORTING`" = . ]; then \
|