Shutdown: help the style leak printer out a bit.
[gnumeric.git] / test / t7126-solver-Gauss3.pl
blobacc87a4e3d3ef00ad8dfec2b56670aee7bbdb6d8
1 #!/usr/bin/perl -w
2 # -----------------------------------------------------------------------------
4 use strict;
5 use lib ($0 =~ m|^(.*/)| ? $1 : ".");
6 use GnumericTest;
8 my $file = "Gauss3.gnumeric";
9 my $rle = 5.5;
10 &message ("Check non-linear solver on $file problem.");
11 &test_sheet_calc ("$samples/solver/$file", ['--solve'], "K39",
12 sub {
13 chomp;
14 print STDERR "--> $_\n";
15 return (/^[-+]?(\d|\.\d)/ &&
16 $_ > $rle);
17 });