diff options
author | Eli Zaretskii <eliz@gnu.org> | 2015-04-08 18:08:56 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2015-04-08 18:08:56 +0300 |
commit | d6fecb7fa6188d819c3bc24841cebcd58082a52d (patch) | |
tree | c51a1007293fb663d723917e991d1b37f38bcff8 /test | |
parent | 23393597f023f3824b56355383436ab1e52febef (diff) | |
download | egawk-d6fecb7fa6188d819c3bc24841cebcd58082a52d.tar.gz egawk-d6fecb7fa6188d819c3bc24841cebcd58082a52d.tar.bz2 egawk-d6fecb7fa6188d819c3bc24841cebcd58082a52d.zip |
Allow to redirect profile to stdout more portably.
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 292e9615..d0dc131a 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2015-04-08 Eli Zaretskii <eliz@gnu.org> + + * Makefile.am (mpfrmemok1): Use -p- for portability and + compatibility with pc/Makefile.tst. + 2015-03-31 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (indirectbuiltin): New test. diff --git a/test/Makefile.am b/test/Makefile.am index 515a26e2..ec84a17f 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1820,7 +1820,7 @@ mpfrrem: mpfrmemok1: @echo $@ - @$(AWK) -p/dev/stdout -M -f "$(srcdir)"/$@.awk 2>&1 | sed 1d > _$@ + @$(AWK) -p- -M -f "$(srcdir)"/$@.awk 2>&1 | sed 1d > _$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ jarebug:: |