aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi-test/recipes-multimedia/audiomanager/audiomanager/audiomanager_t.inc
blob: fe45729a74fd18c097bf0bda1fba863daa52dcc3 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
get_list() {
  return 6
}

get_title() {
  echo "audiomanager"
}

_run_dir=/opt/tests/audiomanager
_run() {
  if [ "x${2}" != "x" ]; then
    ${_run_dir}/$1 > /tmp/t
    tail /tmp/t | grep -E 'PASS|FAIL'
  else
    ${_run_dir}/$1
  fi
}

run_1() {
  _run AmControlInterfaceTest $*
}

run_2() {
  _run AmMapHandlerTest $*
}

run_3() {
  _run AmRouterMapTest $*
}

run_4() {
  _run AmRouterTest $*
}

run_5() {
  _run AmRoutingInterfaceTest $*
}

run_6() {
  _run AmSocketHandlerTest $*
}