blob: 1f7ad1504e6c860835ba5ffa2c0c269742ce9289 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#!./perl -w
# ID: %I%, %G%
use strict ;
BEGIN {
unless(grep /blib/, @INC) {
chdir 't' if -d 't';
@INC = '../lib' if -d '../lib';
}
}
use BerkeleyDB;
use t::util ;
BEGIN
{
if ($BerkeleyDB::db_version < 3.2) {
print "1..0 # Skipping test, this needs Berkeley DB 3.2.x or better\n" ;
exit 0 ;
}
}
print "1..1\n";
my $Dfile = "dbhash.tmp";
my $Dfile2 = "dbhash2.tmp";
my $Dfile3 = "dbhash3.tmp";
unlink $Dfile;
umask(0) ;
{
# set_q_extentsize
ok 1, 1 ;
}
|