aboutsummaryrefslogtreecommitdiff
path: root/tests/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-12-01 12:07:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-12-01 12:07:18 +0200
commit0ed86c76239d4f2904ea4ae1a77902a9e0db2a6d (patch)
tree5e8e1d43a0140f5739b21be7cbe120ebb9360d4f /tests/dist
parent12fc75188cc1f0a8c4c443c04e7a022131198c36 (diff)
Move old tests to old-tests/
Diffstat (limited to 'tests/dist')
-rw-r--r--tests/dist/simple/README0
-rwxr-xr-xtests/dist/simple/bootstrap0
-rw-r--r--tests/dist/simple/build/bootstrap.build9
-rw-r--r--tests/dist/simple/build/export.build0
-rw-r--r--tests/dist/simple/buildfile4
-rw-r--r--tests/dist/simple/driver.cxx10
-rw-r--r--tests/dist/simple/test.out1
7 files changed, 0 insertions, 24 deletions
diff --git a/tests/dist/simple/README b/tests/dist/simple/README
deleted file mode 100644
index e69de29..0000000
--- a/tests/dist/simple/README
+++ /dev/null
diff --git a/tests/dist/simple/bootstrap b/tests/dist/simple/bootstrap
deleted file mode 100755
index e69de29..0000000
--- a/tests/dist/simple/bootstrap
+++ /dev/null
diff --git a/tests/dist/simple/build/bootstrap.build b/tests/dist/simple/build/bootstrap.build
deleted file mode 100644
index 0cd9015..0000000
--- a/tests/dist/simple/build/bootstrap.build
+++ /dev/null
@@ -1,9 +0,0 @@
-project = dist-simple
-version = 1.0.0
-amalgamation = # Disabled.
-using config
-using dist
-using test
-using install
-
-dist.package = $project-$version
diff --git a/tests/dist/simple/build/export.build b/tests/dist/simple/build/export.build
deleted file mode 100644
index e69de29..0000000
--- a/tests/dist/simple/build/export.build
+++ /dev/null
diff --git a/tests/dist/simple/buildfile b/tests/dist/simple/buildfile
deleted file mode 100644
index 159fff3..0000000
--- a/tests/dist/simple/buildfile
+++ /dev/null
@@ -1,4 +0,0 @@
-using cxx
-
-exe{driver}: cxx{driver} doc{README} file{bootstrap}
-exe{driver}: test.output = test.out
diff --git a/tests/dist/simple/driver.cxx b/tests/dist/simple/driver.cxx
deleted file mode 100644
index 293d7ff..0000000
--- a/tests/dist/simple/driver.cxx
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-int
-main ()
-{
- cerr << "test is running (stderr)" << endl;
- cout << "test is running (stdout)" << endl;
-}
diff --git a/tests/dist/simple/test.out b/tests/dist/simple/test.out
deleted file mode 100644
index 5d63fab..0000000
--- a/tests/dist/simple/test.out
+++ /dev/null
@@ -1 +0,0 @@
-test is running (stdout)