summaryrefslogtreecommitdiff
path: root/test/-ext-/bug_reporter/test_bug_reporter.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/bug_reporter/test_bug_reporter.rb')
-rw-r--r--test/-ext-/bug_reporter/test_bug_reporter.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/test/-ext-/bug_reporter/test_bug_reporter.rb b/test/-ext-/bug_reporter/test_bug_reporter.rb
index 01f8fdc933..2e5e332074 100644
--- a/test/-ext-/bug_reporter/test_bug_reporter.rb
+++ b/test/-ext-/bug_reporter/test_bug_reporter.rb
@@ -1,9 +1,17 @@
require 'test/unit'
+require 'tmpdir'
require_relative "../../ruby/envutil"
class TestBugReporter < Test::Unit::TestCase
def test_bug_reporter_add
expected_stderr = /Sample bug reporter: 12345/
- assert_in_out_err(["--disable-gems", "-r-test-/bug_reporter/bug_reporter", "-e", "register_sample_bug_reporter(12345); Process.kill :SEGV, $$"], "", [], expected_stderr, nil)
+ tmpdir = Dir.mktmpdir
+ assert_in_out_err(["--disable-gems", "-r-test-/bug_reporter/bug_reporter",
+ "-C", tmpdir],
+ "register_sample_bug_reporter(12345); Process.kill :SEGV, $$",
+ [],
+ expected_stderr, nil)
+ ensure
+ FileUtils.rm_rf(tmpdir) if tmpdir
end
end