Introspection: add col/row manipulations
[gnumeric.git] / test / t7120-solver-Kirby2.pl
blob9e6c8b6b399af45493dc0c80602142cc53ce384c
1 #!/usr/bin/perl -w
2 # -----------------------------------------------------------------------------
4 use strict;
5 use lib ($0 =~ m|^(.*/)| ? $1 : ".");
6 use GnumericTest;
8 my $file = "Kirby2.gnumeric";
9 my $rle = 3;
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 });