-
Notifications
You must be signed in to change notification settings - Fork 28
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
test failed #22
Comments
I've configured the environment of SYMSAN similarly to your Figure 1. While I managed to pass 3 test cases, and failures in 21. I think this is not right, perhaps some configuration are not set properly. Have you been able to find a solution for this issue? |
I can reproduce the issue. Looks like all cpp tests pass but all c test failed. Let me figure out why. |
Looks like compiling C programs needs If you are testing with docker with the single line fix in this PR #23 , you should be able to see 25 out 26 tests pass. See my results as below:
If you are testing on Ubuntu, you can probably fix the issue by
I will check why |
After installinglibunwind-dev, all 24 test cases in one of the virtual machines passed, while all of them still failed in the other virtual machine. It seems that there might be some issues with my compilation configuration. |
you can check the failure details by using |
Reproduce the same issue on ubuntu 20.04.
Run the following commands: ls /usr/lib/x86_64-linux-gnu/libunwind.* From the output, Workaround: cd /usr/lib/x86_64-linux-gnu/
ln -s libunwind.so.8 libunwind.so.1 This will create a symbol link for |
I have configured the symsan environment in two virtual machines. When I conducted the final test, all test cases in one of the virtual machines failed, while only three of them passed in the other. I don't know if this is a normal phenomenon.


If this is abnormal, where should I check?
The text was updated successfully, but these errors were encountered: