aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/build_benches.sh
blob: 02123665b6978cfff63a4c43cb376ba214b3a9a3 (plain)
1
2
3
4
5
6
7
8
9

source benches.sh

rm -f commands.txt
for bench in $benches; do
  echo "(cd $bench && make -j5 $1)" >> commands.txt
done

cat commands.txt | xargs -n1 -I{} -P4 bash -c '{}'