aboutsummaryrefslogtreecommitdiffstats
path: root/test/03_delete
diff options
context:
space:
mode:
authorgramanas <anastasis.gramm2@gmail.com>2018-11-16 15:18:52 +0200
committergramanas <anastasis.gramm2@gmail.com>2018-11-16 15:18:52 +0200
commit2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca (patch)
treef40fe47da44ae371b20149940ad096e894a708bb /test/03_delete
parent54ae271dfc5f8405233ed320b2e9bd821ee8210f (diff)
downloadck-2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca.tar.gz
ck-2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca.tar.bz2
ck-2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca.zip
Add verbose option to regression tests
Diffstat (limited to 'test/03_delete')
-rw-r--r--test/03_delete6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/03_delete b/test/03_delete
index e4663bd..7e31d66 100644
--- a/test/03_delete
+++ b/test/03_delete
@@ -15,7 +15,7 @@ add_config prog2 $path3
add_config prog2 $path4
# delete path1
-exec $BIN/ck -c $BIN del prog1 `basename $path1` > /dev/null &
+exec $BIN/ck -c $BIN del prog1 `basename $path1` >&${V} &
wait $!
for i in $($BIN/ck -c $BIN list paths); do
@@ -26,7 +26,7 @@ for i in $($BIN/ck -c $BIN list paths); do
done
# delete path2 (also prog1)
-exec $BIN/ck -c $BIN del prog1 `basename $path2` > /dev/null &
+exec $BIN/ck -c $BIN del prog1 `basename $path2` >&${V} &
wait $!
for i in $($BIN/ck -c $BIN list programs); do
@@ -36,7 +36,7 @@ for i in $($BIN/ck -c $BIN list programs); do
done
# delete prog2
-exec $BIN/ck -c $BIN del prog2 > /dev/null &
+exec $BIN/ck -c $BIN del prog2 >&${V} &
wait $!
for i in $($BIN/ck -c $BIN list paths); do