blob: 02a6a7242cd2041cb2513da867d28f52256a1a8a (
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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2000
# Sleepycat Software. All rights reserved.
#
# $Id: test080.tcl,v 11.7 2000/10/19 23:15:22 ubell Exp $
#
# DB Test 80 {access method}
# Test of dbremove
proc test080 { method {tnum 80} args } {
source ./include.tcl
set args [convert_args $method $args]
set omethod [convert_method $method]
puts "Test0$tnum: Test of DB->remove()"
set eindex [lsearch -exact $args "-env"]
if { $eindex != -1 } {
puts "\tTest0$tnum: Skipping in the presence of an environment"
return
}
cleanup $testdir NULL
set testfile $testdir/test0$tnum.db
set db [eval {berkdb_open -create -truncate -mode 0644} $omethod \
$args {$testfile}]
error_check_good db_open [is_valid_db $db] TRUE
for {set i 1} { $i < 1000 } {incr i} {
$db put $i $i
}
error_check_good db_close [$db close] 0
error_check_good file_exists_before [file exists $testfile] 1
error_check_good db_remove [berkdb dbremove $testfile] 0
error_check_good file_exists_after [file exists $testfile] 0
puts "\tTest0$tnum succeeded."
}
|