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

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

require TestDriver;

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

$td->runtest("bits",
	     {$td->COMMAND => "bits"},
	     {$td->FILE => "bits.out",
	      $td->EXIT_STATUS => 0});

$td->report(1);