#!/usr/bin/perl
# note this is called through "perl -w"
use strict;

my $self = $0;
$self =~ s!/t!!;

exec('make check --no-print-directory -s -C ' . $self);

