X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fmdate5.sh;h=fadc363ebc5db728285dfc8b9df7da65956ea5e9;hb=a7c00e1935726a32dca6871dd0f1b7eda28d0a5b;hp=4cef9526dcb523283b3d06cdcd80730d10743263;hpb=76f0605a6dd790ab43cc608db11ac2141ddf46c0;p=platform%2Fupstream%2Fautomake.git diff --git a/t/mdate5.sh b/t/mdate5.sh old mode 100755 new mode 100644 index 4cef952..fadc363 --- a/t/mdate5.sh +++ b/t/mdate5.sh @@ -1,5 +1,5 @@ #! /bin/sh -# Copyright (C) 1999-2012 Free Software Foundation, Inc. +# Copyright (C) 1999-2013 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,29 +17,29 @@ # Test to make sure mdate-sh works correctly. am_create_testdir=empty -. ./defs || Exit 1 +. test-init.sh get_shell_script mdate-sh -set x `./mdate-sh mdate-sh` +set x $(./mdate-sh mdate-sh) shift echo "$*" # For debugging. # Check that mdate output looks like a date: test $# = 3 -case $1$3 in *[!0-9]*) Exit 1;; esac +case $1$3 in *[!0-9]*) exit 1;; esac test $1 -lt 32 # Hopefully automake will be obsolete in 80 years ;-) -case $3 in 20[0-9][0-9]) :;; *) Exit 1;; esac +case $3 in 20[0-9][0-9]) :;; *) exit 1;; esac case $2 in January|February|March|April|May|June|July|August) ;; September|October|November|December) ;; - *) Exit 1 + *) exit 1 esac # Stricter checks on the year required a POSIX date(1) command. -if year=`date +%Y` && test $year -gt 2010; then - test $year = $3 || Exit 1 +if year=$(date +%Y) && test $year -gt 2010; then + test $year = $3 || exit 1 fi :