aboutsummaryrefslogtreecommitdiffstats
path: root/test/checknegtime.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2015-05-30 23:45:27 -0400
committerArnold D. Robbins <arnold@skeeve.com>2015-05-30 23:45:27 -0400
commit22ea6af9c93cbbfce581a00c7a41b0c92fd8507d (patch)
tree5646692c3310e7ea76073abb53e8d4b7a1b97875 /test/checknegtime.awk
parent0b876113d778d77543fd8bafef4e37fc2af72bc8 (diff)
parent501c2e5e720e3dbcb2e830c28037dd8b8d46bfcf (diff)
downloadegawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.tar.gz
egawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.tar.bz2
egawk-22ea6af9c93cbbfce581a00c7a41b0c92fd8507d.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test/checknegtime.awk')
-rw-r--r--test/checknegtime.awk22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/checknegtime.awk b/test/checknegtime.awk
new file mode 100644
index 00000000..06dfcae9
--- /dev/null
+++ b/test/checknegtime.awk
@@ -0,0 +1,22 @@
+NR == 1 {
+ # Tue Dec 15 07:00:00 GMT 1959
+ Weekday = $1
+ Month = $2
+ Day = $3
+ Time = $4
+ Timezone = $5
+ Year = $6
+}
+
+NR == 2 {
+ if (NF == 0) # MinGW gives an empty line
+ exit 0
+
+ # Some BSDs give us UTC in the timezone
+ if ($1 == Weekday && $2 == Month && $3 == Day &&
+ $4 == Time && $6 == Year)
+ exit 0
+
+ # Some other mismatch
+ exit 1
+}