From 0ed86c76239d4f2904ea4ae1a77902a9e0db2a6d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 1 Dec 2016 12:07:18 +0200 Subject: Move old tests to old-tests/ --- tests/amalgam/config/build/bootstrap.build | 3 --- tests/amalgam/config/build/root.build | 1 - tests/amalgam/config/buildfile | 3 --- tests/amalgam/libtest/build/bootstrap.build | 2 -- tests/amalgam/libtest/build/export.build | 6 ------ tests/amalgam/libtest/buildfile | 3 --- tests/amalgam/libtest/test.cxx | 4 ---- tests/amalgam/test/build/bootstrap.build | 2 -- tests/amalgam/test/buildfile | 5 ----- tests/amalgam/test/driver.cxx | 4 ---- tests/amalgam/unnamed/build/bootstrap.build | 3 --- tests/amalgam/unnamed/buildfile | 3 --- tests/amalgam/unnamed/sub/build/bootstrap.build | 2 -- tests/amalgam/unnamed/sub/buildfile | 2 -- tests/amalgam/unnamed/test.out | 2 -- tests/amalgam/unnamed/test.sh | 3 --- 16 files changed, 48 deletions(-) delete mode 100644 tests/amalgam/config/build/bootstrap.build delete mode 100644 tests/amalgam/config/build/root.build delete mode 100644 tests/amalgam/config/buildfile delete mode 100644 tests/amalgam/libtest/build/bootstrap.build delete mode 100644 tests/amalgam/libtest/build/export.build delete mode 100644 tests/amalgam/libtest/buildfile delete mode 100644 tests/amalgam/libtest/test.cxx delete mode 100644 tests/amalgam/test/build/bootstrap.build delete mode 100644 tests/amalgam/test/buildfile delete mode 100644 tests/amalgam/test/driver.cxx delete mode 100644 tests/amalgam/unnamed/build/bootstrap.build delete mode 100644 tests/amalgam/unnamed/buildfile delete mode 100644 tests/amalgam/unnamed/sub/build/bootstrap.build delete mode 100644 tests/amalgam/unnamed/sub/buildfile delete mode 100644 tests/amalgam/unnamed/test.out delete mode 100755 tests/amalgam/unnamed/test.sh (limited to 'tests/amalgam') 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 - -- cgit v1.1