test/eal: fix command array sizes
authorDavid Marchand <david.marchand@redhat.com>
Wed, 31 Jul 2019 18:56:30 +0000 (20:56 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Fri, 2 Aug 2019 20:47:07 +0000 (22:47 +0200)
Following removal of -c and -n options, the array should have been
shrunk to avoid launch_proc to access unitialised strings.

Fixes: b4dbacdb1ad7 ("test/eal: set core mask/list config only in dedicated test")
Fixes: 501fa9a40298 ("test/eal: set memory channel config only in dedicated test")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Michael Santana <msantana@redhat.com>
app/test/test_eal_flags.c

index 827ea88..5b2c0f5 100644 (file)
@@ -244,7 +244,7 @@ test_whitelist_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *wlinval[][11] = {
+       const char *wlinval[][7] = {
                {prgname, prefix, mp_flag,
                                pci_whitelist, "error", "", ""},
                {prgname, prefix, mp_flag,
@@ -310,7 +310,7 @@ test_invalid_b_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *blinval[][9] = {
+       const char *blinval[][5] = {
                {prgname, prefix, mp_flag, "-b", "error"},
                {prgname, prefix, mp_flag, "-b", "0:0:0"},
                {prgname, prefix, mp_flag, "-b", "0:error:0.1"},
@@ -414,7 +414,7 @@ test_invalid_r_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *rinval[][9] = {
+       const char *rinval[][5] = {
                        {prgname, prefix, mp_flag, "-r", "error"},
                        {prgname, prefix, mp_flag, "-r", "0"},
                        {prgname, prefix, mp_flag, "-r", "-1"},