changeset 41:94545fbb5e88

tests: add pugixml test
author David Demelier <markand@malikania.fr>
date Wed, 04 Jan 2017 20:41:33 +0100
parents 23e8ec4e73fe
children b470a973eae5
files CMakeLists.txt tests/pugixml/CMakeLists.txt tests/pugixml/main.cpp
diffstat 3 files changed, 48 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Wed Jan 04 20:37:24 2017 +0100
+++ b/CMakeLists.txt	Wed Jan 04 20:41:33 2017 +0100
@@ -7,3 +7,4 @@
 add_subdirectory(tests/jansson)
 add_subdirectory(tests/json)
 add_subdirectory(tests/libzip)
+add_subdirectory(tests/pugixml)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/pugixml/CMakeLists.txt	Wed Jan 04 20:41:33 2017 +0100
@@ -0,0 +1,23 @@
+#
+# CMakeLists.txt -- test project for pugixml
+#
+# Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+cmake_minimum_required(VERSION 3.7)
+project(test-pugixml)
+add_subdirectory(../../pugixml pugixml-build-dir)
+add_executable(test-pugixml main.cpp)
+target_link_libraries(test-pugixml pugixml)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/pugixml/main.cpp	Wed Jan 04 20:41:33 2017 +0100
@@ -0,0 +1,24 @@
+/*
+ * main.cpp -- main file
+ *
+ * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include <pugixml.hpp>
+
+int main()
+{
+    pugi::xml_document doc;
+}