diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-09 15:35:23 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-10 03:04:06 +0100 |
commit | a957d8c80f532654f502fdd37aecd34b231a00e8 (patch) | |
tree | ae6e165b4c3f80de15bc4d962442a4136aff8b9f /selftest | |
parent | 75ef8f1dd27f4985b3d705e7681a9218ad513c84 (diff) | |
download | samba-a957d8c80f532654f502fdd37aecd34b231a00e8.tar.gz samba-a957d8c80f532654f502fdd37aecd34b231a00e8.tar.bz2 samba-a957d8c80f532654f502fdd37aecd34b231a00e8.zip |
selftest: Rename $LIST to $LISTOPT for consistency with testrepository.
Diffstat (limited to 'selftest')
-rwxr-xr-x | selftest/selftest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl index 2ba68d284b..d8640e0d1a 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -951,12 +951,12 @@ $envvarstr my $name = $$_[0]; my $envname = $$_[1]; - unless($cmd =~ /\$LIST/) { + unless($cmd =~ /\$LISTOPT/) { warn("Unable to list tests in $name"); next; } - $cmd =~ s/\$LIST/--list/; + $cmd =~ s/\$LISTOPT/--list/; system($cmd); } |