From: Michal Sojka Date: Thu, 10 Apr 2014 14:09:01 +0000 (+0200) Subject: continuous: Add script to be used with "git bisect run" X-Git-Tag: fix-allnoconfig~4 X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/commitdiff_plain/53b795705954cdba2c7964bca9ad19885187025a?hp=39569783cdc9b65bdc545703180cae8bcab37a81 continuous: Add script to be used with "git bisect run" --- diff --git a/continuous/steps/bisect-run.sh b/continuous/steps/bisect-run.sh new file mode 100755 index 0000000..b4826c3 --- /dev/null +++ b/continuous/steps/bisect-run.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e +set -x + +cd $(dirname $0) +./11-patch +./20-config +./30-compile +cd ../tests +timeout 30s ./kernelgw || ( echo Returned $?; exit 1 )