diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-25 23:08:26 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-25 23:08:26 +0300 |
commit | 88541e4626f3010097bed969770bfad0b97b4747 (patch) | |
tree | 63494af4449fbca5e50ddad9a0c15360b8e38b32 | |
parent | 248f1f7ae2244e407218d3decd66423e89c21d05 (diff) | |
parent | 397423c7a0709fce5abd1c7a5d55411b9a170267 (diff) | |
download | egawk-88541e4626f3010097bed969770bfad0b97b4747.tar.gz egawk-88541e4626f3010097bed969770bfad0b97b4747.tar.bz2 egawk-88541e4626f3010097bed969770bfad0b97b4747.zip |
Merge branch 'gawk-4.1-stable'
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 08661b3a..b92d8ae7 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,5 +1,9 @@ 2015-06-25 Arnold D. Robbins <arnold@skeeve.com> + * Makefile.am (negtime): Fix out-of-tree test run. + + Unrelated: + * Makefile.am (typeof3, typeof4): New tests. * typeof2.awk, typeof2.ok, typeof3.awk, typeof3.ok: New files. diff --git a/test/Makefile.am b/test/Makefile.am index cbec8a98..03d28f21 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2133,7 +2133,7 @@ paramasfunc2:: negtime:: @echo $@ @TZ=GMT AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @AWKPATH="$(srcdir)" $(AWK) -f checknegtime.awk $@.ok _$@ && rm -f _$@ + @AWKPATH="$(srcdir)" $(AWK) -f checknegtime.awk "$(srcdir)"/$@.ok _$@ && rm -f _$@ dbugtypedre: @echo $@ diff --git a/test/Makefile.in b/test/Makefile.in index 196590d6..294c60c0 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2569,7 +2569,7 @@ paramasfunc2:: negtime:: @echo $@ @TZ=GMT AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ - @AWKPATH="$(srcdir)" $(AWK) -f checknegtime.awk $@.ok _$@ && rm -f _$@ + @AWKPATH="$(srcdir)" $(AWK) -f checknegtime.awk "$(srcdir)"/$@.ok _$@ && rm -f _$@ dbugtypedre: @echo $@ |