Commit 121e357a authored by Kees Cook's avatar Kees Cook Committed by Shuah Khan

selftests/harness: Update named initializer syntax

The harness was still using old-style GNU named initializer syntax.
Fix this so Clang will stop warning:

seccomp_bpf.c:2924:1: warning: use of GNU old-style field designator extension
      [-Wgnu-designator]
./../kselftest_harness.h:147:25: note: expanded from macro 'TEST'
                        ^
./../kselftest_harness.h:172:5: note: expanded from macro '__TEST_IMPL'
                  fn: &test_name, termsig: _signal }; \
                  ^
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarNick Desaulniers <ndesaulniers@google.com>
Signed-off-by: default avatarShuah Khan <shuah@kernel.org>
parent 30d53a58
...@@ -168,8 +168,8 @@ ...@@ -168,8 +168,8 @@
#define __TEST_IMPL(test_name, _signal) \ #define __TEST_IMPL(test_name, _signal) \
static void test_name(struct __test_metadata *_metadata); \ static void test_name(struct __test_metadata *_metadata); \
static struct __test_metadata _##test_name##_object = \ static struct __test_metadata _##test_name##_object = \
{ name: "global." #test_name, \ { .name = "global." #test_name, \
fn: &test_name, termsig: _signal }; \ .fn = &test_name, .termsig = _signal }; \
static void __attribute__((constructor)) _register_##test_name(void) \ static void __attribute__((constructor)) _register_##test_name(void) \
{ \ { \
__register_test(&_##test_name##_object); \ __register_test(&_##test_name##_object); \
...@@ -304,9 +304,9 @@ ...@@ -304,9 +304,9 @@
} \ } \
static struct __test_metadata \ static struct __test_metadata \
_##fixture_name##_##test_name##_object = { \ _##fixture_name##_##test_name##_object = { \
name: #fixture_name "." #test_name, \ .name = #fixture_name "." #test_name, \
fn: &wrapper_##fixture_name##_##test_name, \ .fn = &wrapper_##fixture_name##_##test_name, \
termsig: signal, \ .termsig = signal, \
}; \ }; \
static void __attribute__((constructor)) \ static void __attribute__((constructor)) \
_register_##fixture_name##_##test_name(void) \ _register_##fixture_name##_##test_name(void) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment