• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #!/bin/bash
2 #
3 # $1: path to minimal example binaries...
4 #     if lws is built with -DLWS_WITH_MINIMAL_EXAMPLES=1
5 #     that will be ./bin from your build dir
6 #
7 # $2: path for logs and results.  The results will go
8 #     in a subdir named after the directory this script
9 #     is in
10 #
11 # $3: offset for test index count
12 #
13 # $4: total test count
14 #
15 # $5: path to ./minimal-examples dir in lws
16 #
17 # Test return code 0: OK, 254: timed out, other: error indication
18 
19 . $5/selftests-library.sh
20 
21 COUNT_TESTS=1
22 
23 dotest $1 $2 apiselftest
24 exit $FAILS
25