aboutsummaryrefslogtreecommitdiff
path: root/old-tests/test/simple
diff options
context:
space:
mode:
Diffstat (limited to 'old-tests/test/simple')
-rw-r--r--old-tests/test/simple/build/bootstrap.build4
-rw-r--r--old-tests/test/simple/buildfile12
-rw-r--r--old-tests/test/simple/driver.cxx14
-rw-r--r--old-tests/test/simple/test.out1
-rw-r--r--old-tests/test/simple/utility.cxx1
5 files changed, 0 insertions, 32 deletions
diff --git a/old-tests/test/simple/build/bootstrap.build b/old-tests/test/simple/build/bootstrap.build
deleted file mode 100644
index 0b7a347..0000000
--- a/old-tests/test/simple/build/bootstrap.build
+++ /dev/null
@@ -1,4 +0,0 @@
-project = test-simple
-amalgamation = # Disabled.
-using config
-using test
diff --git a/old-tests/test/simple/buildfile b/old-tests/test/simple/buildfile
deleted file mode 100644
index 569c12c..0000000
--- a/old-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/old-tests/test/simple/driver.cxx b/old-tests/test/simple/driver.cxx
deleted file mode 100644
index 3753821..0000000
--- a/old-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/old-tests/test/simple/test.out b/old-tests/test/simple/test.out
deleted file mode 100644
index 5d63fab..0000000
--- a/old-tests/test/simple/test.out
+++ /dev/null
@@ -1 +0,0 @@
-test is running (stdout)
diff --git a/old-tests/test/simple/utility.cxx b/old-tests/test/simple/utility.cxx
deleted file mode 100644
index c4bb446..0000000
--- a/old-tests/test/simple/utility.cxx
+++ /dev/null
@@ -1 +0,0 @@
-void f (){}