summaryrefslogtreecommitdiff
path: root/libformat/tests/test
diff options
context:
space:
mode:
Diffstat (limited to 'libformat/tests/test')
-rw-r--r--libformat/tests/test/buildfile4
-rw-r--r--libformat/tests/test/driver.cxx16
-rw-r--r--libformat/tests/test/test.out3
3 files changed, 0 insertions, 23 deletions
diff --git a/libformat/tests/test/buildfile b/libformat/tests/test/buildfile
deleted file mode 100644
index e99af23..0000000
--- a/libformat/tests/test/buildfile
+++ /dev/null
@@ -1,4 +0,0 @@
-import libs = libformat%lib{format}
-
-exe{driver}: cxx{driver} $libs
-exe{driver}: file{test.out}: test.stdout = true
diff --git a/libformat/tests/test/driver.cxx b/libformat/tests/test/driver.cxx
deleted file mode 100644
index 1cf2959..0000000
--- a/libformat/tests/test/driver.cxx
+++ /dev/null
@@ -1,16 +0,0 @@
-// file: tests/test/driver.cxx -*- C++ -*-
-
-#include <iostream>
-
-#include <libformat/format.hxx>
-
-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/libformat/tests/test/test.out b/libformat/tests/test/test.out
deleted file mode 100644
index 7ce133b..0000000
--- a/libformat/tests/test/test.out
+++ /dev/null
@@ -1,3 +0,0 @@
-hello, World!
-Hello, World!
-HELLO, World!