Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6c8df96581b9
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f99897e9a68c
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Jul 4, 2016

  1. Copy the full SHA
    329a0c6 View commit details
  2. Copy the full SHA
    5e4f90a View commit details
  3. Copy the full SHA
    f99897e View commit details
Showing with 4 additions and 2 deletions.
  1. +3 −0 spec/truffle/tags/optional/capi/proc_tags.txt
  2. +1 −2 tool/jt.rb
3 changes: 3 additions & 0 deletions spec/truffle/tags/optional/capi/proc_tags.txt
Original file line number Diff line number Diff line change
@@ -5,3 +5,6 @@ fails:C-API when calling Proc.new from a C function returns the Proc passed to t
fails:C-API when calling Proc.new from a C function raises an ArgumentError when the C function calls a Ruby method and that method calls a C function that calls Proc.new
fails:C-API when calling Proc.new from a C function returns the most recent Proc passed when the Ruby method called the C function
fails:C-API when calling Proc.new from a C function returns the Proc passed from the original Ruby call to the C function
fails:C-API Proc function rb_proc_new calls the C function wrapped by the Proc instance when sent #call
fails:C-API Proc function rb_proc_new calls the C function wrapped by the Proc instance when sent #[]
fails:C-API when calling Proc.new from a C function returns false from block_given? in a Ruby method called by the C function
3 changes: 1 addition & 2 deletions tool/jt.rb
Original file line number Diff line number Diff line change
@@ -738,8 +738,7 @@ def test_specs(command, *args)
if args.delete('--graal')
javacmd, javacmd_options = Utilities.find_graal_javacmd_and_options
env_vars["JAVACMD"] = javacmd
options.push *javacmd_options
options << '-T-J-server'
options.push *(javacmd_options.map { |o| "-T#{o}" })
end

if args.delete('--jdebug')