tests: Mark some module test arrays static

These are not used outside the source code file.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2016-06-23 18:11:35 +03:00 committed by Jouni Malinen
parent fad6485c56
commit 3e624369cb
2 changed files with 3 additions and 3 deletions

View file

@ -1266,7 +1266,7 @@ static int test_sha1(void)
} }
const struct { static const struct {
char *data; char *data;
u8 hash[32]; u8 hash[32];
} tests[] = { } tests[] = {
@ -1290,7 +1290,7 @@ const struct {
} }
}; };
const struct hmac_test { static const struct hmac_test {
u8 key[80]; u8 key[80];
size_t key_len; size_t key_len;
u8 data[128]; u8 data[128];

View file

@ -17,7 +17,7 @@ struct wps_attr_parse_test {
int extra; int extra;
}; };
const struct wps_attr_parse_test wps_attr_parse_test_cases[] = { static const struct wps_attr_parse_test wps_attr_parse_test_cases[] = {
/* Empty message */ /* Empty message */
{ "", 0, 0 }, { "", 0, 0 },
/* Truncated attribute header */ /* Truncated attribute header */