summaryrefslogtreecommitdiff
path: root/test/gdbm/test_gdbm.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/gdbm/test_gdbm.rb')
-rw-r--r--test/gdbm/test_gdbm.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb
index e3f52ef5ed..74223b0bb4 100644
--- a/test/gdbm/test_gdbm.rb
+++ b/test/gdbm/test_gdbm.rb
@@ -58,6 +58,15 @@ if defined? GDBM
end
end
+ def have_fork?
+ begin
+ fork{}
+ true
+ rescue NotImplementedError
+ false
+ end
+ end
+
def test_s_new_has_no_block
# GDBM.new ignore the block
foo = true
@@ -108,6 +117,7 @@ if defined? GDBM
assert_equal(GDBM.open("tmptest_gdbm") { :foo }, :foo)
end
def test_s_open_lock
+ return unless have_fork? # snip this test
fork() {
assert_instance_of(GDBM, gdbm = GDBM.open("tmptest_gdbm", 0644))
sleep 2
@@ -146,6 +156,7 @@ if defined? GDBM
if not defined? GDBM::NOLOCK
return
end
+ return unless have_fork? # snip this test
fork() {
assert_instance_of(GDBM, gdbm = GDBM.open("tmptest_gdbm", 0644,