aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi-test/recipes-extended/common-api/common-api-test/common-api-test_t.inc
blob: 8b304f10214eeda03e2ab935bca36eea6478e025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
get_list() {
  return 1
}

get_title() {
  echo "Common API C++ runtime"
}

run_1() {
  /opt/tests/common-api-test/E05ManagerService &
  /opt/tests/common-api-test/E05ManagerClient &
  sleep 5
  kill -9 `pidof E05ManagerClient`
  kill -9 `pidof E05ManagerService`
  sleep 1
}