diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-08 13:25:50 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-04-08 13:25:50 +0300 |
commit | e3b245bc14e812d023e589c5f6508288d7d161e4 (patch) | |
tree | 1c7b304d9a524d3289a73d58d0a4332d899c34af /test | |
parent | b6fac528542ff95fa89e40a6a4c1da2a7346279b (diff) | |
parent | cbc3c53aeab707ff855cc809a842f1ca667275b7 (diff) | |
download | egawk-e3b245bc14e812d023e589c5f6508288d7d161e4.tar.gz egawk-e3b245bc14e812d023e589c5f6508288d7d161e4.tar.bz2 egawk-e3b245bc14e812d023e589c5f6508288d7d161e4.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 2 | ||||
-rw-r--r-- | test/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 53cfd786..bdf78acd 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2016-04-08 Arnold D. Robbins <arnold@skeeve.com> + + * watchpoint1: Use $(srcdir) on input file so out-of-tree + builds can run the test suite. + 2016-04-07 Arnold D. Robbins <arnold@skeeve.com> * clos1way2.ok, clos1way3.ok, clos1way4.ok: Updated after diff --git a/test/Makefile.am b/test/Makefile.am index fdb163d7..8a5b669e 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -2221,7 +2221,7 @@ muldimposix:: watchpoint1: @echo $@ - @AWKPATH="$(srcdir)" $(AWK) -D -f $@.awk $@.in < $@.script >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @AWKPATH="$(srcdir)" $(AWK) -D -f $@.awk $(srcdir)/$@.in < $(srcdir)/$@.script >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ # Targets generated for other tests: diff --git a/test/Makefile.in b/test/Makefile.in index 3fa8fbc4..1e9b1bd8 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -2659,7 +2659,7 @@ muldimposix:: watchpoint1: @echo $@ - @AWKPATH="$(srcdir)" $(AWK) -D -f $@.awk $@.in < $@.script >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @AWKPATH="$(srcdir)" $(AWK) -D -f $@.awk $(srcdir)/$@.in < $(srcdir)/$@.script >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ Gt-dummy: # file Maketests, generated from Makefile.am by the Gentests program |