diff options
author | A. Wilcox <awilcox@wilcox-tech.com> | 2019-06-29 12:02:14 +0000 |
---|---|---|
committer | A. Wilcox <awilcox@wilcox-tech.com> | 2019-06-29 12:02:14 +0000 |
commit | 4ba63a0284e5b55dba86301653ccdbb7e6a260ba (patch) | |
tree | eb8eaf0c8b33efb90b85246692510b2a2985beb8 /user/gnucobol/tests-are-fatal.patch | |
parent | be390a5a674f172cde107f29b60e4dce79cee531 (diff) | |
parent | ef2c616773b00d4cc14eca7da2e4fb4b42ee2882 (diff) | |
download | packages-4ba63a0284e5b55dba86301653ccdbb7e6a260ba.tar.gz packages-4ba63a0284e5b55dba86301653ccdbb7e6a260ba.tar.bz2 packages-4ba63a0284e5b55dba86301653ccdbb7e6a260ba.tar.xz packages-4ba63a0284e5b55dba86301653ccdbb7e6a260ba.zip |
Merge branch 'gnucobol' into 'master'
user/gnucobol: new package
See merge request !260
Diffstat (limited to 'user/gnucobol/tests-are-fatal.patch')
-rw-r--r-- | user/gnucobol/tests-are-fatal.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/user/gnucobol/tests-are-fatal.patch b/user/gnucobol/tests-are-fatal.patch new file mode 100644 index 000000000..933c1128d --- /dev/null +++ b/user/gnucobol/tests-are-fatal.patch @@ -0,0 +1,22 @@ +Backport of r3183 + +--- gnucobol-3.0-rc1/tests/Makefile.am 2018-04-22 19:55:51.000000000 +0000 ++++ gnucobol-3.0-rc1/tests/Makefile.am 2019-06-28 16:49:23.740928336 +0000 +@@ -74,7 +74,7 @@ + check-local: $(TESTSUITE) + @echo testing for working diff && diff - "$(TESTSUITE)" < "$(TESTSUITE)" \ + || (echo "Error: no working 'diff' in PATH" && false) +- @$(TESTSUITE) $(TESTSUITEFLAGS) || rm -f testsuite.dir/at-job-fifo ++ @$(TESTSUITE) $(TESTSUITEFLAGS) || (rm -f testsuite.dir/at-job-fifo; exit 1) + @rm -f testsuite.dir/at-job-fifo + + clean-local: +@@ -84,7 +84,7 @@ + @cp $(srcdir)/run_prog_manual.sh.in $@ + + checkmanual: $(TESTSUITE_MANUAL) ./run_prog_manual.sh +- @$(TESTSUITE_MANUAL) $(TESTSUITEFLAGS) || rm -f testsuite_manual.dir/at-job-fifo ++ @$(TESTSUITE_MANUAL) $(TESTSUITEFLAGS) || (rm -f testsuite_manual.dir/at-job-fifo; exit 1) + @rm -f testsuite_manual.dir/at-job-fifo + + # targets that are only logical targets instead of files |