diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-08-14 01:35:09 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-08-14 01:35:09 +0200 |
commit | ad52865aefeef7c87506a45bf2515413c8092a09 (patch) | |
tree | 988bab2e3f0b19138c1f21e3872d67898189a0e3 | |
parent | 90d5d3239426fa7490973aa6c8f13493f5735aa3 (diff) | |
download | ipecamera-ad52865aefeef7c87506a45bf2515413c8092a09.tar.gz ipecamera-ad52865aefeef7c87506a45bf2515413c8092a09.tar.bz2 ipecamera-ad52865aefeef7c87506a45bf2515413c8092a09.tar.xz ipecamera-ad52865aefeef7c87506a45bf2515413c8092a09.zip |
Improve autotrigger test
-rwxr-xr-x | tests/autotrigger.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/autotrigger.sh b/tests/autotrigger.sh index 44fc22f..7b0575d 100755 --- a/tests/autotrigger.sh +++ b/tests/autotrigger.sh @@ -1,5 +1,10 @@ #! /bin/bash +#Example options: +# ./autotrigger.sh --threads 4 - use multiple threads for preprocessing +# ./autotrigger.sh --data raw --format raw - test raw_data_callback functionality +# PCILIB_DEBUG_MISSING_EVENTS=1 IPECAMERA_DEBUG_HARDWARE=1 ./autotrigger.sh - debug missing frames + function pci { APP_PATH=`dirname $0`/.. if [ -d $APP_PATH/../pcitool ]; then @@ -14,14 +19,14 @@ function pci { } echo "Starting the grabber" -pci -g -o /dev/null --run-time 1002000000 --verbose 10 & +pci -g -o /dev/null --run-time 10002000000 --verbose 10 $@ & pid=$! -trap "{ /usr/bin/kill -s INT $!; }" SIGINT +trap "{ kill -s INT $!; }" SIGINT sleep 0.1 pci -w 9040 80004a01 -sleep 1000 +sleep 10000 pci -w 9040 80000201 echo "Waiting grabber to finish" |