1 2CAL_BIN="ncal" 3CAL="${CAL_BIN} -C" 4NCAL="${CAL_BIN} -N" 5YEARS="2008 2009 2010 2011" 6ONEYEAR="2009" 7 8echo 1..89 9 10REGRESSION_START($1) 11 12# 13# The first tests are layout tests, to make sure that the output is still the 14# same despite varying months. 15# 16 17# Full year calendars 18 19for y in ${YEARS}; do 20 # Regular calendar, Month days, No-highlight 21 REGRESSION_TEST(`r-y${y}-md-nhl', `$NCAL -h ${y}') 22 # Backwards calendar, Month days, No-highlight 23 REGRESSION_TEST(`b-y${y}-md-nhl', `$CAL -h ${y}') 24 # Regular calendar, Julian days, No-highlight 25 REGRESSION_TEST(`r-y${y}-jd-nhl', `$NCAL -jh ${y}') 26 # Backwards calendar, Julian days, No-highlight 27 REGRESSION_TEST(`b-y${y}-jd-nhl', `$CAL -jh ${y}') 28done 29 30# 3 month calendars 31 32for m in $(jot -w %02d 12); do 33 # Regular calendar, Month days, No-highlight 34 REGRESSION_TEST(`r-3m${ONEYEAR}${m}-md-nhl', 35 `$NCAL -h3 ${m} ${ONEYEAR}') 36 # Backwards calendar, Month days, No-highlight 37 REGRESSION_TEST(`b-3m${ONEYEAR}${m}-md-nhl', `$CAL -h3 ${m} ${ONEYEAR}') 38 # Regular calendar, Julian days, No-highlight 39 REGRESSION_TEST(`r-3m${ONEYEAR}${m}-jd-nhl', 40 `$NCAL -jh3 ${m} ${ONEYEAR}') 41 # Backwards calendar, Julian days, No-highlight 42 REGRESSION_TEST(`b-3m${ONEYEAR}${m}-jd-nhl', `$CAL -jh3 ${m} ${ONEYEAR}') 43done 44 45# 46# The next tests are combinations of the various arguments. 47# 48 49# These should fail 50REGRESSION_TEST(`f-3y-nhl', `$NCAL -3 -y 2>&1') 51REGRESSION_TEST(`f-3A-nhl', `$NCAL -3 -A 3 2>&1') 52REGRESSION_TEST(`f-3B-nhl', `$NCAL -3 -B 3 2>&1') 53REGRESSION_TEST(`f-3gy-nhl', `$NCAL -3 2008 2>&1') 54REGRESSION_TEST(`f-3AB-nhl', `$NCAL -3 -A 3 -B 3 2>&1') 55REGRESSION_TEST(`f-mgm-nhl', `$NCAL -m 3 2 2008 2>&1') 56REGRESSION_TEST(`f-ym-nhl', `$NCAL -y -m 2 2>&1') 57REGRESSION_TEST(`f-ygm-nhl', `$NCAL -y 2 2008 2>&1') 58REGRESSION_TEST(`f-yA-nhl', `$NCAL -y -A 3 2>&1') 59REGRESSION_TEST(`f-yB-nhl', `$NCAL -y -B 3 2>&1') 60REGRESSION_TEST(`f-yAB-nhl', `$NCAL -y -A 3 -B 3 2>&1') 61 62# These should be successful 63 64REGRESSION_TEST(`s-b-3-nhl', `$CAL -d 2008.03 -3') 65REGRESSION_TEST(`s-b-A-nhl', `$CAL -d 2008.03 -A 1') 66REGRESSION_TEST(`s-b-B-nhl', `$CAL -d 2008.03 -B 1') 67REGRESSION_TEST(`s-b-AB-nhl', `$CAL -d 2008.03 -A 1 -B 1') 68REGRESSION_TEST(`s-b-m-nhl', `$CAL -d 2008.03 -m 1') 69REGRESSION_TEST(`s-b-mgy-nhl', `$CAL -d 2008.03 -m 1 2007') 70REGRESSION_TEST(`s-b-gmgy-nhl', `$CAL -d 2008.03 1 2007') 71REGRESSION_TEST(`s-r-3-nhl', `$NCAL -d 2008.03 -3') 72REGRESSION_TEST(`s-r-A-nhl', `$NCAL -d 2008.03 -A 1') 73REGRESSION_TEST(`s-r-B-nhl', `$NCAL -d 2008.03 -B 1') 74REGRESSION_TEST(`s-r-AB-nhl', `$NCAL -d 2008.03 -A 1 -B 1') 75REGRESSION_TEST(`s-r-m-nhl', `$NCAL -d 2008.03 -m 1') 76REGRESSION_TEST(`s-r-mgy-nhl', `$NCAL -d 2008.03 -m 1 2007') 77REGRESSION_TEST(`s-r-gmgy-nhl', `$NCAL -d 2008.03 1 2007') 78 79REGRESSION_END() 80