1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

selftest: Rename $LIST to $LISTOPT for consistency with testrepository.

This commit is contained in:
Jelmer Vernooij 2010-12-09 15:35:23 +01:00
parent 75ef8f1dd2
commit a957d8c80f

View File

@ -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);
}