-
Notifications
You must be signed in to change notification settings - Fork 26
bench failed on Windows #37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hmm, I'm not quite sure what's happening there. While we do have CI for those environments, we don't test the benchmarks, nor do I have access to a Windows machine to confirm myself. I've never seen "bench failed" before. Is it panicking? Can you try going into the individual directories and running the benchmarks? It looks like |
@tarcieri Unfortunately, I ran them individually and all of them fail with the same error and no other output. The build is successful, but I don't know it's panicking or not since the only message I can see is the one of |
Wow, that's really confusing. Can you try running the binary under a debugger like
|
(gdb) run --bench
Starting program: C:\workspace\repos\github.com\RustCrypto\asm-hashes\target\release\deps\lib-be2dc135b8dd9613.exe --bench
[New Thread 5852.0x4c18]
[New Thread 5852.0x8688]
[New Thread 5852.0x5fe0]
running 1 test
Thread 1 received signal SIGSEGV, Segmentation fault.
0x00007ff6dcb61f1d in md5_compress ()
(gdb) info registers
rax 0x1fe64 130660
rbx 0x8b741fe6a0 598948701856
rcx 0x8b741fe6a0 598948701856
rdx 0x11034064 285425764
rsi 0x7d0 2000
rdi 0x11034064 285425764
rbp 0x7d0 0x7d0
rsp 0x8b741fe2a8 0x8b741fe2a8
r8 0xff 255
r9 0x7ffee000 2147409920
r10 0x1 1
r11 0x467e00b301 302761685761
r12 0x8b741fe3e0 598948701152
r13 0x8b741fe370 598948701040
r14 0x8b741fe3e8 598948701160
r15 0x8b741fe300 598948700928
rip 0x7ff6dcb61f1d 0x7ff6dcb61f1d <md5_compress+13>
eflags 0x10206 [ PF IF RF ]
cs 0x33 51
ss 0x2b 43
ds 0x2b 43
es 0x2b 43
fs 0x53 83
gs 0x2b 43 |
Okay, that's helpful! Can you run |
I edited the comment and added the info. |
Thanks! I'll try to look into this a bit more when I have time, but it seems like the kind of problem where I might need to set up a Windows VM to debug. Really we should probably just switch to better assembly implementations (see #5) |
env: Windows 10 x86_64, Rust nightly-gnu [rustc 1.55.0-nightly (539d7bd39 2021-06-14)]
How can I fix this?
The text was updated successfully, but these errors were encountered: