Andrew Geissler | c926e17 | 2021-05-07 16:11:35 -0500 | [diff] [blame] | 1 | From 122e5ac3dd16a461b6ae595605490c8f5d1c3a9d Mon Sep 17 00:00:00 2001 |
| 2 | From: Jose Quaresma <quaresma.jose@gmail.com> |
| 3 | Date: Sun, 11 Apr 2021 19:48:13 +0100 |
| 4 | Subject: [PATCH 1/4] tests: respect the idententaion used in meson |
| 5 | |
| 6 | Upstream-Status: Submitted [https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/789] |
| 7 | |
| 8 | Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> |
| 9 | --- |
| 10 | tests/check/meson.build | 10 +++++----- |
| 11 | 1 file changed, 5 insertions(+), 5 deletions(-) |
| 12 | |
| 13 | diff --git a/tests/check/meson.build b/tests/check/meson.build |
| 14 | index a617cf159..b2636714b 100644 |
| 15 | --- a/tests/check/meson.build |
| 16 | +++ b/tests/check/meson.build |
| 17 | @@ -146,11 +146,11 @@ foreach t : core_tests |
| 18 | |
| 19 | if not skip_test |
| 20 | exe = executable(test_name, fname, |
| 21 | - c_args : gst_c_args + test_defines, |
| 22 | - cpp_args : gst_c_args + test_defines, |
| 23 | - include_directories : [configinc], |
| 24 | - link_with : link_with_libs, |
| 25 | - dependencies : test_deps + glib_deps + gst_deps, |
| 26 | + c_args : gst_c_args + test_defines, |
| 27 | + cpp_args : gst_c_args + test_defines, |
| 28 | + include_directories : [configinc], |
| 29 | + link_with : link_with_libs, |
| 30 | + dependencies : test_deps + glib_deps + gst_deps, |
| 31 | ) |
| 32 | |
| 33 | env = environment() |
| 34 | -- |
| 35 | 2.31.1 |
| 36 | |