summaryrefslogtreecommitdiff
path: root/TAO/tests/Sequence_Unit_Tests/run_test.pl
blob: c6fd1ae795f5d3dfbac65f70d0b9e331bb7c99aa (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
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 strict;

my $final_result = 0;

my @tests = qw(unbounded_value_sequence_ut
               bounded_value_sequence_ut
               string_sequence_element_ut
               unbounded_string_sequence_ut
               bounded_string_sequence_ut
               testing_allocation_traits_ut
               object_reference_sequence_element_ut
               unbounded_object_reference_sequence_ut
               Unbounded_Simple_Types
               Bounded_Simple_Types
               Unbounded_String
               Bounded_String
              );

foreach my $process (@tests) {


  my $P = new PerlACE::Process ($process,
                                '--log_level=nothing '
                                .'--report_level=no');
  my $executable = $P->Executable;

  # Not all the binaries are generated in all configurations.
  next unless -x $executable;

  print "Running $process ...";
  my $result = $P->Spawn;
  if ($result != 0) {
    print "FAILED\n";
    $final_result = 1;
    next;
  }
  $result = $P->WaitKill(30);
  if ($result != 0) {
    print "FAILED\n";
    $final_result = 1;
    next;
  }
  print "SUCCESS\n";
}

exit $final_result;