Add installation script for phoronix-static.
[gcc-perf-regression-tester.git] / get-all.sh
blob1d1725fe2f2f6fc83a1013af77de3b89eca90493
1 #!/bin/bash
3 # Copyright (C) 2011 Sebastian Pop <sebpop@gmail.com>.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details. A copy of this license
13 # can be downloaded from http://www.gnu.org/copyleft/gpl.html
15 # This script calls all the get.sh scripts in all the benchmark
16 # directories. The get.sh scripts are launched in background to be
17 # processed in parallel.
19 X=$HOME/gcc/test
20 for d in `ls -d $X/bmks/*`; do
21 if test -x $d/get.sh; then
22 cd $d; ./get.sh &
24 done