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 54
54
# We demangle the symbols
55
55
expect ( page ) . to have_content 'playground::main:'
56
56
57
- expect ( page ) . to have_content 'movq %rdi , %rax '
57
+ expect ( page ) . to have_content 'addq $40 , %rsp '
58
58
end
59
59
end
60
60
end
71
71
# We demangle the symbols
72
72
expect ( page ) . to have_content 'playground::main:'
73
73
74
- expect ( page ) . to have_content 'mov rax, rdi '
74
+ expect ( page ) . to have_content 'add rsp, 40 '
75
75
end
76
76
end
77
77
end
Original file line number Diff line number Diff line change
1
+ require 'tmpdir'
2
+
1
3
RSpec . configure do |config |
2
4
config . expect_with :rspec do |expectations |
3
5
expectations . include_chain_clauses_in_custom_matcher_descriptions = true
17
19
config . default_formatter = 'doc'
18
20
end
19
21
22
+ config . example_status_persistence_file_path = "#{ Dir . tmpdir ( ) } /playground-test-failures"
23
+
20
24
config . order = :random
21
25
22
26
Kernel . srand config . seed
You can’t perform that action at this time.
0 commit comments