diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 13:18:15 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 13:18:15 +0300 |
commit | d4284aae89abc0e6c09cd101f40cbf53e26d8ac4 (patch) | |
tree | 141760b015637192f8072b865f0fb4369da4449e /test cases/common/7 mixed | |
parent | 50304bb20776dec84970522f282f15c8bf350ab1 (diff) | |
download | meson-d4284aae89abc0e6c09cd101f40cbf53e26d8ac4.zip meson-d4284aae89abc0e6c09cd101f40cbf53e26d8ac4.tar.gz meson-d4284aae89abc0e6c09cd101f40cbf53e26d8ac4.tar.bz2 |
Renamed add_test to test.
Diffstat (limited to 'test cases/common/7 mixed')
-rw-r--r-- | test cases/common/7 mixed/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/7 mixed/meson.build b/test cases/common/7 mixed/meson.build index 3e32508..7731551 100644 --- a/test cases/common/7 mixed/meson.build +++ b/test cases/common/7 mixed/meson.build @@ -1,3 +1,3 @@ project('mixed C and C++', 'c', 'cxx') exe = executable('prog', 'main.cc', 'func.c') -add_test('mixtest', exe) +test('mixtest', exe) |