changeset 33:f6d9a8c331dc

tests: add fmt test
author David Demelier <markand@malikania.fr>
date Wed, 04 Jan 2017 13:33:25 +0100
parents 2b081c008ac6
children 2907e5903c85
files CMakeLists.txt tests/fmt/CMakeLists.txt tests/fmt/main.cpp
diffstat 3 files changed, 50 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Wed Jan 04 13:29:22 2017 +0100
+++ b/CMakeLists.txt	Wed Jan 04 13:33:25 2017 +0100
@@ -1,3 +1,4 @@
 cmake_minimum_required(VERSION 3.7)
 project(embed)
 add_subdirectory(tests/duktape)
+add_subdirectory(tests/fmt)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/fmt/CMakeLists.txt	Wed Jan 04 13:33:25 2017 +0100
@@ -0,0 +1,24 @@
+#
+# CMakeLists.txt -- test project for fmt
+#
+# 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-fmt)
+add_subdirectory(../../fmt fmt-build-dir)
+add_executable(test-fmt main.cpp)
+target_link_libraries(test-fmt fmt)
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/fmt/main.cpp	Wed Jan 04 13:33:25 2017 +0100
@@ -0,0 +1,25 @@
+/*
+ * 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 <format.h>
+
+int main()
+{
+    fmt::format("hello");
+}
+