aboutsummaryrefslogtreecommitdiffstats
path: root/test/-ext-
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-24 05:22:23 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-24 05:22:23 +0000
commite2b08026b75fa018630e6eef0f7c2a4990d5d0e0 (patch)
tree00c3e652be8d2f88d205cfc0c5d312f76ea9cac3 /test/-ext-
parent1b9322fc9232114d2065b9c6199e1a4c38764f4f (diff)
downloadruby-e2b08026b75fa018630e6eef0f7c2a4990d5d0e0.tar.gz
load.c: fix rb_load_protect condition
* load.c (rb_load_protect): fix the condition to load the found file. fixup of r59155. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/-ext-')
-rw-r--r--test/-ext-/load/script.rb2
-rw-r--r--test/-ext-/load/test_protect.rb14
2 files changed, 16 insertions, 0 deletions
diff --git a/test/-ext-/load/script.rb b/test/-ext-/load/script.rb
new file mode 100644
index 0000000000..4bc2480587
--- /dev/null
+++ b/test/-ext-/load/script.rb
@@ -0,0 +1,2 @@
+# frozen_string_literal: true
+raise "foo"
diff --git a/test/-ext-/load/test_protect.rb b/test/-ext-/load/test_protect.rb
new file mode 100644
index 0000000000..83b179b34c
--- /dev/null
+++ b/test/-ext-/load/test_protect.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+require 'test/unit'
+require '-test-/load/protect'
+
+class Test_Load_Protect < Test::Unit::TestCase
+ def test_load_protect
+ assert_raise(LoadError) {
+ Bug.load_protect(__dir__+"/nonexistent.rb")
+ }
+ assert_raise_with_message(RuntimeError, "foo") {
+ Bug.load_protect(__dir__+"/script.rb")
+ }
+ end
+end