1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-01 00:25:06 +02:00
Files
pgbackrest/test/test.pl

26 lines
1.1 KiB
Perl
Raw Normal View History

2013-11-17 13:58:21 -05:00
#!/usr/bin/perl
2014-04-02 17:25:37 -04:00
####################################################################################################################################
# test.pl - Unit Tests for Simple Postgres Backup and Restore
####################################################################################################################################
####################################################################################################################################
# Perl includes
####################################################################################################################################
use strict;
use warnings;
use english;
use File::Basename;
use Getopt::Long;
use Carp;
use lib dirname($0) . "/lib";
use BackRestTest::FileTest;
2014-04-02 17:25:37 -04:00
####################################################################################################################################
# Perl includes
####################################################################################################################################
BackRestTestFile();
2014-06-01 17:23:33 -04:00
print "\nTEST COMPLETED SUCCESSFULLY (DESPITE ANY ERROR MESSAGES YOU SAW)\n";