diff options
author | Robert Löhning <[email protected]> | 2021-08-05 11:22:54 +0200 |
---|---|---|
committer | Robert Löhning <[email protected]> | 2021-08-24 23:04:18 +0200 |
commit | 86bcb2b0f03842c602fef0916acdbdd6974307cd (patch) | |
tree | 43c0ad62e350e536b922f96898f1e7e3e2dc2fdf | |
parent | 92c7743f2f1975184fc114e757e5cc0f2a011b1d (diff) |
Fuzzing: Remove .pro-files of libfuzzer tests
They were replaced by CMake files and oss-fuzz was updated to use the
latter. No need to still maintain qmake based builds.
Change-Id: Id5b4648ff64efc353a033d99af0cb6eb7dcc53a8
Reviewed-by: Fabian Kosmale <[email protected]>
Reviewed-by: Lars Knoll <[email protected]>
-rw-r--r-- | tests/libfuzzer/qml/jsapi/evaluate/evaluate.pro | 11 | ||||
-rw-r--r-- | tests/libfuzzer/qml/qml/qqmlcomponent/create/create.pro | 11 |
2 files changed, 0 insertions, 22 deletions
diff --git a/tests/libfuzzer/qml/jsapi/evaluate/evaluate.pro b/tests/libfuzzer/qml/jsapi/evaluate/evaluate.pro deleted file mode 100644 index 1b042c94d3..0000000000 --- a/tests/libfuzzer/qml/jsapi/evaluate/evaluate.pro +++ /dev/null @@ -1,11 +0,0 @@ -QT -= gui -QT += qml -CONFIG += console -CONFIG -= app_bundle -SOURCES += main.cpp -FUZZ_ENGINE = $$(LIB_FUZZING_ENGINE) -isEmpty(FUZZ_ENGINE) { - QMAKE_LFLAGS += -fsanitize=fuzzer -} else { - LIBS += $$FUZZ_ENGINE -} diff --git a/tests/libfuzzer/qml/qml/qqmlcomponent/create/create.pro b/tests/libfuzzer/qml/qml/qqmlcomponent/create/create.pro deleted file mode 100644 index 1b042c94d3..0000000000 --- a/tests/libfuzzer/qml/qml/qqmlcomponent/create/create.pro +++ /dev/null @@ -1,11 +0,0 @@ -QT -= gui -QT += qml -CONFIG += console -CONFIG -= app_bundle -SOURCES += main.cpp -FUZZ_ENGINE = $$(LIB_FUZZING_ENGINE) -isEmpty(FUZZ_ENGINE) { - QMAKE_LFLAGS += -fsanitize=fuzzer -} else { - LIBS += $$FUZZ_ENGINE -} |