summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/pugixml/tests/fuzz_parse.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/pugixml/tests/fuzz_parse.cpp')
-rw-r--r--3rdparty/pugixml/tests/fuzz_parse.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/3rdparty/pugixml/tests/fuzz_parse.cpp b/3rdparty/pugixml/tests/fuzz_parse.cpp
deleted file mode 100644
index e7581967a1d..00000000000
--- a/3rdparty/pugixml/tests/fuzz_parse.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "../src/pugixml.hpp"
-#include "allocator.hpp"
-
-int main(int argc, const char** argv)
-{
- pugi::set_memory_management_functions(memory_allocate, memory_deallocate);
-
- pugi::xml_document doc;
-
- for (int i = 1; i < argc; ++i)
- {
- doc.load_file(argv[i]);
- doc.load_file(argv[i], pugi::parse_minimal);
- doc.load_file(argv[i], pugi::parse_full);
- }
-}