diff options
author | Alexander Polcyn <apolcyn@google.com> | 2016-11-30 14:34:49 -0800 |
---|---|---|
committer | Alexander Polcyn <apolcyn@google.com> | 2016-11-30 15:21:57 -0800 |
commit | d2537c1aa9deb04937b64d23dcd71456c1eb7729 (patch) | |
tree | 64138ec4250123ab2455f362a5b7310b47edadfb /src/ruby/spec | |
parent | 82870cad461cd22aef19a4919c8a31259a3b9066 (diff) |
turn on Thread.abort_on_exception in ruby unit tests by default
Diffstat (limited to 'src/ruby/spec')
-rw-r--r-- | src/ruby/spec/spec_helper.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ruby/spec/spec_helper.rb b/src/ruby/spec/spec_helper.rb index c891c1bf5e..c2be0afa72 100644 --- a/src/ruby/spec/spec_helper.rb +++ b/src/ruby/spec/spec_helper.rb @@ -67,3 +67,5 @@ RSpec.configure do |config| end RSpec::Expectations.configuration.warn_about_potential_false_positives = false + +Thread.abort_on_exception = true |