2015-01-30 00:58:29 +08:00
|
|
|
//===- FuzzerMain.cpp - main() function and flags -------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// main() and flags.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-02-20 02:45:37 +08:00
|
|
|
#include "FuzzerInterface.h"
|
2015-01-30 00:58:29 +08:00
|
|
|
#include "FuzzerInternal.h"
|
|
|
|
|
2015-02-20 02:45:37 +08:00
|
|
|
// This function should be defined by the user.
|
2015-10-03 07:34:06 +08:00
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
|
2015-01-31 09:14:40 +08:00
|
|
|
|
2015-01-30 00:58:29 +08:00
|
|
|
int main(int argc, char **argv) {
|
2015-05-07 06:19:00 +08:00
|
|
|
return fuzzer::FuzzerDriver(argc, argv, LLVMFuzzerTestOneInput);
|
2015-01-30 00:58:29 +08:00
|
|
|
}
|