mirror of
git://git.sv.gnu.org/nano.git
synced 2024-11-21 12:21:40 +03:00
82a411077a
* src/chars.c (addstrings): Needs to be available even on non-utf-8 sustems. * nano-regress: Added --disable-utf8 to regression check git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4933 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
30 lines
828 B
Perl
Executable File
30 lines
828 B
Perl
Executable File
#!/usr/bin/perl
|
|
use strict;
|
|
|
|
sub combinations {
|
|
return [] unless @_;
|
|
my $first = shift;
|
|
my @rest = combinations(@_);
|
|
return @rest, map { [$first, @$_] } @rest;
|
|
}
|
|
|
|
my @allargs=("--enable-debug", "--disable-wrapping", "--disable-justify", "--disable-extra", "--enable-tiny", "--disable-utf8", "--disable-multibuffer", "--disable-nanorc", "--with-slang");
|
|
my @combos = combinations(@allargs);
|
|
|
|
my $i = 0;
|
|
foreach my $name (@combos) {
|
|
my @args = @$name;
|
|
my $pct = $i / $#combos * 100;
|
|
printf "Trying with options: @args, %d%% done...\n", $pct;
|
|
my $cmd = "./configure @args && make clean all";
|
|
system("($cmd) >/dev/null 2>&1");
|
|
if ($? != 0) {
|
|
print "Build failed for args: @args\n";
|
|
print "To reproduce, run:\n $cmd\n";
|
|
exit(1);
|
|
}
|
|
$i++;
|
|
}
|
|
|
|
print "All options completed successfully!\n";
|