X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=t%2Ft0005-man.sh;h=ad9fa4c79090f926a401d347c8e8414cea30fbf4;hp=7a627aad34784eab0a9fd15de5ff2883b48235fd;hb=fc8dfbb416ff07cca08fbf4e13efcaa25e17cc54;hpb=08ae151a088d1a1bc5442d8ee95960353a7a5782 diff --git a/t/t0005-man.sh b/t/t0005-man.sh index 7a627aad..ad9fa4c7 100755 --- a/t/t0005-man.sh +++ b/t/t0005-man.sh @@ -25,15 +25,19 @@ grep_man() # in the man pages regex="$rfw_regex" -test_expect_success 'para_recv: receiver options' "grep_man '$regex' recv" +test_expect_success 'para_recv: receiver options' "grep_man 'RECEIVERS' recv" test_expect_success 'para_filter: filter options' "grep_man '$regex' filter" test_expect_success 'para_write: writer options' "grep_man '$regex' write" test_require_objects "audiod" if [[ -n "$result" ]]; then test_skip 'para_audiod' "missing object(s): $result" else - test_expect_success 'para_audiod: recv/filter/writer options' \ - "grep_man '$regex' audiod" + test_expect_success 'para_audiod: receivers' \ + "grep_man 'RECEIVERS' audiod" + test_expect_success 'para_audiod: filters' \ + "grep_man 'Options for the compress filter' audiod" + test_expect_success 'para_audiod: writers' \ + "grep_man 'Options for the file writer' audiod" fi # check various command lists @@ -52,7 +56,7 @@ missing_objects="$result" if [[ -n "$missing_objects" ]]; then test_skip "para_server" "missing object(s): $missing_objects" else - regex='LIST OF SERVER COMMANDS.\{100,\}LIST OF AFS COMMANDS' + regex='LIST OF SERVER COMMANDS.\{100,\}' test_expect_success 'para_server: server/afs commands' \ "grep_man '$regex' server" fi @@ -60,5 +64,4 @@ fi # para_play is always built regex='LIST OF COMMANDS.\{100,\}' test_expect_success 'para_play: play commands' "grep_man '$regex' play" -regex="$rfw_regex" test_done