summaryrefslogtreecommitdiff
path: root/contrib/awk/test/strftime.awk
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
commit2641b0c407077fa8c3032d87d15ac6a103b0ed1b (patch)
tree97e7da54e454c6cb23ca18813708e5c453e8de9f /contrib/awk/test/strftime.awk
parent57293fdc2cfdd01d9d5e32d0e5243669d7e006e9 (diff)
Diffstat (limited to 'contrib/awk/test/strftime.awk')
-rw-r--r--contrib/awk/test/strftime.awk15
1 files changed, 0 insertions, 15 deletions
diff --git a/contrib/awk/test/strftime.awk b/contrib/awk/test/strftime.awk
deleted file mode 100644
index 8c1f401acc75..000000000000
--- a/contrib/awk/test/strftime.awk
+++ /dev/null
@@ -1,15 +0,0 @@
-# strftime.awk ; test the strftime code
-#
-# input is the output of `date', see Makefile.in
-#
-# The mucking about with $0 and $N is to avoid problems
-# on cygwin, where the timezone field is empty and there
-# are two consecutive blanks.
-
-{
- $3 = sprintf("%02d", $3 + 0)
- print > "strftime.ok"
- $0 = strftime()
- $NF = $NF
- print > OUTPUT
-}