1 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2 From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
3 Date: Sun, 4 Sep 2022 00:16:08 +0000
4 Subject: [PATCH] Add missing cdata update in genmarshal tests
6 Otherwise the test is flaky, as it may try to include a header that's
9 test cases/frameworks/7 gnome/genmarshal/meson.build | 3 +++
10 1 file changed, 3 insertions(+)
12 diff --git a/test cases/frameworks/7 gnome/genmarshal/meson.build b/test cases/frameworks/7 gnome/genmarshal/meson.build
13 index 7686b4bbeab1..9a2cd7a0007d 100644
14 --- a/test cases/frameworks/7 gnome/genmarshal/meson.build
15 +++ b/test cases/frameworks/7 gnome/genmarshal/meson.build
16 @@ -39,6 +39,9 @@ foreach mlist : mlists
17 marshaller_c = marshallers[0]
18 marshaller_h = marshallers[1]
20 + cdata = configuration_data()
21 + cdata.set_quoted('MARSHALLER_HEADER', 'marshaller-@0@.h'.format(idx))
23 main_c = configure_file(input: 'main.c.in',
24 output: 'main-@0@.c'.format(idx),