aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qtest/bits.test
blob: 0fa3df6ddc5a12229044fffe2e90bda2918efd27 (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("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->NORMALIZE_NEWLINES);

$td->report(1);