File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 5454 # We demangle the symbols
5555 expect ( page ) . to have_content 'playground::main:'
5656
57- expect ( page ) . to have_content 'movq %rdi , %rax '
57+ expect ( page ) . to have_content 'addq $40 , %rsp '
5858 end
5959 end
6060 end
7171 # We demangle the symbols
7272 expect ( page ) . to have_content 'playground::main:'
7373
74- expect ( page ) . to have_content 'mov rax, rdi '
74+ expect ( page ) . to have_content 'add rsp, 40 '
7575 end
7676 end
7777 end
Original file line number Diff line number Diff line change 1+ require 'tmpdir'
2+
13RSpec . configure do |config |
24 config . expect_with :rspec do |expectations |
35 expectations . include_chain_clauses_in_custom_matcher_descriptions = true
1719 config . default_formatter = 'doc'
1820 end
1921
22+ config . example_status_persistence_file_path = "#{ Dir . tmpdir ( ) } /playground-test-failures"
23+
2024 config . order = :random
2125
2226 Kernel . srand config . seed
You can’t perform that action at this time.
0 commit comments