From 40dfd58c866aeaf7b04d4b26805685adcfcb91b9 Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Mon, 26 Mar 2012 13:20:18 +0200 Subject: [PATCH] parsing.sh: support batch_queue_* for barriere Count batch_queue_* in barriere bench --- communication_techniques/parsing.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/communication_techniques/parsing.sh b/communication_techniques/parsing.sh index df83b2c..5e6d5e2 100755 --- a/communication_techniques/parsing.sh +++ b/communication_techniques/parsing.sh @@ -13,11 +13,11 @@ init_bench_vars () then for com in $comList do - if echo $ourBenchs | grep "$com" > /dev/null 2>&1 + if echo $com | grep "$ourBenchs" > /dev/null 2>&1 then barriereList="${barriereList:-}${barriereList:+ }$com" fi - if echo $onlyWBBenchs | grep "$com" > /dev/null 2>&1 + if echo $com | grep "$onlyWBBenchs" > /dev/null 2>&1 then barriereList="${barriereList:-}${barriereList:+ }$com" fi