-
Notifications
You must be signed in to change notification settings - Fork 7
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
hangs in v0.3.0 #109
Comments
@matthiaskrgr Thanks for the report, will look into this! |
I've encountered the same. I notice that it terminates fine with |
I also hit this, with the following repro: #include <stdio.h>
int main() {
char * hello = "hello, world!" + 3;
char * charstring = 'h' + "ello, world!";
printf("hello=%s, charstring=%s.\n", hello, charstring);
return 0;
} test: #!/bin/bash
set -eoux pipefail
cat <&0 > tmp.c
clang -s tmp.c -o tmp
./tmp | grep -q "=lo, world" Command:
Adding |
I've published v0.3.1 with both fixes. Thanks again y'all! |
since the update to v0.3.0, I noticed that treereduce-rust would often start reducing but then just hang in the middle and no longer make any progress.
Downgrading to 0.2.2 fixed this for me :/
treereduce_hang.rs.zip
The text was updated successfully, but these errors were encountered: