diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-10-07 22:02:46 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-11-01 23:58:37 +0000 |
commit | a048df8398188855db323ec95a0f50af84f23784 (patch) | |
tree | 71ff953dcbf96bd5e80703bcd6d324bfd070b3ce | |
parent | 594d3357b6a4d883b6b87295bf4b9b6400777d18 (diff) | |
download | flashrom-1.3.x_infdev.tar.gz flashrom-1.3.x_infdev.tar.bz2 flashrom-1.3.x_infdev.zip |
tests/meson.build: Rename list of source files to `test_srcs`1.3.x_infdev
Rename the list of source files to `test_srcs` so that there is less
confusion with the variable `srcs` from the top-level meson.build file
containing the flashrom source files.
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: Ica0fc3923070bff63323204bd58edb5276dc9493
Reviewed-on: https://review.coreboot.org/c/flashrom/+/68228
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
-rw-r--r-- | tests/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/meson.build b/tests/meson.build index c62cc1b38..b0375a122 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -11,7 +11,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -srcs = files( +test_srcs = files( 'io_mock.c', 'tests.c', 'libusb_wraps.c', @@ -34,7 +34,7 @@ srcs = files( ) if not programmer.get('dummy').get('active') - srcs += programmer.get('dummy').get('srcs') + test_srcs += programmer.get('dummy').get('srcs') endif mocks = [ @@ -110,7 +110,7 @@ mocks = [ ] flashrom_tests = executable('flashrom_unit_tests', - srcs, + test_srcs, c_args : [ cargs, '-ffunction-sections', |