diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-21 20:58:23 -0700 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-21 22:54:37 -0700 |
commit | 7c1b00f4a80ee5eb91333cad9c27ba699c6b2e3b (patch) | |
tree | e2ceef820d026bff4beaf222ee3608c8c883cfa0 | |
parent | bf907d2c4a7c9c4d95d2af644eb5f8dc97e073c3 (diff) | |
download | samba-7c1b00f4a80ee5eb91333cad9c27ba699c6b2e3b.tar.gz samba-7c1b00f4a80ee5eb91333cad9c27ba699c6b2e3b.tar.bz2 samba-7c1b00f4a80ee5eb91333cad9c27ba699c6b2e3b.zip |
selftest: Use idlist testing for python tests.
-rwxr-xr-x | selftest/selftest.pl | 5 | ||||
-rwxr-xr-x | source4/selftest/tests.sh | 7 |
2 files changed, 6 insertions, 6 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 37433de42d..a21ecbabe4 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -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}}); } } diff --git a/source4/selftest/tests.sh b/source4/selftest/tests.sh index f31f0823d3..719f4a65b1 100755 --- a/source4/selftest/tests.sh +++ b/source4/selftest/tests.sh @@ -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() { |