diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-02 15:28:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-02-02 15:28:22 +0200 |
commit | 44ff984ac51ed1b27e6e7bc828cf9fe41205b4de (patch) | |
tree | d4724c0acab9fa5bae2955559e94565d7b5f78aa | |
parent | 257b755664c5b5030cb0bbd354a1bc5c2c9fde9f (diff) |
Adjust tests to new test rule semantics
-rw-r--r-- | libhello/tests/test/buildfile | 2 | ||||
-rw-r--r-- | libmhello/tests/test/buildfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libhello/tests/test/buildfile b/libhello/tests/test/buildfile index a46969d..2ff528a 100644 --- a/libhello/tests/test/buildfile +++ b/libhello/tests/test/buildfile @@ -1,4 +1,4 @@ import libs = libhello%lib{hello} exe{driver}: cxx{driver} $libs -exe{driver}: test.output = test.out +exe{driver}: file{test.out}: test.stdout = true diff --git a/libmhello/tests/test/buildfile b/libmhello/tests/test/buildfile index 7253fc6..54647c9 100644 --- a/libmhello/tests/test/buildfile +++ b/libmhello/tests/test/buildfile @@ -2,4 +2,4 @@ import libs = libmhello%lib{mhello} import libs += libstd-modules%liba{std-modules} exe{driver}: cxx{driver} $libs -exe{driver}: test.output = test.out +exe{driver}: file{test.out}: test.stdout = true |