From 0c71feb0363b337152f11e301303f85f9621c148 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 20 Jul 2017 08:55:31 +0200 Subject: Add modularized version --- libmformat/tests/test/buildfile | 5 +++++ libmformat/tests/test/driver.cxx | 16 ++++++++++++++++ libmformat/tests/test/test.out | 3 +++ 3 files changed, 24 insertions(+) create mode 100644 libmformat/tests/test/buildfile create mode 100644 libmformat/tests/test/driver.cxx create mode 100644 libmformat/tests/test/test.out (limited to 'libmformat/tests/test') diff --git a/libmformat/tests/test/buildfile b/libmformat/tests/test/buildfile new file mode 100644 index 0000000..19d311d --- /dev/null +++ b/libmformat/tests/test/buildfile @@ -0,0 +1,5 @@ +import libs = libmformat%lib{mformat} +import libs += libstd-modules%liba{std-modules} + +exe{driver}: cxx{driver} $libs +exe{driver}: test.output = test.out diff --git a/libmformat/tests/test/driver.cxx b/libmformat/tests/test/driver.cxx new file mode 100644 index 0000000..9cc8748 --- /dev/null +++ b/libmformat/tests/test/driver.cxx @@ -0,0 +1,16 @@ +// file: tests/test/driver.cxx -*- C++ -*- + +import std.core; +import std.io; +import format; + +int +main () +{ + using namespace std; + using namespace format; + + cout << message ("Hello", "World", volume::quiet) << endl; + cout << message ("Hello", "World", volume::normal) << endl; + cout << message ("Hello", "World", volume::loud) << endl; +} diff --git a/libmformat/tests/test/test.out b/libmformat/tests/test/test.out new file mode 100644 index 0000000..7ce133b --- /dev/null +++ b/libmformat/tests/test/test.out @@ -0,0 +1,3 @@ +hello, World! +Hello, World! +HELLO, World! -- cgit v1.1