summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/performance-tests/scripts/3_Path_Period_10ms_Lanes/run_all.pl
blob: 86c2d5d206d90cb27baeb7c0ab94017ed3ebd45c (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
    & eval 'exec perl -S $0 $argv:q'
    if 0;

# $Id$
# -*- perl -*-

use lib "../../../../../../../bin";
use PerlACE::Run_Test;
use File::Copy;
use Getopt::Long;

GetOptions ("rt" => \$rt,
            "cos" => \$cos,
            "all" => \$all);

@list=glob("*");

for $file (@list)
{
    # default to rt
    if (!$all && !$rt && !$cos)
    {
        $rt = 1;
    }

    if (-d $file)
    {
        if ($all || $rt)
        {
            print STDERR "Running $file test with RT Notification\n";

            $cmd = "run_test.pl -n rt_notify.conf -s $file/supplier.conf -c consumer.conf -o $file/rt_output";

            $status = system ("perl $cmd");

            if ($status != 0)
            {
                print STDERR "ERROR: $file test returned $status\n";
            }
        }


        if ($all || $cos)
        {
            print STDERR "Running $file test with COS Notification\n";

            $cmd = "run_test.pl -n cos_notify.conf -s $file/supplier.conf -c consumer.conf -o $file/cos_output";

            $status = system ("perl $cmd");

            if ($status != 0)
            {
                print STDERR "ERROR: $file test returned $status\n";
            }
        }
    }
}