summaryrefslogtreecommitdiff
path: root/node_modules/dateformat/test/weekofyear/test_weekofyear.sh
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/dateformat/test/weekofyear/test_weekofyear.sh')
-rw-r--r--node_modules/dateformat/test/weekofyear/test_weekofyear.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/node_modules/dateformat/test/weekofyear/test_weekofyear.sh b/node_modules/dateformat/test/weekofyear/test_weekofyear.sh
deleted file mode 100644
index 3c3e69b31..000000000
--- a/node_modules/dateformat/test/weekofyear/test_weekofyear.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-# this just takes php's date() function as a reference to check if week of year
-# is calculated correctly in the range from 1970 .. 2038 by brute force...
-
-SEQ="seq"
-SYSTEM=`uname`
-if [ "$SYSTEM" = "Darwin" ]; then
- SEQ="jot"
-fi
-
-for YEAR in {1970..2038}; do
- for MONTH in {1..12}; do
- DAYS=$(cal $MONTH $YEAR | egrep "28|29|30|31" |tail -1 |awk '{print $NF}')
- for DAY in $( $SEQ $DAYS ); do
- DATE=$YEAR-$MONTH-$DAY
- echo -n $DATE ...
- NODEVAL=$(node test_weekofyear.js $DATE)
- PHPVAL=$(php -r "echo intval(date('W', strtotime('$DATE')));")
- if [ "$NODEVAL" -ne "$PHPVAL" ]; then
- echo "MISMATCH: node: $NODEVAL vs php: $PHPVAL for date $DATE"
- else
- echo " OK"
- fi
- done
- done
-done