1#! /bin/bash
2# interactive version of run
3
4trap "exit;" SIGINT SIGTERM
5
6while true
7do
8    ${ANDROID_BUILD_TOP}/system/bt/gd/cert/run "$@"
9    python3 ${ANDROID_BUILD_TOP}/system/bt/gd/cert/change_waiter.py ${ANDROID_BUILD_TOP}/system/bt
10done
11