aboutsummaryrefslogtreecommitdiff
path: root/tests/test
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
parent12fc75188cc1f0a8c4c443c04e7a022131198c36 (diff)
Move old tests to old-tests/
Diffstat (limited to 'tests/test')
-rw-r--r--tests/test/generated/build/bootstrap.build4
-rw-r--r--tests/test/generated/buildfile9
-rw-r--r--tests/test/generated/driver.cxx24
-rw-r--r--tests/test/generated/utility.cxx1
-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
9 files changed, 0 insertions, 70 deletions
diff --git a/tests/test/generated/build/bootstrap.build b/tests/test/generated/build/bootstrap.build
deleted file mode 100644
index 5428eb8..0000000
--- a/tests/test/generated/build/bootstrap.build
+++ /dev/null
@@ -1,4 +0,0 @@
-project = test-generated
-amalgamation = # Disabled.
-using config
-using test
diff --git a/tests/test/generated/buildfile b/tests/test/generated/buildfile
deleted file mode 100644
index aacca8b..0000000
--- a/tests/test/generated/buildfile
+++ /dev/null
@@ -1,9 +0,0 @@
-# Test generated input.
-#
-using cxx
-
-exe{utility}: cxx{utility}
-exe{driver}: cxx{driver}
-exe{driver}: test.input = exe{utility}
-
-./: exe{driver}
diff --git a/tests/test/generated/driver.cxx b/tests/test/generated/driver.cxx
deleted file mode 100644
index 008dbf7..0000000
--- a/tests/test/generated/driver.cxx
+++ /dev/null
@@ -1,24 +0,0 @@
-#include <iostream>
-#include <fstream>
-
-using namespace std;
-
-int
-main (int argc, char* argv[])
-{
- if (argc != 2)
- {
- cerr << "usage: " << argv[0] << " <file>" << endl;
- return 1;
- }
-
- ifstream ifs (argv[1], ifstream::in | ifstream::binary | ifstream::ate);
-
- if (!ifs.is_open ())
- cerr << "unable to open " << argv[1] << endl;
-
- if (ifs.tellg () == 0)
- cerr << argv[1] << " is empty" << endl;
-
- return 0;
-}
diff --git a/tests/test/generated/utility.cxx b/tests/test/generated/utility.cxx
deleted file mode 100644
index ca2ac4a..0000000
--- a/tests/test/generated/utility.cxx
+++ /dev/null
@@ -1 +0,0 @@
-int main () {}
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 (){}