source: roaraudio/tests/test-runnable.sh @ 5381:430b1d26e12d

Last change on this file since 5381:430b1d26e12d was 5185:9c42709e2c89, checked in by phi, 13 years ago

added server type +invalid

  • Property exe set to *
File size: 354 bytes
Line 
1#!/bin/sh
2
3TEST_NAME='Runnable test'
4TEST_DESC='Test clients for runnability'
5
6. ./common.sh
7
8CLIENTS="$1"
9
10for c in $CLIENTS;
11do
12 printf "%-16s : " "$c"
13
14 $EXEC_HELPER $BIN_PATH$c --server +invalid < /dev/null > /dev/null 2> /dev/null
15 R=$?
16
17 if [ "$R" -le 64 ]
18 then
19  _ok
20  echo ok
21 else
22  _failed
23  echo "FAILED! ret=$R"
24 fi
25
26done
27
28disp_sum
29ret
30
31#ll
Note: See TracBrowser for help on using the repository browser.