diff options
author | Alex Merry <alex.merry@kde.org> | 2015-05-11 13:56:28 +0100 |
---|---|---|
committer | Alex Merry <alex.merry@kde.org> | 2015-05-13 19:22:25 +0100 |
commit | 0c224194ea7f12eaed32af746fc9138537f1919c (patch) | |
tree | acd667f840cc3db01152120505b351d84b496098 /tests/ECMAddTests/multi_tests/test11.cpp | |
parent | 1b636b43d2bf4dca0332a2e2b36affa67fbe1e0b (diff) | |
download | extra-cmake-modules-0c224194ea7f12eaed32af746fc9138537f1919c.tar.gz extra-cmake-modules-0c224194ea7f12eaed32af746fc9138537f1919c.tar.bz2 |
Add PROPERTIES argument to ecm_add_test and ecm_add_tests.
This is particularly useful with ecm_add_tests, where you may want to
force a suite of tests to run in serial, or alter the timeout for
multiple tests at once.
BUG: 345797
REVIEW: 123722
Diffstat (limited to 'tests/ECMAddTests/multi_tests/test11.cpp')
-rw-r--r-- | tests/ECMAddTests/multi_tests/test11.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/ECMAddTests/multi_tests/test11.cpp b/tests/ECMAddTests/multi_tests/test11.cpp new file mode 100644 index 00000000..82641bbc --- /dev/null +++ b/tests/ECMAddTests/multi_tests/test11.cpp @@ -0,0 +1,8 @@ +#include "testhelper.h" + +int main() +{ + make_test_file("test11.txt"); + return 0; +} + |