1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

selftest: Use idlist testing for python tests.

This commit is contained in:
Jelmer Vernooij
2010-09-21 20:58:23 -07:00
parent bf907d2c4a
commit 7c1b00f4a8
2 changed files with 6 additions and 6 deletions

View File

@ -633,7 +633,7 @@ sub read_testlist($)
open(IN, $filename) or die("Unable to open $filename: $!");
while (<IN>) {
if (/-- TEST(-LOADLIST|IDLIST)? --\n/) {
if (/-- TEST(-LOADLIST|-IDLIST|) --\n/) {
my $supports_loadlist = (defined($1) and $1 eq "-LOADLIST");
my $supports_idlist = (defined($1) and $1 eq "-IDLIST");
my $name = <IN>;
@ -955,7 +955,8 @@ $envvarstr
}
$cmd .= " --load-list=$listid_file";
} elsif ($$_[4]) {
$cmd .= join(' ', @{$individual_tests->{$name}});
$cmd =~ s/\s+[^\s]+\s*$//;
$cmd .= " " . join(' ', @{$individual_tests->{$name}});
}
}

View File

@ -102,10 +102,9 @@ planperltestsuite() {
planpythontestsuite() {
name=$1
env=$2
shift 2
other_args="$*"
cmdline="$SUBUNITRUN $other_args"
plantestsuite "$name" "$env" $cmdline
module="$3"
shift 3
plantestsuite_idlist "$name" "$env" python -m subunit.run $module
}
plansmbtorturetestsuite() {