test mbuf attach
[dpdk.git] / app / test / test_eal_flags.c
index 2d7f726..b019656 100644 (file)
@@ -1,36 +1,8 @@
-/*-
- *   BSD LICENSE
- *
- *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
- *   Copyright(c) 2014 6WIND S.A.
- *   All rights reserved.
- *
- *   Redistribution and use in source and binary forms, with or without
- *   modification, are permitted provided that the following conditions
- *   are met:
- *
- *     * Redistributions of source code must retain the above copyright
- *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright
- *       notice, this list of conditions and the following disclaimer in
- *       the documentation and/or other materials provided with the
- *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its
- *       contributors may be used to endorse or promote products derived
- *       from this software without specific prior written permission.
- *
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation.
+ * Copyright(c) 2014 6WIND S.A.
  */
+
 #include <stdio.h>
 
 #include "test.h"
@@ -38,7 +10,6 @@
 #include <string.h>
 #include <stdarg.h>
 #include <libgen.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <errno.h>
 #include <unistd.h>
 #include <sys/wait.h>
 #include <sys/file.h>
 #include <limits.h>
+#include <fcntl.h>
 
+#include <rte_lcore.h>
 #include <rte_debug.h>
 #include <rte_string_fns.h>
 
 #include "process.h"
 
-#ifdef RTE_LIBRTE_XEN_DOM0
-#define DEFAULT_MEM_SIZE "30"
-#else
-#define DEFAULT_MEM_SIZE "8"
-#endif
+#define DEFAULT_MEM_SIZE "18"
 #define mp_flag "--proc-type=secondary"
 #define no_hpet "--no-hpet"
 #define no_huge "--no-huge"
@@ -66,9 +35,8 @@
 #define memtest "memtest"
 #define memtest1 "memtest1"
 #define memtest2 "memtest2"
-#define SOCKET_MEM_STRLEN (RTE_MAX_NUMA_NODES * 10)
-#define launch_proc(ARGV) process_dup(ARGV, \
-               sizeof(ARGV)/(sizeof(ARGV[0])), __func__)
+#define SOCKET_MEM_STRLEN (RTE_MAX_NUMA_NODES * 20)
+#define launch_proc(ARGV) process_dup(ARGV, RTE_DIM(ARGV), __func__)
 
 enum hugepage_action {
        HUGEPAGE_CHECK_EXISTS = 0,
@@ -89,7 +57,7 @@ get_hugepage_path(char * src, int src_len, char * dst, int dst_len)
                return 0;
 
        if (strncmp(tokens[2], "hugetlbfs", sizeof("hugetlbfs")) == 0) {
-               snprintf(dst, dst_len, "%s", tokens[1]);
+               strlcpy(dst, tokens[1], dst_len);
                return 1;
        }
        return 0;
@@ -222,7 +190,7 @@ end:
        return result;
 }
 
-#ifdef RTE_EXEC_ENV_LINUXAPP
+#ifdef RTE_EXEC_ENV_LINUX
 /*
  * count the number of "node*" files in /sys/devices/system/node/
  */
@@ -254,30 +222,6 @@ get_number_of_sockets(void)
 }
 #endif
 
-static char*
-get_current_prefix(char * prefix, int size)
-{
-       char path[PATH_MAX] = {0};
-       char buf[PATH_MAX] = {0};
-
-       /* get file for config (fd is always 3) */
-       snprintf(path, sizeof(path), "/proc/self/fd/%d", 3);
-
-       /* return NULL on error */
-       if (readlink(path, buf, sizeof(buf)) == -1)
-               return NULL;
-
-       /* get the basename */
-       snprintf(buf, sizeof(buf), "%s", basename(buf));
-
-       /* copy string all the way from second char up to start of _config */
-       snprintf(prefix, size, "%.*s",
-                       (int)(strnlen(buf, sizeof(buf)) - sizeof("_config")),
-                       &buf[1]);
-
-       return prefix;
-}
-
 /*
  * Test that the app doesn't run with invalid whitelist option.
  * Final tests ensures it does run with valid options as sanity check (one
@@ -287,7 +231,7 @@ static int
 test_whitelist_flag(void)
 {
        unsigned i;
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -299,31 +243,31 @@ test_whitelist_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *wlinval[][11] = {
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+       const char *wlinval[][7] = {
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "error", "", ""},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "0:0:0", "", ""},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "0:error:0.1", "", ""},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "0:0:0.1error", "", ""},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "error0:0:0.1", "", ""},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+               {prgname, prefix, mp_flag,
                                pci_whitelist, "0:0:0.1.2", "", ""},
        };
        /* Test with valid whitelist option */
