aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest/qutil.test
blob: 34b0067c8f3a50f650a7afae6740b3710ae1f7c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;

chdir("qutil") or die "chdir testdir failed: $!\n";

require TestDriver;

my $td = new TestDriver('qutil');

$td->runtest("QUtil",
	     {$td->COMMAND => "qutil"},
	     {$td->FILE => "qutil.out",
	      $td->EXIT_STATUS => 0},
	     $td->NORMALIZE_NEWLINES | $td->RM_WS_ONLY_LINES);

$td->report(1);