force numeric comparision

This commit is contained in:
Mark Andrews
2011-05-02 05:05:05 +00:00
parent c45b7e1660
commit 65043f48f2

View File

@@ -14,7 +14,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
# $Id: tests.sh,v 1.24 2011/05/02 01:35:04 marka Exp $
# $Id: tests.sh,v 1.25 2011/05/02 05:05:05 marka Exp $
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
@@ -902,10 +902,10 @@ check_interval () {
x = x + 24*3600;
if (x != int(x))
x = int(x + 1);
if (x > interval)
if (int(x) > int(interval))
exit (1);
}
END { if (x != interval) exit(1) }' interval=$2
END { if (int(x) != int(interval)) exit(1) }' interval=$2
return $?
}