1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00
DBD-SQLite-SQLcipher/t/01_compile.t
Kenichi Ishigaki 937f856f37 compile options
2010-05-20 03:04:03 +00:00

23 lines
458 B
Perl

#!/usr/bin/perl
# Test that everything compiles, so the rest of the test suite can
# load modules without having to check if it worked.
use strict;
BEGIN {
$| = 1;
$^W = 1;
}
use Test::More tests => 3;
use_ok('DBI');
use_ok('DBD::SQLite');
use_ok('t::lib::Test');
diag("\$DBI::VERSION=$DBI::VERSION");
if (my $compile_options = DBD::SQLite::compile_options()) {
diag("Compile Options:");
diag(join "", map { " $_\n" } @$compile_options);
}