From 9a2817cffe26cbbba76ecf67b5c928651aa5bac4 Mon Sep 17 00:00:00 2001 From: Tobias Oetiker Date: Fri, 7 Mar 2014 06:09:47 +0100 Subject: [PATCH] fixed stray mentions of rrdtool (not $RRDTOOL) in test scripts, causing them to fail on travis --- .travis.yml | 2 +- tests/modify1 | 2 +- tests/modify3 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 -- 2.47.3