aboutsummaryrefslogtreecommitdiff
path: root/db_test.go
diff options
context:
space:
mode:
authorBen Johnson <benbjohnson@yahoo.com>2015-10-28 12:21:53 -0600
committerBen Johnson <benbjohnson@yahoo.com>2015-10-28 12:21:53 -0600
commit119858097e94ac1089c404206de6f2eef3b22a9b (patch)
tree27bf2a2bbea9c8204207fb23085f0c1930c416cd /db_test.go
parentMerge pull request #447 from benbjohnson/max-value-size (diff)
parentwindows: implement file locking (diff)
downloaddedo-119858097e94ac1089c404206de6f2eef3b22a9b.tar.gz
dedo-119858097e94ac1089c404206de6f2eef3b22a9b.tar.xz
Merge pull request #419 from raggi/windows-flock
windows: implement file locking
Diffstat (limited to 'db_test.go')
-rw-r--r--db_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/db_test.go b/db_test.go
index 1f37f9b..5e325ef 100644
--- a/db_test.go
+++ b/db_test.go
@@ -39,9 +39,6 @@ func TestOpen(t *testing.T) {
// Ensure that opening an already open database file will timeout.
func TestOpen_Timeout(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("timeout not supported on windows")
- }
if runtime.GOOS == "solaris" {
t.Skip("solaris fcntl locks don't support intra-process locking")
}
@@ -66,9 +63,6 @@ func TestOpen_Timeout(t *testing.T) {
// Ensure that opening an already open database file will wait until its closed.
func TestOpen_Wait(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("timeout not supported on windows")
- }
if runtime.GOOS == "solaris" {
t.Skip("solaris fcntl locks don't support intra-process locking")
}