Arora / arora forked from icefox/arora

Cross platform web browser

This URL has Read+Write access

arora / autotests / runTests.sh
100755 28 lines (22 sloc) 0.377 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
 
for directory in `ls -d */`
do
name=`basename $directory`
 
    if [ $name == "modeltest" ]
    then
continue
fi
 
if [ $name == "downloadmanager" ]
    then
continue
fi
 
cd $name
 
    if [ ! -f $name ]
    then
printf "$name/$name is not compiled.\n"
    else
        ./$name -silent
    fi
 
printf "\n"
    cd ../
done