diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-08 09:51:47 -0400 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2015-06-08 09:51:47 -0400 |
commit | a6568baf060045cadad1f05af5cfe43e31626b31 (patch) | |
tree | 4471355f7fc25c1549a915a03ab8b14fbeb8783d /test/checknegtime.awk | |
parent | c70ee2ae9fc9fa99c0b3b1af20a7dd0203aaa0d1 (diff) | |
parent | 72882c6a1e76730e6e706941a1a3a855ea023b69 (diff) | |
download | egawk-a6568baf060045cadad1f05af5cfe43e31626b31.tar.gz egawk-a6568baf060045cadad1f05af5cfe43e31626b31.tar.bz2 egawk-a6568baf060045cadad1f05af5cfe43e31626b31.zip |
Merge branch 'master' into feature/cmake
Diffstat (limited to 'test/checknegtime.awk')
-rw-r--r-- | test/checknegtime.awk | 22 |
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 +} |