BUG 54161: automerged bzr bundle from bug report.
This commit is contained in:
commit
21634b92e5
@ -768,11 +768,13 @@ sub collect_one_test_case {
|
|||||||
# Check for disabled tests
|
# Check for disabled tests
|
||||||
# ----------------------------------------------------------------------
|
# ----------------------------------------------------------------------
|
||||||
my $marked_as_disabled= 0;
|
my $marked_as_disabled= 0;
|
||||||
if ( $disabled->{$tname} )
|
if ( $disabled->{$tname} or $disabled->{"$suitename.$tname"} )
|
||||||
{
|
{
|
||||||
# Test was marked as disabled in suites disabled.def file
|
# Test was marked as disabled in suites disabled.def file
|
||||||
$marked_as_disabled= 1;
|
$marked_as_disabled= 1;
|
||||||
$tinfo->{'comment'}= $disabled->{$tname};
|
# Test name may have been disabled with or without suite name part
|
||||||
|
$tinfo->{'comment'}= $disabled->{$tname} ||
|
||||||
|
$disabled->{"$suitename.$tname"};
|
||||||
}
|
}
|
||||||
|
|
||||||
my $disabled_file= "$testdir/$tname.disabled";
|
my $disabled_file= "$testdir/$tname.disabled";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user