Introspection: add col/row manipulations
[gnumeric.git] / test / t7121-solver-Hahn1.pl
blobf114532e654ad24a76ffc2bd7c7b12d5baa3a491
1 #!/usr/bin/perl -w
2 # -----------------------------------------------------------------------------
4 use strict;
5 use lib ($0 =~ m|^(.*/)| ? $1 : ".");
6 use GnumericTest;
8 my $file = "Hahn1.gnumeric";
9 my $rle = 6;
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 my $ok = (/^[-+]?(\d|\.\d)/ && $_ > $rle);
16 return $ok;
17 });