summaryrefslogtreecommitdiff
path: root/ezbench.sh
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2015-07-23 16:27:12 +0100
committerMartin Peres <martin.peres@linux.intel.com>2015-07-27 15:49:52 +0300
commit6800c09d7ef2a8a089079548afc6aa118c64bd95 (patch)
treef5e0862b3f027b7ad8fc47e820056bf56e4424aa /ezbench.sh
parentbcd03172408c09e513df5ff708c119a7d66906be (diff)
Allow multiple -b options
Append the next -b selection onto the list of benchmarks.
Diffstat (limited to 'ezbench.sh')
-rwxr-xr-xezbench.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ezbench.sh b/ezbench.sh
index bcae9ca..9ae5f9a 100755
--- a/ezbench.sh
+++ b/ezbench.sh
@@ -80,7 +80,7 @@ while getopts "h?p:n:H:r:b:m:l" opt; do
;;
r) rounds=$OPTARG
;;
- b) testsList=$OPTARG
+ b) testsList="$testsList $OPTARG"
;;
m) makeCommand=$OPTARG
;;