uxmon::load_module( "Tester" );
eval {
    unless( $args{"name"} ) {
	$args{"name"} = $args{"cmd"};
	$args{"_auto"} = 1;
    }
    my $test = new Monitor::Tester( \%args );
    $test || die "no test configured for this type of machine: $args{'name'}";
    uxmon::checker( $test );
};
if( $@ ) {
    BigSister::common::log( "err", "tester: $@" ) unless( $args{"_auto"} );
    $args{"_auto"} = 0;
    0;
}
else {
    $args{"_auto"} = 0;
    1;
}
