File: 01_compile.t

package info (click to toggle)
libdbd-sqlite3-perl 1.76-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,004 kB
  • sloc: ansic: 167,715; perl: 1,788; pascal: 277; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Test that everything compiles, so the rest of the test suite can
# load modules without having to check if it worked.

use strict;
use warnings;
use Test::More;

use lib "t/lib";

use_ok('DBI');
use_ok('DBD::SQLite');
use_ok('SQLiteTest');

diag("\$DBI::VERSION=$DBI::VERSION");

if (my @compile_options = DBD::SQLite::compile_options()) {
    diag("Compile Options:");
    diag(join "", map { "  $_\n" } @compile_options);
}

done_testing;