subsequenttests (cdf0e10c) subsequenttests (12c405ff)
1eval 'exec "$PERL" -Sw "$0" "$@"'
2 if 0;
3#*************************************************************************
4#
5# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6#
7# Copyright 2000, 2010 Oracle and/or its affiliates.
8#

--- 98 unchanged lines hidden (view full) ---

107 foreach $path (@testpaths) {
108 print "$path\n";
109 }
110 print "$gbuildpath\n";
111 exit(0);
112}
113
114my @failedpaths = ();
1eval 'exec "$PERL" -Sw "$0" "$@"'
2 if 0;
3#*************************************************************************
4#
5# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6#
7# Copyright 2000, 2010 Oracle and/or its affiliates.
8#

--- 98 unchanged lines hidden (view full) ---

107 foreach $path (@testpaths) {
108 print "$path\n";
109 }
110 print "$gbuildpath\n";
111 exit(0);
112}
113
114my @failedpaths = ();
115my @gbuildargs = ("-j$max_running", "-s");
115my @gbuildargs = ("-j$max_running", "-s", "-r");
116if ($keep_going) {
117 push(@gbuildargs,"-k");
118}
119push(@gbuildargs, "--file=$gbuildpath");
120push(@gbuildargs, "subsequentcheck");
121if (system($ENV{'GNUMAKE'}, @gbuildargs) != 0) {
122 push(@failedpaths,$gbuildpath);
123 @testpaths = () unless $keep_going;

--- 48 unchanged lines hidden ---
116if ($keep_going) {
117 push(@gbuildargs,"-k");
118}
119push(@gbuildargs, "--file=$gbuildpath");
120push(@gbuildargs, "subsequentcheck");
121if (system($ENV{'GNUMAKE'}, @gbuildargs) != 0) {
122 push(@failedpaths,$gbuildpath);
123 @testpaths = () unless $keep_going;

--- 48 unchanged lines hidden ---