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 | bdb6d839b1d6cbf25807c698313aa210d4ada2bc (patch) | |
tree | 76514dfd7440c043661ff3a68697809df5cbdd5f | |
parent | 8cf6e5a3d0201cd15246a386332835570d072d35 (diff) |
Adjust tests to new test rule semantics
-rw-r--r-- | libmprint/tests/test/buildfile | 2 | ||||
-rw-r--r-- | libprint/tests/test/buildfile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libmprint/tests/test/buildfile b/libmprint/tests/test/buildfile index 0fe3fea..4fbea38 100644 --- a/libmprint/tests/test/buildfile +++ b/libmprint/tests/test/buildfile @@ -2,4 +2,4 @@ import libs = libmprint%lib{mprint} 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 diff --git a/libprint/tests/test/buildfile b/libprint/tests/test/buildfile index c5bfff4..ab17ea9 100644 --- a/libprint/tests/test/buildfile +++ b/libprint/tests/test/buildfile @@ -1,4 +1,4 @@ import libs = libprint%lib{print} exe{driver}: cxx{driver} $libs -exe{driver}: test.output = test.out +exe{driver}: file{test.out}: test.stdout = true |