From: Tobias Oetiker Date: Fri, 7 Mar 2014 05:09:47 +0000 (+0100) Subject: fixed stray mentions of rrdtool (not $RRDTOOL) in test scripts, causing them to fail... X-Git-Tag: v1.5.0-rc1~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a2817cffe26cbbba76ecf67b5c928651aa5bac4;p=thirdparty%2Frrdtool-1.x.git fixed stray mentions of rrdtool (not $RRDTOOL) in test scripts, causing them to fail on travis --- diff --git a/.travis.yml b/.travis.yml index 69ae021e..8f454769 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,8 @@ before_script: script: - ./configure --prefix=/opt/rrdtool-master - make + - cd tests && ./alltests /opt/rrdtool-master/bin/rrdtool - sudo make install - /opt/rrdtool-master/bin/rrdtool - /opt/rrdtool-master/share/rrdtool/examples/4charts.pl - - cd tests && ./alltests /opt/rrdtool-master/bin/rrdtool diff --git a/tests/modify1 b/tests/modify1 index 565ac597..467f8ec2 100755 --- a/tests/modify1 +++ b/tests/modify1 @@ -8,7 +8,7 @@ $RRDTOOL create ${BASE}a.rrd --start 1300000000 --step 60 DS:a:GAUGE:120:0:U RR # add 50 values to N=10 for T in $(seq 1300000020 60 1300003020) ; do - rrdtool update ${BASE}a.rrd --template a $T:$N + $RRDTOOL update ${BASE}a.rrd --template a $T:$N let N=$N+10 done diff --git a/tests/modify3 b/tests/modify3 index 0db4a420..c366ef15 100755 --- a/tests/modify3 +++ b/tests/modify3 @@ -8,7 +8,7 @@ $RRDTOOL create ${BASE}a.rrd --start 1300000000 --step 60 DS:a:GAUGE:120:0:U DS # add 50 values to N=10 for T in $(seq 1300000020 60 1300003020) ; do - rrdtool update ${BASE}a.rrd --template a:b:c $T:$N:$((10000+$N)):$((20000+$N)) + $RRDTOOL update ${BASE}a.rrd --template a:b:c $T:$N:$((10000+$N)):$((20000+$N)) let N=$N+10 done