aboutsummaryrefslogtreecommitdiffstats
path: root/tests/04_search
blob: c3600c10bac0afc63eb7c55a3443e6a9ed768492 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash

init search

# setup test configs
path1=$BIN/test1.conf
path2=$BIN/test2.conf
path3=$BIN/test3.conf
path4=$BIN/test4.conf

add_config prog1 $path1 "search-term"
add_config prog1 $path2 "search-term"
add_config prog2 $path3 "search-term"
add_config prog3 $path4 "search-term"

# delete path1
if [[ $($BIN/ck -c $BIN search search-term | wc -l) != 4 ]]; then
  err "search failed."
fi

clear_tests
echo -e $PASS