The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use Test::More tests => 1;

# check for GNU cp
my @lines = `@CP@ --help | grep -i 'gnu'`;

SKIP: {
	skip('GNU cp not found', 1) if (@lines == 0);
	
	ok(! `@PERL@ ./rsnapshot -c t/support/etc/gnu_cp.conf hourly`);
}