aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-03-20 21:23:32 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-03-20 21:23:32 +0200
commit4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54 (patch)
tree25e3ee3767b5ac816f68667b3dbe8184639141a6 /test
parent65ed9b66cada11364e9b67ea1cd178b259cd0e36 (diff)
parentefc7e96c876ccf3b83ab3249eca852a0292ff943 (diff)
downloadegawk-4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54.tar.gz
egawk-4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54.tar.bz2
egawk-4dbaf72917b7c3e1592ccd2d4a787bb8b7a9fe54.zip
Merge branch 'master' into feature/api-mpfr
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog7
-rw-r--r--test/Makefile.am12
-rw-r--r--test/Makefile.in12
-rw-r--r--test/argarray.ok4
4 files changed, 15 insertions, 20 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index b0ca5a97..df0ed8fa 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,10 @@
+2017-03-19 Andrew J. Schorr <aschorr@telemetry-investments.com>
+
+ * Makefile.am (argarray): Always copy argarray.in to the local
+ directory as argarray.input instead of trying to figure out whether
+ $(srcdir) is the current directory.
+ * argarray.ok: Replace argarray.in with argarray.input.
+
2017-02-21 Andrew J. Schorr <aschorr@telemetry-investments.com>
* Makefile.am (mktime): New test.
diff --git a/test/Makefile.am b/test/Makefile.am
index 65336b6c..a356d63b 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1461,15 +1461,9 @@ messages::
argarray::
@echo $@
- @case "$(srcdir)" in \
- .) : ;; \
- *) cp "$(srcdir)"/argarray.in . ;; \
- esac
- @TEST=test echo just a test | $(AWK) -f "$(srcdir)"/argarray.awk ./argarray.in - >_$@
- @case "$(srcdir)" in \
- .) : ;; \
- *) rm -f ./argarray.in ;; \
- esac
+ @cp "$(srcdir)"/argarray.in ./argarray.input
+ @TEST=test echo just a test | $(AWK) -f "$(srcdir)"/argarray.awk ./argarray.input - >_$@
+ @rm -f ./argarray.input
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
regtest::
diff --git a/test/Makefile.in b/test/Makefile.in
index 1a61996f..8719840b 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -1901,15 +1901,9 @@ messages::
argarray::
@echo $@
- @case "$(srcdir)" in \
- .) : ;; \
- *) cp "$(srcdir)"/argarray.in . ;; \
- esac
- @TEST=test echo just a test | $(AWK) -f "$(srcdir)"/argarray.awk ./argarray.in - >_$@
- @case "$(srcdir)" in \
- .) : ;; \
- *) rm -f ./argarray.in ;; \
- esac
+ @cp "$(srcdir)"/argarray.in ./argarray.input
+ @TEST=test echo just a test | $(AWK) -f "$(srcdir)"/argarray.awk ./argarray.input - >_$@
+ @rm -f ./argarray.input
@-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
regtest::
diff --git a/test/argarray.ok b/test/argarray.ok
index 18eb841c..3c026634 100644
--- a/test/argarray.ok
+++ b/test/argarray.ok
@@ -1,9 +1,9 @@
here we have 3 arguments
which are
gawk
- ./argarray.in
+ ./argarray.input
-
Environment variable TEST=
and the current input file is called ""
-in main loop, this input file is known as "./argarray.in"
+in main loop, this input file is known as "./argarray.input"
in main loop, this input file is known as "-"