-       const char *wlval1[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+       const char *wlval1[] = {prgname, prefix, mp_flag,
                        pci_whitelist, "00FF:09:0B.3"};
-       const char *wlval2[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+       const char *wlval2[] = {prgname, prefix, mp_flag,
                        pci_whitelist, "09:0B.3", pci_whitelist, "0a:0b.1"};
-       const char *wlval3[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+       const char *wlval3[] = {prgname, prefix, mp_flag,
                        pci_whitelist, "09:0B.3,type=test",
                        pci_whitelist, "08:00.1,type=normal",
        };
 
-       for (i = 0; i < sizeof(wlinval) / sizeof(wlinval[0]); i++) {
+       for (i = 0; i < RTE_DIM(wlinval); i++) {
                if (launch_proc(wlinval[i]) == 0) {
                        printf("Error - process did run ok with invalid "
                            "whitelist parameter\n");
@@ -353,7 +297,7 @@ test_whitelist_flag(void)
 static int
 test_invalid_b_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -365,20 +309,21 @@ test_invalid_b_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *blinval[][9] = {
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "error"},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "0:0:0"},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "0:error:0.1"},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "0:0:0.1error"},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "error0:0:0.1"},
-               {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "0:0:0.1.2"},
+       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"},
+               {prgname, prefix, mp_flag, "-b", "0:0:0.1error"},
+               {prgname, prefix, mp_flag, "-b", "error0:0:0.1"},
+               {prgname, prefix, mp_flag, "-b", "0:0:0.1.2"},
        };
        /* Test with valid blacklist option */
-       const char *blval[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "FF:09:0B.3"};
+       const char *blval[] = {prgname, prefix, mp_flag,
+                              "-b", "FF:09:0B.3"};
 
        int i;
 
-       for (i = 0; i != sizeof (blinval) / sizeof (blinval[0]); i++) {
+       for (i = 0; i != RTE_DIM(blinval); i++) {
                if (launch_proc(blinval[i]) == 0) {
                        printf("Error - process did run ok with invalid "
                            "blacklist parameter\n");
@@ -396,11 +341,11 @@ test_invalid_b_flag(void)
  *  Test that the app doesn't run with invalid vdev option.
  *  Final test ensures it does run with valid options as sanity check
  */
-#ifdef RTE_LIBRTE_PMD_RING
 static int
 test_invalid_vdev_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_LIBRTE_PMD_RING
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point, and we also need to
         * run another primary process here */
        const char * prefix = no_shconf;
@@ -409,18 +354,18 @@ test_invalid_vdev_flag(void)
 #endif
 
        /* Test with invalid vdev option */
-       const char *vdevinval[] = {prgname, prefix, "-n", "1",
-                               "-c", "1", vdev, "eth_dummy"};
+       const char *vdevinval[] = {prgname, prefix, no_huge,
+                               vdev, "eth_dummy"};
 
        /* Test with valid vdev option */
-       const char *vdevval1[] = {prgname, prefix, "-n", "1",
-       "-c", "1", vdev, "eth_ring0"};
+       const char *vdevval1[] = {prgname, prefix, no_huge,
+       vdev, "net_ring0"};
 
-       const char *vdevval2[] = {prgname, prefix, "-n", "1",
-       "-c", "1", vdev, "eth_ring0,args=test"};
+       const char *vdevval2[] = {prgname, prefix, no_huge,
+       vdev, "net_ring0,args=test"};
 
-       const char *vdevval3[] = {prgname, prefix, "-n", "1",
-       "-c", "1", vdev, "eth_ring0,nodeaction=r1:0:CREATE"};
+       const char *vdevval3[] = {prgname, prefix, no_huge,
+       vdev, "net_ring0,nodeaction=r1:0:CREATE"};
 
        if (launch_proc(vdevinval) == 0) {
                printf("Error - process did run ok with invalid "
@@ -445,8 +390,10 @@ test_invalid_vdev_flag(void)
                return -1;
        }
        return 0;
-}
+#else
+       return TEST_SKIPPED;
 #endif
+}
 
 /*
  * Test that the app doesn't run with invalid -r option.
@@ -454,7 +401,7 @@ test_invalid_vdev_flag(void)
 static int
 test_invalid_r_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -466,18 +413,18 @@ test_invalid_r_flag(void)
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 #endif
 
-       const char *rinval[][9] = {
-                       {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "error"},
-                       {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "0"},
-                       {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "-1"},
-                       {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "17"},
+       const char *rinval[][5] = {
+                       {prgname, prefix, mp_flag, "-r", "error"},
+                       {prgname, prefix, mp_flag, "-r", "0"},
+                       {prgname, prefix, mp_flag, "-r", "-1"},
+                       {prgname, prefix, mp_flag, "-r", "17"},
        };
        /* Test with valid blacklist option */
-       const char *rval[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "16"};
+       const char *rval[] = {prgname, prefix, mp_flag, "-r", "16"};
 
        int i;
 
-       for (i = 0; i != sizeof (rinval) / sizeof (rinval[0]); i++) {
+       for (i = 0; i != RTE_DIM(rinval); i++) {
                if (launch_proc(rinval[i]) == 0) {
                        printf("Error - process did run ok with invalid "
                            "-r (rank) parameter\n");
@@ -492,13 +439,13 @@ test_invalid_r_flag(void)
 }
 
 /*
- * Test that the app doesn't run without the coremask flag. In all cases
+ * Test that the app doesn't run without the coremask/corelist flags. In all cases
  * should give an error and fail to run
  */
 static int
 test_missing_c_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -511,37 +458,210 @@ test_missing_c_flag(void)
 #endif
 
        /* -c flag but no coremask value */
-       const char *argv1[] = { prgname, prefix, mp_flag, "-n", "3", "-c"};
-       /* No -c flag at all */
-       const char *argv2[] = { prgname, prefix, mp_flag, "-n", "3"};
+       const char *argv1[] = { prgname, prefix, mp_flag, "-c"};
+       /* No -c, -l or --lcores flag at all */
+       const char *argv2[] = { prgname, prefix, mp_flag};
        /* bad coremask value */
-       const char *argv3[] = { prgname, prefix, mp_flag, "-n", "3", "-c", "error" };
+       const char *argv3[] = { prgname, prefix, mp_flag,
+                               "-c", "error" };
        /* sanity check of tests - valid coremask value */
-       const char *argv4[] = { prgname, prefix, mp_flag, "-n", "3", "-c", "1" };
+       const char *argv4[] = { prgname, prefix, mp_flag,
+                               "-c", "1" };
+       /* -l flag but no corelist value */
+       const char *argv5[] = { prgname, prefix, mp_flag,
+                               "-l"};
+       const char *argv6[] = { prgname, prefix, mp_flag,
+                               "-l", " " };
+       /* bad corelist values */
+       const char *argv7[] = { prgname, prefix, mp_flag,
+                               "-l", "error" };
+       const char *argv8[] = { prgname, prefix, mp_flag,
+                               "-l", "1-" };
+       const char *argv9[] = { prgname, prefix, mp_flag,
+                               "-l", "1," };
+       const char *argv10[] = { prgname, prefix, mp_flag,
+                                "-l", "1#2" };
+       /* core number is negative value */
+       const char * const argv11[] = { prgname, prefix, mp_flag,
+                               "-l", "-5" };
+       const char * const argv12[] = { prgname, prefix, mp_flag,
+                               "-l", "-5-7" };
+       /* core number is maximum value */
+       const char * const argv13[] = { prgname, prefix, mp_flag,
+                               "-l", RTE_STR(RTE_MAX_LCORE) };
+       const char * const argv14[] = { prgname, prefix, mp_flag,
+                               "-l", "1-"RTE_STR(RTE_MAX_LCORE) };
+       /* sanity check test - valid corelist value */
+       const char * const argv15[] = { prgname, prefix, mp_flag,
+                                "-l", "1-2,3" };
+
+       /* --lcores flag but no lcores value */
+       const char * const argv16[] = { prgname, prefix, mp_flag,
+                                "--lcores" };
+       const char * const argv17[] = { prgname, prefix, mp_flag,
+                                "--lcores", " " };
+       /* bad lcores value */
+       const char * const argv18[] = { prgname, prefix, mp_flag,
+                                "--lcores", "1-3-5" };
+       const char * const argv19[] = { prgname, prefix, mp_flag,
+                                "--lcores", "0-1,,2" };
+       const char * const argv20[] = { prgname, prefix, mp_flag,
+                                "--lcores", "0-,1" };
+       const char * const argv21[] = { prgname, prefix, mp_flag,
+                                "--lcores", "(0-,2-4)" };
+       const char * const argv22[] = { prgname, prefix, mp_flag,
+                                "--lcores", "(-1,2)" };
+       const char * const argv23[] = { prgname, prefix, mp_flag,
+                                "--lcores", "(2-4)@(2-4-6)" };
+       const char * const argv24[] = { prgname, prefix, mp_flag,
+                                "--lcores", "(a,2)" };
+       const char * const argv25[] = { prgname, prefix, mp_flag,
+                                "--lcores", "1-3@(1,3)" };
+       const char * const argv26[] = { prgname, prefix, mp_flag,
+                                "--lcores", "3@((1,3)" };
+       const char * const argv27[] = { prgname, prefix, mp_flag,
+                                "--lcores", "(4-7)=(1,3)" };
+       const char * const argv28[] = { prgname, prefix, mp_flag,
+                                "--lcores", "[4-7]@(1,3)" };
+       /* sanity check of tests - valid lcores value */
+       const char * const argv29[] = { prgname, prefix, mp_flag,
+                                "--lcores",
+                                "0-1,2@(5-7),(3-5)@(0,2),(0,6),7"};
+       /* check an invalid cpu value >= CPU_SETSIZE */
+       const char * const argv30[] = { prgname, prefix, mp_flag,
+                                "--lcores", "3@" RTE_STR(CPU_SETSIZE) };
+
+       if (launch_proc(argv2) != 0) {
+               printf("Error - "
+                      "process did not run ok when missing -c flag\n");
+               return -1;
+       }
 
        if (launch_proc(argv1) == 0
-                       || launch_proc(argv2) == 0
                        || launch_proc(argv3) == 0) {
-               printf("Error - process ran without error when missing -c flag\n");
+               printf("Error - "
+                      "process ran without error with invalid -c flag\n");
                return -1;
        }
        if (launch_proc(argv4) != 0) {
-               printf("Error - process did not run ok with valid coremask value\n");
+               printf("Error - "
+                      "process did not run ok with valid coremask value\n");
+               return -1;
+       }
+
+       /* start -l test */
+       if (launch_proc(argv5) == 0
+                       || launch_proc(argv6) == 0
+                       || launch_proc(argv7) == 0
+                       || launch_proc(argv8) == 0
+                       || launch_proc(argv9) == 0
+                       || launch_proc(argv10) == 0
+                       || launch_proc(argv11) == 0
+                       || launch_proc(argv12) == 0
+                       || launch_proc(argv13) == 0
+                       || launch_proc(argv14) == 0) {
+               printf("Error - "
+                      "process ran without error with invalid -l flag\n");
+               return -1;
+       }
+       if (rte_lcore_is_enabled(0) && rte_lcore_is_enabled(1) &&
+           rte_lcore_is_enabled(2) && rte_lcore_is_enabled(3) &&
+           launch_proc(argv15) != 0) {
+               printf("Error - "
+                      "process did not run ok with valid corelist value\n");
+               return -1;
+       }
+
+       /* start --lcores tests */
+       if (launch_proc(argv16) == 0 || launch_proc(argv17) == 0 ||
+           launch_proc(argv18) == 0 || launch_proc(argv19) == 0 ||
+           launch_proc(argv20) == 0 || launch_proc(argv21) == 0 ||
+           launch_proc(argv22) == 0 || launch_proc(argv23) == 0 ||
+           launch_proc(argv24) == 0 || launch_proc(argv25) == 0 ||
+           launch_proc(argv26) == 0 || launch_proc(argv27) == 0 ||
+           launch_proc(argv28) == 0 || launch_proc(argv30) == 0) {
+               printf("Error - "
+                      "process ran without error with invalid --lcore flag\n");
+               return -1;
+       }
+
+       if (rte_lcore_is_enabled(0) && rte_lcore_is_enabled(1) &&
+           rte_lcore_is_enabled(2) && rte_lcore_is_enabled(3) &&
+           rte_lcore_is_enabled(3) && rte_lcore_is_enabled(5) &&
+           rte_lcore_is_enabled(4) && rte_lcore_is_enabled(7) &&
+           launch_proc(argv29) != 0) {
+               printf("Error - "
+                      "process did not run ok with valid corelist value\n");
+               return -1;
+       }
+
+       return 0;
+}
+
+/*
+ * Test --master-lcore option with matching coremask
+ */
+static int
+test_master_lcore_flag(void)
+{
+#ifdef RTE_EXEC_ENV_FREEBSD
+       /* BSD target doesn't support prefixes at this point */
+       const char *prefix = "";
+#else
+       char prefix[PATH_MAX], tmp[PATH_MAX];
+       if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
+               printf("Error - unable to get current prefix!\n");
+               return -1;
+       }
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
+
+       if (!rte_lcore_is_enabled(0) || !rte_lcore_is_enabled(1))
+               return TEST_SKIPPED;
+
+       /* --master-lcore flag but no value */
+       const char *argv1[] = { prgname, prefix, mp_flag,
+                               "-c", "3", "--master-lcore"};
+       /* --master-lcore flag with invalid value */
+       const char *argv2[] = { prgname, prefix, mp_flag,
+                               "-c", "3", "--master-lcore", "-1"};
+       const char *argv3[] = { prgname, prefix, mp_flag,
+                               "-c", "3", "--master-lcore", "X"};
+       /* master lcore not in coremask */
+       const char *argv4[] = { prgname, prefix, mp_flag,
+                               "-c", "3", "--master-lcore", "2"};
+       /* valid value */
+       const char *argv5[] = { prgname, prefix, mp_flag,
+                               "-c", "3", "--master-lcore", "1"};
+       /* valid value set before coremask */
+       const char *argv6[] = { prgname, prefix, mp_flag,
+                               "--master-lcore", "1", "-c", "3"};
+
+       if (launch_proc(argv1) == 0
+                       || launch_proc(argv2) == 0
+                       || launch_proc(argv3) == 0
+                       || launch_proc(argv4) == 0) {
+               printf("Error - process ran without error with wrong --master-lcore\n");
+               return -1;
+       }
+       if (launch_proc(argv5) != 0
+                       || launch_proc(argv6) != 0) {
+               printf("Error - process did not run ok with valid --master-lcore\n");
                return -1;
        }
        return 0;
 }
 
 /*
- * Test that the app doesn't run without the -n flag. In all cases
- * should give an error and fail to run.
+ * Test that the app doesn't run with invalid -n flag option.
+ * Final test ensures it does run with valid options as sanity check
  * Since -n is not compulsory for MP, we instead use --no-huge and --no-shconf
  * flags.
  */
 static int
-test_missing_n_flag(void)
+test_invalid_n_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -554,27 +674,36 @@ test_missing_n_flag(void)
 #endif
 
        /* -n flag but no value */
-       const char *argv1[] = { prgname, prefix, no_huge, no_shconf, "-c", "1", "-n"};
-       /* No -n flag at all */
-       const char *argv2[] = { prgname, prefix, no_huge, no_shconf, "-c", "1"};
+       const char *argv1[] = { prgname, prefix, no_huge, no_shconf,
+                               "-n"};
        /* bad numeric value */
-       const char *argv3[] = { prgname, prefix, no_huge, no_shconf, "-c", "1", "-n", "e" };
-       /* out-of-range value */
-       const char *argv4[] = { prgname, prefix, no_huge, no_shconf, "-c", "1", "-n", "9" };
+       const char *argv2[] = { prgname, prefix, no_huge, no_shconf,
+                               "-n", "e" };
+       /* zero is invalid */
+       const char *argv3[] = { prgname, prefix, no_huge, no_shconf,
+                               "-n", "0" };
        /* sanity test - check with good value */
-       const char *argv5[] = { prgname, prefix, no_huge, no_shconf, "-c", "1", "-n", "2" };
+       const char *argv4[] = { prgname, prefix, no_huge, no_shconf,
+                               "-n", "2" };
+       /* sanity test - check with no -n flag */
+       const char *argv5[] = { prgname, prefix, no_huge, no_shconf};
 
        if (launch_proc(argv1) == 0
                        || launch_proc(argv2) == 0
-                       || launch_proc(argv3) == 0
-                       || launch_proc(argv4) == 0) {
-               printf("Error - process ran without error when missing -n flag\n");
+                       || launch_proc(argv3) == 0) {
+               printf("Error - process ran without error when"
+                      "invalid -n flag\n");
                return -1;
        }
-       if (launch_proc(argv5) != 0) {
+       if (launch_proc(argv4) != 0) {
                printf("Error - process did not run ok with valid num-channel value\n");
                return -1;
        }
+       if (launch_proc(argv5) != 0) {
+               printf("Error - process did not run ok without -n flag\n");
+               return -1;
+       }
+
        return 0;
 }
 
@@ -584,21 +713,23 @@ test_missing_n_flag(void)
 static int
 test_no_hpet_flag(void)
 {
-       char prefix[PATH_MAX], tmp[PATH_MAX];
+       char prefix[PATH_MAX] = "";
 
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        return 0;
-#endif
+#else
+       char tmp[PATH_MAX];
        if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
                printf("Error - unable to get current prefix!\n");
                return -1;
        }
        snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
 
        /* With --no-hpet */
-       const char *argv1[] = {prgname, prefix, mp_flag, no_hpet, "-c", "1", "-n", "2"};
+       const char *argv1[] = {prgname, prefix, mp_flag, no_hpet};
        /* Without --no-hpet */
-       const char *argv2[] = {prgname, prefix, mp_flag, "-c", "1", "-n", "2"};
+       const char *argv2[] = {prgname, prefix, mp_flag};
 
        if (launch_proc(argv1) != 0) {
                printf("Error - process did not run ok with --no-hpet flag\n");
@@ -612,13 +743,13 @@ test_no_hpet_flag(void)
 }
 
 /*
- * Test that the app runs with --no-huge and doesn't run when either
- * -m or --socket-mem are specified with --no-huge.
+ * Test that the app runs with --no-huge and doesn't run when --socket-mem are
+ * specified with --no-huge.
  */
 static int
 test_no_huge_flag(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point, and we also need to
         * run another primary process here */
        const char * prefix = no_shconf;
@@ -627,26 +758,26 @@ test_no_huge_flag(void)
 #endif
 
        /* With --no-huge */
-       const char *argv1[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2"};
+       const char *argv1[] = {prgname, prefix, no_huge};
        /* With --no-huge and -m */
-       const char *argv2[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
+       const char *argv2[] = {prgname, prefix, no_huge,
                        "-m", DEFAULT_MEM_SIZE};
 
        /* With --no-huge and --socket-mem */
-       const char *argv3[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
+       const char *argv3[] = {prgname, prefix, no_huge,
                        "--socket-mem=" DEFAULT_MEM_SIZE};
        /* With --no-huge, -m and --socket-mem */
-       const char *argv4[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
+       const char *argv4[] = {prgname, prefix, no_huge,
                        "-m", DEFAULT_MEM_SIZE, "--socket-mem=" DEFAULT_MEM_SIZE};
        if (launch_proc(argv1) != 0) {
                printf("Error - process did not run ok with --no-huge flag\n");
                return -1;
        }
-       if (launch_proc(argv2) == 0) {
-               printf("Error - process run ok with --no-huge and -m flags\n");
+       if (launch_proc(argv2) != 0) {
+               printf("Error - process did not run ok with --no-huge and -m flags\n");
                return -1;
        }
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target does not support NUMA, hence no --socket-mem tests */
        return 0;
 #endif
@@ -664,77 +795,11 @@ test_no_huge_flag(void)
        return 0;
 }
 
-#ifdef RTE_LIBRTE_XEN_DOM0
-static int
-test_dom0_misc_flags(void)
-{
-       char prefix[PATH_MAX], tmp[PATH_MAX];
-
-       if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
-               printf("Error - unable to get current prefix!\n");
-               return -1;
-       }
-       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
-
-       /* check that some general flags don't prevent things from working.
-        * All cases, apart from the first, app should run.
-        * No futher testing of output done.
-        */
-       /* sanity check - failure with invalid option */
-       const char *argv0[] = {prgname, prefix, mp_flag, "-c", "1", "--invalid-opt"};
-
-       /* With --no-pci */
-       const char *argv1[] = {prgname, prefix, mp_flag, "-c", "1", "--no-pci"};
-       /* With -v */
-       const char *argv2[] = {prgname, prefix, mp_flag, "-c", "1", "-v"};
-       /* With valid --syslog */
-       const char *argv3[] = {prgname, prefix, mp_flag, "-c", "1",
-                       "--syslog", "syslog"};
-       /* With empty --syslog (should fail) */
-       const char *argv4[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog"};
-       /* With invalid --syslog */
-       const char *argv5[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog", "error"};
-       /* With no-sh-conf */
-       const char *argv6[] = {prgname, "-c", "1", "-n", "2", "-m", "20",
-                       "--no-shconf", "--file-prefix=noshconf" };
-
-       if (launch_proc(argv0) == 0) {
-               printf("Error - process ran ok with invalid flag\n");
-               return -1;
-       }
-       if (launch_proc(argv1) != 0) {
-               printf("Error - process did not run ok with --no-pci flag\n");
-               return -1;
-       }
-       if (launch_proc(argv2) != 0) {
-               printf("Error - process did not run ok with -v flag\n");
-               return -1;
-       }
-       if (launch_proc(argv3) != 0) {
-               printf("Error - process did not run ok with --syslog flag\n");
-               return -1;
-       }
-       if (launch_proc(argv4) == 0) {
-               printf("Error - process run ok with empty --syslog flag\n");
-               return -1;
-       }
-       if (launch_proc(argv5) == 0) {
-               printf("Error - process run ok with invalid --syslog flag\n");
-               return -1;
-       }
-       if (launch_proc(argv6) != 0) {
-               printf("Error - process did not run ok with --no-shconf flag\n");
-               return -1;
-       }
-
-       return 0;
-}
-#else
 static int
 test_misc_flags(void)
 {
        char hugepath[PATH_MAX] = {0};
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
        const char * nosh_prefix = "";
@@ -786,62 +851,73 @@ test_misc_flags(void)
 
        /* check that some general flags don't prevent things from working.
         * All cases, apart from the first, app should run.
-        * No futher testing of output done.
+        * No further testing of output done.
         */
        /* sanity check - failure with invalid option */
-       const char *argv0[] = {prgname, prefix, mp_flag, "-c", "1", "--invalid-opt"};
+       const char *argv0[] = {prgname, prefix, mp_flag, "--invalid-opt"};
 
        /* With --no-pci */
-       const char *argv1[] = {prgname, prefix, mp_flag, "-c", "1", "--no-pci"};
+       const char *argv1[] = {prgname, prefix, mp_flag, "--no-pci"};
        /* With -v */
-       const char *argv2[] = {prgname, prefix, mp_flag, "-c", "1", "-v"};
+       const char *argv2[] = {prgname, prefix, mp_flag, "-v"};
        /* With valid --syslog */
-       const char *argv3[] = {prgname, prefix, mp_flag, "-c", "1",
+       const char *argv3[] = {prgname, prefix, mp_flag,
                        "--syslog", "syslog"};
        /* With empty --syslog (should fail) */
-       const char *argv4[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog"};
+       const char *argv4[] = {prgname, prefix, mp_flag, "--syslog"};
        /* With invalid --syslog */
-       const char *argv5[] = {prgname, prefix, mp_flag, "-c", "1", "--syslog", "error"};
-       /* With no-sh-conf */
-       const char *argv6[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
-                       no_shconf, nosh_prefix };
+       const char *argv5[] = {prgname, prefix, mp_flag, "--syslog", "error"};
+       /* With no-sh-conf, also use no-huge to ensure this test runs on BSD */
+       const char *argv6[] = {prgname, "-m", DEFAULT_MEM_SIZE,
+                       no_shconf, nosh_prefix, no_huge};
 
-#ifdef RTE_EXEC_ENV_BSDAPP
-       return 0;
-#endif
        /* With --huge-dir */
-       const char *argv7[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
+       const char *argv7[] = {prgname, "-m", DEFAULT_MEM_SIZE,
                        "--file-prefix=hugedir", "--huge-dir", hugepath};
        /* With empty --huge-dir (should fail) */
-       const char *argv8[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
+       const char *argv8[] = {prgname, "-m", DEFAULT_MEM_SIZE,
                        "--file-prefix=hugedir", "--huge-dir"};
        /* With invalid --huge-dir */
-       const char *argv9[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
+       const char *argv9[] = {prgname, "-m", DEFAULT_MEM_SIZE,
                        "--file-prefix=hugedir", "--huge-dir", "invalid"};
        /* Secondary process with invalid --huge-dir (should run as flag has no
         * effect on secondary processes) */
-       const char *argv10[] = {prgname, prefix, mp_flag, "-c", "1", "--huge-dir", "invalid"};
+       const char *argv10[] = {prgname, prefix, mp_flag,
+                       "--huge-dir", "invalid"};
 
        /* try running with base-virtaddr param */
        const char *argv11[] = {prgname, "--file-prefix=virtaddr",
-                       "-c", "1", "-n", "2", "--base-virtaddr=0x12345678"};
+                       "--base-virtaddr=0x12345678"};
 
        /* try running with --vfio-intr INTx flag */
        const char *argv12[] = {prgname, "--file-prefix=intr",
-                       "-c", "1", "-n", "2", "--vfio-intr=legacy"};
+                       "--vfio-intr=legacy"};
 
        /* try running with --vfio-intr MSI flag */
        const char *argv13[] = {prgname, "--file-prefix=intr",
-                       "-c", "1", "-n", "2", "--vfio-intr=msi"};
+                       "--vfio-intr=msi"};
 
        /* try running with --vfio-intr MSI-X flag */
        const char *argv14[] = {prgname, "--file-prefix=intr",
-                       "-c", "1", "-n", "2", "--vfio-intr=msix"};
+                       "--vfio-intr=msix"};
 
        /* try running with --vfio-intr invalid flag */
        const char *argv15[] = {prgname, "--file-prefix=intr",
-                       "-c", "1", "-n", "2", "--vfio-intr=invalid"};
+                       "--vfio-intr=invalid"};
+
+       /* With process type as auto-detect */
+       const char * const argv16[] = {prgname, "--file-prefix=auto",
+                       "--proc-type=auto"};
+
+       /* With process type as auto-detect with no-shconf */
+       const char * const argv17[] = {prgname, "--proc-type=auto",
+                       no_shconf, nosh_prefix, no_huge};
 
+       /* With process type as --create-uio-dev flag */
+       const char * const argv18[] = {prgname, "--file-prefix=uiodev",
+                       "--create-uio-dev"};
+
+       /* run all tests also applicable to FreeBSD first */
 
        if (launch_proc(argv0) == 0) {
                printf("Error - process ran ok with invalid flag\n");
@@ -855,6 +931,16 @@ test_misc_flags(void)
                printf("Error - process did not run ok with -v flag\n");
                return -1;
        }
+       if (launch_proc(argv6) != 0) {
+               printf("Error - process did not run ok with --no-shconf flag\n");
+               return -1;
+       }
+
+#ifdef RTE_EXEC_ENV_FREEBSD
+       /* no more tests to be done on FreeBSD */
+       return 0;
+#endif
+
        if (launch_proc(argv3) != 0) {
                printf("Error - process did not run ok with --syslog flag\n");
                return -1;
@@ -867,13 +953,6 @@ test_misc_flags(void)
                printf("Error - process run ok with invalid --syslog flag\n");
                return -1;
        }
-       if (launch_proc(argv6) != 0) {
-               printf("Error - process did not run ok with --no-shconf flag\n");
-               return -1;
-       }
-#ifdef RTE_EXEC_ENV_BSDAPP
-       return 0;
-#endif
        if (launch_proc(argv7) != 0) {
                printf("Error - process did not run ok with --huge-dir flag\n");
                return -1;
@@ -914,9 +993,24 @@ test_misc_flags(void)
                                "--vfio-intr invalid parameter\n");
                return -1;
        }
+       if (launch_proc(argv16) != 0) {
+               printf("Error - process did not run ok with "
+                               "--proc-type as auto parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv17) != 0) {
+               printf("Error - process did not run ok with "
+                               "--proc-type and --no-shconf parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv18) != 0) {
+               printf("Error - process did not run ok with "
+                               "--create-uio-dev parameter\n");
+               return -1;
+       }
+
        return 0;
 }
-#endif
 
 static int
 test_file_prefix(void)
@@ -926,36 +1020,66 @@ test_file_prefix(void)
         * 2. try to run secondary process without a corresponding primary process
         * (while failing to run, it will also remove any unused hugepage files)
         * 3. check if current process hugefiles are still in place and are locked
-        * 4. run a primary process with memtest1 prefix
-        * 5. check if memtest1 hugefiles are created
-        * 6. run a primary process with memtest2 prefix
-        * 7. check that only memtest2 hugefiles are present in the hugedir
+        * 4. run a primary process with memtest1 prefix in default and legacy
+        *    mem mode
+        * 5. check if memtest1 hugefiles are created in case of legacy mem
+        *    mode, and deleted in case of default mem mode
+        * 6. run a primary process with memtest2 prefix in default and legacy
+        *    mem modes
+        * 7. check that memtest2 hugefiles are present in the hugedir after a
+        *    run in legacy mode, and not present at all after run in default
+        *    mem mode
         */
+       char prefix[PATH_MAX] = "";
 
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        return 0;
+#else
+       if (get_current_prefix(prefix, sizeof(prefix)) == NULL) {
+               printf("Error - unable to get current prefix!\n");
+               return -1;
+       }
 #endif
 
        /* this should fail unless the test itself is run with "memtest" prefix */
-       const char *argv0[] = {prgname, mp_flag, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
-                       "--file-prefix=" memtest };
+       const char *argv0[] = {prgname, mp_flag, "-m",
+                       DEFAULT_MEM_SIZE, "--file-prefix=" memtest };
 
-       /* primary process with memtest1 */
-       const char *argv1[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
-                               "--file-prefix=" memtest1 };
+       /* primary process with memtest1 and default mem mode */
+       const char *argv1[] = {prgname, "-m",
+                       DEFAULT_MEM_SIZE, "--file-prefix=" memtest1 };
 
-       /* primary process with memtest2 */
-       const char *argv2[] = {prgname, "-c", "1", "-n", "2", "-m", DEFAULT_MEM_SIZE,
-                               "--file-prefix=" memtest2 };
+       /* primary process with memtest1 and legacy mem mode */
+       const char *argv2[] = {prgname, "-m",
+                       DEFAULT_MEM_SIZE, "--file-prefix=" memtest1,
+                       "--legacy-mem" };
 
-       char prefix[32];
-       if (get_current_prefix(prefix, sizeof(prefix)) == NULL) {
-               printf("Error - unable to get current prefix!\n");
-               return -1;
-       }
-#ifdef RTE_LIBRTE_XEN_DOM0
-       return 0;
-#endif
+       /* primary process with memtest2 and legacy mem mode */
+       const char *argv3[] = {prgname, "-m",
+                       DEFAULT_MEM_SIZE, "--file-prefix=" memtest2,
+                       "--legacy-mem" };
+
+       /* primary process with memtest2 and default mem mode */
+       const char *argv4[] = {prgname, "-m",
+                       DEFAULT_MEM_SIZE, "--file-prefix=" memtest2 };
+
+       /* primary process with --in-memory mode */
+       const char * const argv5[] = {prgname, "-m",
+               DEFAULT_MEM_SIZE, "--in-memory" };
+
+       /* primary process with memtest1 and --in-memory mode */
+       const char * const argv6[] = {prgname, "-m",
+               DEFAULT_MEM_SIZE, "--in-memory",
+               "--file-prefix=" memtest1 };
+
+       /* primary process with parent file-prefix and --in-memory mode */
+       const char * const argv7[] = {prgname, "-m",
+               DEFAULT_MEM_SIZE, "--in-memory", "--file-prefix", prefix };
+
+       /* primary process with memtest1 and --single-file-segments mode */
+       const char * const argv8[] = {prgname, "-m",
+               DEFAULT_MEM_SIZE, "--single-file-segments",
+               "--file-prefix=" memtest1 };
 
        /* check if files for current prefix are present */
        if (process_hugefiles(prefix, HUGEPAGE_CHECK_EXISTS) != 1) {
@@ -1002,44 +1126,173 @@ test_file_prefix(void)
                return -1;
        }
 
+       /* we're running this process in default memory mode, which means it
+        * should clean up after itself on exit and leave no hugepages behind.
+        */
        if (launch_proc(argv1) != 0) {
-               printf("Error - failed to run with --file-prefix=%s\n", memtest);
+               printf("Error - failed to run with --file-prefix=%s\n",
+                               memtest1);
                return -1;
        }
 
        /* check if memtest1_map0 is present */
-       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 1) {
-               printf("Error - hugepage files for %s were not created!\n", memtest1);
+       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
+               printf("Error - hugepage files for %s were not deleted!\n",
+                               memtest1);
                return -1;
        }
 
+       /* now, we're running a process under the same prefix, but with legacy
+        * mem mode - this should leave behind hugepage files.
+        */
        if (launch_proc(argv2) != 0) {
-               printf("Error - failed to run with --file-prefix=%s\n", memtest2);
+               printf("Error - failed to run with --file-prefix=%s\n",
+                               memtest1);
+               return -1;
+       }
+
+       /* check if memtest1_map0 is present */
+       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 1) {
+               printf("Error - hugepage files for %s were not created!\n",
+                               memtest1);
+               return -1;
+       }
+
+       if (launch_proc(argv3) != 0) {
+               printf("Error - failed to run with --file-prefix=%s\n",
+                               memtest2);
                return -1;
        }
 
        /* check if hugefiles for memtest2 are present */
        if (process_hugefiles(memtest2, HUGEPAGE_CHECK_EXISTS) != 1) {
-               printf("Error - hugepage files for %s were not created!\n", memtest2);
+               printf("Error - hugepage files for %s were not created!\n",
+                               memtest2);
+               return -1;
+       }
+
+       /* check if hugefiles for memtest1 are present */
+       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
+               printf("Error - hugepage files for %s were not deleted!\n",
+                               memtest1);
+               return -1;
+       }
+
+       /* this process will run in default mem mode, so it should not leave any
+        * hugepage files behind.
+        */
+       if (launch_proc(argv4) != 0) {
+               printf("Error - failed to run with --file-prefix=%s\n",
+                               memtest2);
+               return -1;
+       }
+
+       /* check if hugefiles for memtest2 are present */
+       if (process_hugefiles(memtest2, HUGEPAGE_CHECK_EXISTS) != 0) {
+               printf("Error - hugepage files for %s were not deleted!\n",
+                               memtest2);
                return -1;
        }
 
        /* check if hugefiles for memtest1 are present */
        if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
-               printf("Error - hugepage files for %s were not deleted!\n", memtest1);
+               printf("Error - hugepage files for %s were not deleted!\n",
+                               memtest1);
+               return -1;
+       }
+
+       /* this process will run in --in-memory mode, so it should not leave any
+        * hugepage files behind.
+        */
+
+       /* test case to check eal-options with --in-memory mode */
+       if (launch_proc(argv5) != 0) {
+               printf("Error - failed to run with --in-memory mode\n");
+               return -1;
+       }
+
+       /*test case to check eal-options with --in-memory mode with
+        * custom file-prefix.
+        */
+       if (launch_proc(argv6) != 0) {
+               printf("Error - failed to run with --in-memory mode\n");
+               return -1;
+       }
+
+       /* check if hugefiles for memtest1 are present */
+       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
+               printf("Error - hugepage files for %s were created and not deleted!\n",
+                               memtest1);
+               return -1;
+       }
+
+       /* test case to check eal-options with --in-memory mode with
+        * parent file-prefix.
+        */
+       if (launch_proc(argv7) != 0) {
+               printf("Error - failed to run with --file-prefix=%s\n", prefix);
+               return -1;
+       }
+
+       /* this process will run in --single-file-segments mode,
+        * so it should not leave any hugepage files behind.
+        */
+       if (launch_proc(argv8) != 0) {
+               printf("Error - failed to run with --single-file-segments mode\n");
+               return -1;
+       }
+
+       /* check if hugefiles for memtest1 are present */
+       if (process_hugefiles(memtest1, HUGEPAGE_CHECK_EXISTS) != 0) {
+               printf("Error - hugepage files for %s were not deleted!\n",
+                               memtest1);
                return -1;
        }
 
        return 0;
 }
 
+/* This function writes in passed buf pointer a valid --socket-mem= option
+ * for num_sockets then concatenates the provided suffix string.
+ *
+ * Example for num_sockets 4, mem "2", suffix "plop"
+ * --socket-mem=2,2,2,2plop
+ */
+static void
+populate_socket_mem_param(int num_sockets, const char *mem,
+               const char *suffix, char *buf, size_t buf_size)
+{
+       unsigned int offset = 0;
+       int written;
+       int i;
+
+       written = snprintf(&buf[offset], buf_size - offset, "--socket-mem=");
+       if (written < 0 || written + offset >= buf_size)
+               return;
+       offset += written;
+
+       for (i = 0; i < num_sockets - 1; i++) {
+               written = snprintf(&buf[offset], buf_size - offset,
+                       "%s,", mem);
+               if (written < 0 || written + offset >= buf_size)
+                       return;
+               offset += written;
+       }
+
+       written = snprintf(&buf[offset], buf_size - offset, "%s%s", mem,
+               suffix);
+       if (written < 0 || written + offset >= buf_size)
+               return;
+       offset += written;
+}
+
 /*
  * Tests for correct handling of -m and --socket-mem flags
  */
 static int
 test_memory_flags(void)
 {
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* BSD target doesn't support prefixes at this point */
        const char * prefix = "";
 #else
@@ -1052,92 +1305,68 @@ test_memory_flags(void)
 #endif
 
        /* valid -m flag and mp flag */
-       const char *argv0[] = {prgname, prefix, mp_flag, "-c", "10",
-                       "-n", "2", "-m", DEFAULT_MEM_SIZE};
+       const char *argv0[] = {prgname, prefix, mp_flag,
+                       "-m", DEFAULT_MEM_SIZE};
 
        /* valid -m flag */
-       const char *argv1[] = {prgname, "-c", "10", "-n", "2",
+       const char *argv1[] = {prgname,
                        "--file-prefix=" memtest, "-m", DEFAULT_MEM_SIZE};
 
-       /* invalid (zero) --socket-mem flag */
-       const char *argv2[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "--socket-mem=0,0,0,0"};
+       /* valid (zero) --socket-mem flag */
+       char arg2_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv2[] = {prgname,
+                       "--file-prefix=" memtest, arg2_socket_mem};
 
        /* invalid (incomplete) --socket-mem flag */
-       const char *argv3[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "--socket-mem=2,2,"};
+       char arg3_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv3[] = {prgname,
+                       "--file-prefix=" memtest, arg3_socket_mem};
 
        /* invalid (mixed with invalid data) --socket-mem flag */
-       const char *argv4[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "--socket-mem=2,2,Fred"};
+       char arg4_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv4[] = {prgname,
+                       "--file-prefix=" memtest, arg4_socket_mem};
 
        /* invalid (with numeric value as last character) --socket-mem flag */
-       const char *argv5[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "--socket-mem=2,2,Fred0"};
+       char arg5_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv5[] = {prgname,
+                       "--file-prefix=" memtest, arg5_socket_mem};
 
        /* invalid (with empty socket) --socket-mem flag */
-       const char *argv6[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "--socket-mem=2,,2"};
+       char arg6_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv6[] = {prgname,
+                       "--file-prefix=" memtest, arg6_socket_mem};
 
        /* invalid (null) --socket-mem flag */
-       const char *argv7[] = {prgname, "-c", "10", "-n", "2",
+       const char *argv7[] = {prgname,
                        "--file-prefix=" memtest, "--socket-mem="};
 
        /* valid --socket-mem specified together with -m flag */
-       const char *argv8[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "-m", DEFAULT_MEM_SIZE, "--socket-mem=2,2"};
-
-       /* construct an invalid socket mask with 2 megs on each socket plus
-        * extra 2 megs on socket that doesn't exist on current system */
-       char invalid_socket_mem[SOCKET_MEM_STRLEN];
-       char buf[SOCKET_MEM_STRLEN];    /* to avoid copying string onto itself */
+       char arg8_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv8[] = {prgname,
+                       "--file-prefix=" memtest, "-m", DEFAULT_MEM_SIZE,
+                       arg8_socket_mem};
 
-#ifdef RTE_EXEC_ENV_BSDAPP
-       int i, num_sockets = 1;
+#ifdef RTE_EXEC_ENV_FREEBSD
+       int num_sockets = 1;
 #else
-       int i, num_sockets = get_number_of_sockets();
+       int num_sockets = RTE_MIN(get_number_of_sockets(),
+                       RTE_MAX_NUMA_NODES);
 #endif
 
-       if (num_sockets <= 0 || num_sockets > RTE_MAX_NUMA_NODES) {
+       if (num_sockets <= 0) {
                printf("Error - cannot get number of sockets!\n");
                return -1;
        }
 
-       snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "--socket-mem=");
-
-       /* add one extra socket */
-       for (i = 0; i < num_sockets + 1; i++) {
-               snprintf(buf, sizeof(buf), "%s%s", invalid_socket_mem, DEFAULT_MEM_SIZE);
-               snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "%s", buf);
-
-               if (num_sockets + 1 - i > 1) {
-                       snprintf(buf, sizeof(buf), "%s,", invalid_socket_mem);
-                       snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "%s", buf);
-               }
-       }
-
-       /* construct a valid socket mask with 2 megs on each existing socket */
-       char valid_socket_mem[SOCKET_MEM_STRLEN];
-
-       snprintf(valid_socket_mem, sizeof(valid_socket_mem), "--socket-mem=");
-
-       /* add one extra socket */
-       for (i = 0; i < num_sockets; i++) {
-               snprintf(buf, sizeof(buf), "%s%s", valid_socket_mem, DEFAULT_MEM_SIZE);
-               snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
-
-               if (num_sockets - i > 1) {
-                       snprintf(buf, sizeof(buf), "%s,", valid_socket_mem);
-                       snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
-               }
-       }
-
        /* invalid --socket-mem flag (with extra socket) */
-       const char *argv9[] = {prgname, "-c", "10", "-n", "2",
+       char invalid_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv9[] = {prgname,
                        "--file-prefix=" memtest, invalid_socket_mem};
 
        /* valid --socket-mem flag */
-       const char *argv10[] = {prgname, "-c", "10", "-n", "2",
+       char valid_socket_mem[SOCKET_MEM_STRLEN];
+       const char *argv10[] = {prgname,
                        "--file-prefix=" memtest, valid_socket_mem};
 
        if (launch_proc(argv0) != 0) {
@@ -1145,7 +1374,7 @@ test_memory_flags(void)
                return -1;
        }
 
-#ifdef RTE_EXEC_ENV_BSDAPP
+#ifdef RTE_EXEC_ENV_FREEBSD
        /* no other tests are applicable to BSD */
        return 0;
 #endif
@@ -1154,37 +1383,49 @@ test_memory_flags(void)
                printf("Error - process failed with valid -m flag!\n");
                return -1;
        }
-#ifdef RTE_LIBRTE_XEN_DOM0
-       return 0;
-#endif
-       if (launch_proc(argv2) == 0) {
-               printf("Error - process run ok with invalid (zero) --socket-mem!\n");
+
+       populate_socket_mem_param(num_sockets, "0", "",
+               arg2_socket_mem, sizeof(arg2_socket_mem));
+       if (launch_proc(argv2) != 0) {
+               printf("Error - process failed with valid (zero) --socket-mem!\n");
                return -1;
        }
 
-       if (launch_proc(argv3) == 0) {
-               printf("Error - process run ok with invalid "
+       if (num_sockets > 1) {
+               populate_socket_mem_param(num_sockets - 1, "2", ",",
+                       arg3_socket_mem, sizeof(arg3_socket_mem));
+               if (launch_proc(argv3) == 0) {
+                       printf("Error - process run ok with invalid "
                                "(incomplete) --socket-mem!\n");
-               return -1;
-       }
+                       return -1;
+               }
 
-       if (launch_proc(argv4) == 0) {
-               printf("Error - process run ok with invalid "
+               populate_socket_mem_param(num_sockets - 1, "2", ",Fred",
+                       arg4_socket_mem, sizeof(arg4_socket_mem));
+               if (launch_proc(argv4) == 0) {
+                       printf("Error - process run ok with invalid "
                                "(mixed with invalid input) --socket-mem!\n");
-               return -1;
-       }
+                       return -1;
+               }
 
-       if (launch_proc(argv5) == 0) {
-               printf("Error - process run ok with invalid "
+               populate_socket_mem_param(num_sockets - 1, "2", ",Fred0",
+                       arg5_socket_mem, sizeof(arg5_socket_mem));
+               if (launch_proc(argv5) == 0) {
+                       printf("Error - process run ok with invalid "
                                "(mixed with invalid input with a numeric value as "
                                "last character) --socket-mem!\n");
-               return -1;
+                       return -1;
+               }
        }
 
-       if (launch_proc(argv6) == 0) {
-               printf("Error - process run ok with invalid "
+       if (num_sockets > 2) {
+               populate_socket_mem_param(num_sockets - 2, "2", ",,2",
+                       arg6_socket_mem, sizeof(arg6_socket_mem));
+               if (launch_proc(argv6) == 0) {
+                       printf("Error - process run ok with invalid "
                                "(with empty socket) --socket-mem!\n");
-               return -1;
+                       return -1;
+               }
        }
 
        if (launch_proc(argv7) == 0) {
@@ -1192,16 +1433,22 @@ test_memory_flags(void)
                return -1;
        }
 
+       populate_socket_mem_param(num_sockets, "2", "",
+               arg8_socket_mem, sizeof(arg8_socket_mem));
        if (launch_proc(argv8) == 0) {
                printf("Error - process run ok with --socket-mem and -m specified!\n");
                return -1;
        }
 
+       populate_socket_mem_param(num_sockets + 1, "2", "",
+               invalid_socket_mem, sizeof(invalid_socket_mem));
        if (launch_proc(argv9) == 0) {
                printf("Error - process run ok with extra socket in --socket-mem!\n");
                return -1;
        }
 
+       populate_socket_mem_param(num_sockets, "2", "",
+               valid_socket_mem, sizeof(valid_socket_mem));
        if (launch_proc(argv10) != 0) {
                printf("Error - process failed with valid --socket-mem!\n");
                return -1;
@@ -1221,9 +1468,15 @@ test_eal_flags(void)
                return ret;
        }
 
-       ret = test_missing_n_flag();
+       ret = test_master_lcore_flag();
        if (ret < 0) {
-               printf("Error in test_missing_n_flag()\n");
+               printf("Error in test_master_lcore_flag()\n");
+               return ret;
+       }
+
+       ret = test_invalid_n_flag();
+       if (ret < 0) {
+               printf("Error in test_invalid_n_flag()\n");
                return ret;
        }
 
@@ -1276,11 +1529,7 @@ test_eal_flags(void)
                return ret;
        }
 
-#ifdef RTE_LIBRTE_XEN_DOM0
-       ret = test_dom0_misc_flags();
-#else
        ret = test_misc_flags();
-#endif
        if (ret < 0) {
                printf("Error in test_misc_flags()");
                return ret;
@@ -1289,8 +1538,18 @@ test_eal_flags(void)
        return ret;
 }
 
-static struct test_command eal_flags_cmd = {
-       .command = "eal_flags_autotest",
-       .callback = test_eal_flags,
-};
-REGISTER_TEST_COMMAND(eal_flags_cmd);
+REGISTER_TEST_COMMAND(eal_flags_autotest, test_eal_flags);
+
+/* subtests used in meson for CI */
+REGISTER_TEST_COMMAND(eal_flags_c_opt_autotest, test_missing_c_flag);
+REGISTER_TEST_COMMAND(eal_flags_master_opt_autotest, test_master_lcore_flag);
+REGISTER_TEST_COMMAND(eal_flags_n_opt_autotest, test_invalid_n_flag);
+REGISTER_TEST_COMMAND(eal_flags_hpet_autotest, test_no_hpet_flag);
+REGISTER_TEST_COMMAND(eal_flags_no_huge_autotest, test_no_huge_flag);
+REGISTER_TEST_COMMAND(eal_flags_w_opt_autotest, test_whitelist_flag);
+REGISTER_TEST_COMMAND(eal_flags_b_opt_autotest, test_invalid_b_flag);
+REGISTER_TEST_COMMAND(eal_flags_vdev_opt_autotest, test_invalid_vdev_flag);
+REGISTER_TEST_COMMAND(eal_flags_r_opt_autotest, test_invalid_r_flag);
+REGISTER_TEST_COMMAND(eal_flags_mem_autotest, test_memory_flags);
+REGISTER_TEST_COMMAND(eal_flags_file_prefix_autotest, test_file_prefix);
+REGISTER_TEST_COMMAND(eal_flags_misc_autotest, test_misc_flags);