blob: b0d4da8ca5af79dbf3cd0c7c6a2288091c66f6c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;
require TestDriver;
my $td = new TestDriver('matrix');
$td->runtest("matrix",
{$td->COMMAND => "matrix"},
{$td->STRING => "matrix tests done\n", $td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
$td->report(1);
|