aboutsummaryrefslogtreecommitdiff
path: root/tests/test/simple
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/test/simple
parent12fc75188cc1f0a8c4c443c04e7a022131198c36 (diff)
Move old tests to old-tests/
Diffstat (limited to 'tests/test/simple')
-rw-r--r--tests/test/simple/build/bootstrap.build4
-rw-r--r--tests/test/simple/buildfile12
-rw-r--r--tests/test/simple/driver.cxx14
-rw-r--r--tests/test/simple/test.out1
-rw-r--r--tests/test/simple/utility.cxx1
5 files changed, 0 insertions, 32 deletions
diff --git a/tests/test/simple/build/bootstrap.build b/tests/test/simple/build/bootstrap.build
deleted file mode 100644
index 0b7a347..0000000
--- a/tests/test/simple/build/bootstrap.build
+++ /dev/null
@@ -1,4 +0,0 @@
-project = test-simple
-amalgamation = # Disabled.
-using config
-using test
diff --git a/tests/test/simple/buildfile b/tests/test/simple/buildfile
deleted file mode 100644
index 569c12c..0000000
--- a/tests/test/simple/buildfile
+++ /dev/null
@@ -1,12 +0,0 @@
-using cxx
-
-lib{utility}: cxx{utility}
-exe{driver}: cxx{driver} #lib{utility}
-
-#exe{driver}: test.roundtrip = test.out
-
-exe{*}: test = true
-exe{*}: test.output = test.out
-
-./: lib{utility} exe{driver}
-#./: exe{driver}
diff --git a/tests/test/simple/driver.cxx b/tests/test/simple/driver.cxx
deleted file mode 100644
index 3753821..0000000
--- a/tests/test/simple/driver.cxx
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <iostream>
-#include <cassert>
-
-using namespace std;
-
-int
-main ()
-{
- cerr << "test is running (stderr)" << endl;
- //assert (false);
- cout << "test is running (stdout)" << endl;
- return 0;
- //return 1;
-}
diff --git a/tests/test/simple/test.out b/tests/test/simple/test.out
deleted file mode 100644
index 5d63fab..0000000
--- a/tests/test/simple/test.out
+++ /dev/null
@@ -1 +0,0 @@
-test is running (stdout)
diff --git a/tests/test/simple/utility.cxx b/tests/test/simple/utility.cxx
deleted file mode 100644
index c4bb446..0000000
--- a/tests/test/simple/utility.cxx
+++ /dev/null
@@ -1 +0,0 @@
-void f (){}