We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5a3376 commit 233f016Copy full SHA for 233f016
backtrace/test/test_windows.rb
@@ -4,7 +4,12 @@
4
5
class TestLinux < Minitest::Test
6
def test_crashpad_uploads
7
- result = Crashpad::perform_test executable: 'examples/windows/demo/Debug/demo_windows.exe'
+ if (File.file?('examples/windows/demo/Debug/demo_windows.exe'))
8
+ tests_path = 'examples/windows/demo/Debug/demo_windows.exe'
9
+ else
10
+ tests_path = 'examples/windows/demo/demo_windows.exe'
11
+ end
12
+ result = Crashpad::perform_test executable: tests_path
13
assert result
14
assert result.has_key? :upload
15
0 commit comments