Merge pull request #834 from stellamplau/regressionDriverFix
Fix function name in tests/fuzz/regression_driverdev
commit
e6b0945c3e
|
@ -39,7 +39,7 @@ int main(int argc, char const **argv) {
|
||||||
FILE *file;
|
FILE *file;
|
||||||
|
|
||||||
/* Check that it is a regular file, and that the fileSize is valid */
|
/* Check that it is a regular file, and that the fileSize is valid */
|
||||||
FUZZ_ASSERT_MSG(UTIL_isRegFile(fileName), fileName);
|
FUZZ_ASSERT_MSG(UTIL_isRegularFile(fileName), fileName);
|
||||||
FUZZ_ASSERT_MSG(fileSize <= kMaxFileSize, fileName);
|
FUZZ_ASSERT_MSG(fileSize <= kMaxFileSize, fileName);
|
||||||
/* Ensure we have a large enough buffer allocated */
|
/* Ensure we have a large enough buffer allocated */
|
||||||
if (fileSize > bufferSize) {
|
if (fileSize > bufferSize) {
|
||||||
|
|
Loading…
Reference in New Issue