Made the report function concretize using the minimizer, so that eventually we'll be able to compare inputs generated across tools

This commit is contained in:
Peter Goodman
2017-11-09 10:35:48 -05:00
parent 02fce4cdf9
commit 5f36822021
3 changed files with 14 additions and 2 deletions
+7
View File
@@ -107,6 +107,13 @@ char *DeepState_CStr(size_t len) {
return str;
}
/* Symbolize a C string */
void DeepState_SymbolizeCStr(char *begin) {
if (begin && begin[0]) {
DeepState_SymbolizeData(begin, begin + strlen(begin));
}
}
/* Concretize a C string */
const char *DeepState_ConcretizeCStr(const char *begin) {
return begin;