summaryrefslogtreecommitdiffstats
path: root/test.pl
blob: 513f26df07b96fd339ed23f75330c128cb73cdba (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN{ chdir("PerlQt/t") or die "couldn't chdir to PerlQt: $!\n" }   
END{ chdir("../..") or die "couldn't chdir to ../..\n" }   

use blib;
use Test::Harness;

$Test::Harness::switches = "-w -Mblib=../blib";

@t = glob("*.t");

runtests(@t);