diff options
author | Juan Manuel Guerrero <juan.guerrero@gmx.de> | 2017-11-12 06:54:50 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-11-12 06:54:50 +0200 |
commit | 3f5b8e508f0fcaba4447ed98193e2ea3b8560ad9 (patch) | |
tree | 50fa4d2c3b52ddd623205138ba61bd1429e853a1 | |
parent | ad97d3d884136a2bad487283b3a212e5cbdecd40 (diff) | |
download | egawk-3f5b8e508f0fcaba4447ed98193e2ea3b8560ad9.tar.gz egawk-3f5b8e508f0fcaba4447ed98193e2ea3b8560ad9.tar.bz2 egawk-3f5b8e508f0fcaba4447ed98193e2ea3b8560ad9.zip |
Exclude DJGPP from the sigpipe1 test.
-rw-r--r-- | pc/ChangeLog | 4 | ||||
-rw-r--r-- | pc/Makefile.tst | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index bc1e3a3e..51a71d95 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2017-11-11 Juan Manuel Guerrero <juan.guerrero@gmx.de> + + * pc/Makefile.tst (sigpipe1): Exclude DJGPP from the sigpipe1 test. + 2017-11-03 Juan Manuel Guerrero <juan.guerrero@gmx.de> * Makefile (install1): Copy gawk.exe to awk.exe before copying diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 9c3ec144..3bbfcd7e 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -2294,10 +2294,12 @@ sclifin: @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ sigpipe1: - @echo $@ - @echo Expect sigpipe1 to fail with DJGPP. - @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + @case `uname` in \ + *MS-DOS*) echo This test fails on DJGPP --- skipping $@ ;; \ + *) \ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ ; \ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ ; \ + esac sortempty: @echo $@ |