summaryrefslogtreecommitdiffstats
path: root/tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@qt.io>2020-01-30 11:05:01 +0100
committerRobert Loehning <robert.loehning@qt.io>2020-02-13 22:24:03 +0100
commita2206b74aedb14f8938ccad2c26d0c22cfe91963 (patch)
tree57c9ac738c8706adecb7cf748ee4734547fde3b0 /tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp
parent92eea633491ce8138c5caceb904ad26c1eb91044 (diff)
Fuzzing: Follow style of having lower case names
Change-Id: If33d9cf67fa13aa6a813b1f545c19dabe2fbb59d Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp')
-rw-r--r--tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp b/tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp
deleted file mode 100644
index 66ddf738f2..0000000000
--- a/tests/libfuzzer/gui/text/qtextdocument/setMarkdown/main.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2019 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include <QTextDocument>
-
-extern "C" int LLVMFuzzerTestOneInput(const char *Data, size_t Size) {
- QTextDocument().setMarkdown(QByteArray::fromRawData(Data, Size));
- return 0;
-}