summaryrefslogtreecommitdiff
path: root/testing/libfuzzer/pdf_formcalc_fuzzer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'testing/libfuzzer/pdf_formcalc_fuzzer.cc')
-rw-r--r--testing/libfuzzer/pdf_formcalc_fuzzer.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/testing/libfuzzer/pdf_formcalc_fuzzer.cc b/testing/libfuzzer/pdf_formcalc_fuzzer.cc
deleted file mode 100644
index 08e22bb247..0000000000
--- a/testing/libfuzzer/pdf_formcalc_fuzzer.cc
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2017 The PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "core/fxcrt/cfx_widetextbuf.h"
-#include "core/fxcrt/fx_string.h"
-#include "xfa/fxfa/fm2js/cxfa_fmparser.h"
-
-extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
- WideString input = WideString::FromUTF8(ByteStringView(data, size));
-
- CXFA_FMParser parser(input.AsStringView());
- parser.Parse();
-
- return 0;
-}