File: view_config.t

package info (click to toggle)
libmath-mpfr-perl 4.45-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,716 kB
  • sloc: perl: 1,508; ansic: 517; makefile: 9
file content (25 lines) | stat: -rwxr-xr-x 410 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use strict;
use warnings;

print "1..1\n";

warn "\n No tests here - just output (if any) from any configuration\n",
     " probing that was done during the 'perl Makefile.PL' step\n\n";

my $RD;

my $save = open $RD, '<', 'save_config.txt';

warn "Couldn't open save_config.txt for reading: $!\n"
  unless $save;

if($save) {
  while(<$RD>) {
    chomp;
    warn "$_\n";
  }
  close($RD);
}

print "ok 1\n";