blob: 89a1c21a04442fd119959d7d351fc0cde78350d0 (
plain) (
blame)
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
26
|
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;
chdir("input_source") or die "chdir testdir failed: $!\n";
require TestDriver;
my $td = new TestDriver('InputSource');
cleanup();
$td->runtest("input source tests",
{$td->COMMAND => "input_source"},
{$td->FILE => "input_source.out",
$td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
cleanup();
$td->report(1);
sub cleanup
{
}
|