blob: 35bf1ee655b88e82469df19fd264873b62c5f81d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash
init list
# add configs to ck
path1=$BIN/test1.conf
path2=$BIN/test2.conf
path3=$BIN/test3.conf
add_config prog1 $path1
add_config prog2 $path2
add_config prog3 $path3
for i in $($BIN/ck conf $BIN list paths); do
if [[ "$i" != "$path1" ]] && [[ "$i" != "$path2" ]] && [[ "$i" != "$path3" ]]; then
err "Listing paths"
fi
done
for i in $($BIN/ck conf $BIN list programs); do
if [[ "$i" != "prog1" ]] && [[ "$i" != "prog2" ]] && [[ "$i" != "prog3" ]]; then
err "Listing programs"
fi
done
clear_tests
echo -e $PASS
|