aboutsummaryrefslogtreecommitdiff
path: root/tests/amalgam
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/amalgam
parent12fc75188cc1f0a8c4c443c04e7a022131198c36 (diff)
Move old tests to old-tests/
Diffstat (limited to 'tests/amalgam')
-rw-r--r--tests/amalgam/config/build/bootstrap.build3
-rw-r--r--tests/amalgam/config/build/root.build1
-rw-r--r--tests/amalgam/config/buildfile3
-rw-r--r--tests/amalgam/libtest/build/bootstrap.build2
-rw-r--r--tests/amalgam/libtest/build/export.build6
-rw-r--r--tests/amalgam/libtest/buildfile3
-rw-r--r--tests/amalgam/libtest/test.cxx4
-rw-r--r--tests/amalgam/test/build/bootstrap.build2
-rw-r--r--tests/amalgam/test/buildfile5
-rw-r--r--tests/amalgam/test/driver.cxx4
-rw-r--r--tests/amalgam/unnamed/build/bootstrap.build3
-rw-r--r--tests/amalgam/unnamed/buildfile3
-rw-r--r--tests/amalgam/unnamed/sub/build/bootstrap.build2
-rw-r--r--tests/amalgam/unnamed/sub/buildfile2
-rw-r--r--tests/amalgam/unnamed/test.out2
-rwxr-xr-xtests/amalgam/unnamed/test.sh3
16 files changed, 0 insertions, 48 deletions
diff --git a/tests/amalgam/config/build/bootstrap.build b/tests/amalgam/config/build/bootstrap.build
deleted file mode 100644
index 52d415a..0000000
--- a/tests/amalgam/config/build/bootstrap.build
+++ /dev/null
@@ -1,3 +0,0 @@
-project = amalgam-config
-amalgamation = # Shall not be amalgamated.
-using config
diff --git a/tests/amalgam/config/build/root.build b/tests/amalgam/config/build/root.build
deleted file mode 100644
index 7d1767b..0000000
--- a/tests/amalgam/config/build/root.build
+++ /dev/null
@@ -1 +0,0 @@
-using cxx
diff --git a/tests/amalgam/config/buildfile b/tests/amalgam/config/buildfile
deleted file mode 100644
index 32285a9..0000000
--- a/tests/amalgam/config/buildfile
+++ /dev/null
@@ -1,3 +0,0 @@
-d = #t/ l/
-./: $d
-include $d
diff --git a/tests/amalgam/libtest/build/bootstrap.build b/tests/amalgam/libtest/build/bootstrap.build
deleted file mode 100644
index 025e510..0000000
--- a/tests/amalgam/libtest/build/bootstrap.build
+++ /dev/null
@@ -1,2 +0,0 @@
-project = amalgam-libtest
-using config
diff --git a/tests/amalgam/libtest/build/export.build b/tests/amalgam/libtest/build/export.build
deleted file mode 100644
index b95e409..0000000
--- a/tests/amalgam/libtest/build/export.build
+++ /dev/null
@@ -1,6 +0,0 @@
-$out_root/:
-{
- include buildfile
-}
-
-export $out_root/lib{test}
diff --git a/tests/amalgam/libtest/buildfile b/tests/amalgam/libtest/buildfile
deleted file mode 100644
index 70a1467..0000000
--- a/tests/amalgam/libtest/buildfile
+++ /dev/null
@@ -1,3 +0,0 @@
-using cxx
-
-lib{test}: cxx{test}
diff --git a/tests/amalgam/libtest/test.cxx b/tests/amalgam/libtest/test.cxx
deleted file mode 100644
index 34a033a..0000000
--- a/tests/amalgam/libtest/test.cxx
+++ /dev/null
@@ -1,4 +0,0 @@
-void
-f ()
-{
-}
diff --git a/tests/amalgam/test/build/bootstrap.build b/tests/amalgam/test/build/bootstrap.build
deleted file mode 100644
index a53e738..0000000
--- a/tests/amalgam/test/build/bootstrap.build
+++ /dev/null
@@ -1,2 +0,0 @@
-project = amalgam-test
-using config
diff --git a/tests/amalgam/test/buildfile b/tests/amalgam/test/buildfile
deleted file mode 100644
index e8af169..0000000
--- a/tests/amalgam/test/buildfile
+++ /dev/null
@@ -1,5 +0,0 @@
-using cxx
-
-import libs = amalgam-libtest%lib{test}
-
-exe{driver}: cxx{driver} $libs
diff --git a/tests/amalgam/test/driver.cxx b/tests/amalgam/test/driver.cxx
deleted file mode 100644
index 70b4146..0000000
--- a/tests/amalgam/test/driver.cxx
+++ /dev/null
@@ -1,4 +0,0 @@
-int
-main ()
-{
-}
diff --git a/tests/amalgam/unnamed/build/bootstrap.build b/tests/amalgam/unnamed/build/bootstrap.build
deleted file mode 100644
index 30065f4..0000000
--- a/tests/amalgam/unnamed/build/bootstrap.build
+++ /dev/null
@@ -1,3 +0,0 @@
-project = amalgam-unnamed
-amalgamation = # Disabled.
-using config
diff --git a/tests/amalgam/unnamed/buildfile b/tests/amalgam/unnamed/buildfile
deleted file mode 100644
index ead9514..0000000
--- a/tests/amalgam/unnamed/buildfile
+++ /dev/null
@@ -1,3 +0,0 @@
-./: sub/
-include sub/
-print $subprojects
diff --git a/tests/amalgam/unnamed/sub/build/bootstrap.build b/tests/amalgam/unnamed/sub/build/bootstrap.build
deleted file mode 100644
index ce3735a..0000000
--- a/tests/amalgam/unnamed/sub/build/bootstrap.build
+++ /dev/null
@@ -1,2 +0,0 @@
-project =
-using config
diff --git a/tests/amalgam/unnamed/sub/buildfile b/tests/amalgam/unnamed/sub/buildfile
deleted file mode 100644
index 8717375..0000000
--- a/tests/amalgam/unnamed/sub/buildfile
+++ /dev/null
@@ -1,2 +0,0 @@
-./:
-print "'$project'"
diff --git a/tests/amalgam/unnamed/test.out b/tests/amalgam/unnamed/test.out
deleted file mode 100644
index 023b71f..0000000
--- a/tests/amalgam/unnamed/test.out
+++ /dev/null
@@ -1,2 +0,0 @@
-''
-sub/@sub/
diff --git a/tests/amalgam/unnamed/test.sh b/tests/amalgam/unnamed/test.sh
deleted file mode 100755
index c745b76..0000000
--- a/tests/amalgam/unnamed/test.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-
-b -q | diff --strip-trailing-cr -u test.out -