We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To Reproduce Try generate tests for next code
int abs(int a){ if (a < 0) { return -1 * a; } return a; } #define MAX_INDEX 10 extern unsigned g_arrayNumber[MAX_INDEX]; unsigned GetNum(unsigned index) { return g_arrayNumber[index]; }
Test not generated
in UTBot logs 2022-10-24 13:22:25.130 [utbot-B29P ] RunKleeTask.cpp:60 1| . . KLEE: ERROR: Unable to load symbol(g_arrayNumber) while initializing globals
2022-10-24 13:22:25.130 [utbot-B29P ] RunKleeTask.cpp:60 1| . . KLEE: ERROR: Unable to load symbol(g_arrayNumber) while initializing globals
The text was updated successfully, but these errors were encountered:
External variables support (closes #514) (#522)
54ca965
Add support for external variables
Lana243
Successfully merging a pull request may close this issue.
To Reproduce
Try generate tests for next code
Test not generated
in UTBot logs
2022-10-24 13:22:25.130 [utbot-B29P ] RunKleeTask.cpp:60 1| . . KLEE: ERROR: Unable to load symbol(g_arrayNumber) while initializing globals
The text was updated successfully, but these errors were encountered: