summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/performance-tests/scripts/Paths_vs_Throughput/run_all.pl
blob: 33bf0bc2f99205c2f69b80eeb05d41f88a39c7dd (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
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
    & eval 'exec perl -S $0 $argv:q'
    if 0;

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

use lib "$ENV{ACE_ROOT}/bin";
use PerlACE::TestTarget;
use File::Copy;
use Getopt::Long;

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

@list=("Paths_1", "Paths_3","Paths_5","Paths_10","Paths_20");

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 high_path.conf -c $file/other_paths.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 high_path.conf -c $file/other_paths.conf -o $file/cos_output";

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

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