app/test: convert all tests to register system
[dpdk.git] / app / test / test_eal_flags.c
index ef49bd4..2d81764 100644 (file)
@@ -1,40 +1,38 @@
 /*-
  *   BSD LICENSE
- * 
- *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
+ *
+ *   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 
+ *
+ *   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 
+ *
+ *     * 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 
+ *     * 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 
+ *     * 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 
+ *
+ *   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.
- * 
  */
 #include <stdio.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifndef RTE_EXEC_ENV_BAREMETAL
@@ -48,6 +46,7 @@
 #include <dirent.h>
 #include <sys/wait.h>
 #include <sys/file.h>
+#include <limits.h>
 
 #include <rte_debug.h>
 #include <rte_string_fns.h>
@@ -58,6 +57,8 @@
 #define no_hpet "--no-hpet"
 #define no_huge "--no-huge"
 #define no_shconf "--no-shconf"
+#define pci_whitelist "--pci-whitelist"
+#define vdev "--vdev"
 #define memtest "memtest"
 #define memtest1 "memtest1"
 #define memtest2 "memtest2"
@@ -84,7 +85,7 @@ get_hugepage_path(char * src, int src_len, char * dst, int dst_len)
                return 0;
 
        if (strncmp(tokens[2], "hugetlbfs", sizeof("hugetlbfs")) == 0) {
-               rte_snprintf(dst, dst_len, "%s", tokens[1]);
+               snprintf(dst, dst_len, "%s", tokens[1]);
                return 1;
        }
        return 0;
@@ -113,7 +114,7 @@ process_hugefiles(const char * prefix, enum hugepage_action action)
 
        int fd, lck_result, result = 0;
 
-       const int prefix_len = rte_snprintf(hugefile_prefix,
+       const int prefix_len = snprintf(hugefile_prefix,
                        sizeof(hugefile_prefix), "%smap_", prefix);
        if (prefix_len <= 0 || prefix_len >= (int)sizeof(hugefile_prefix)
                        || prefix_len >= (int)sizeof(dirent->d_name)) {
@@ -159,9 +160,9 @@ process_hugefiles(const char * prefix, enum hugepage_action action)
                                {
                                        char file_path[PATH_MAX] = {0};
 
-                                       rte_snprintf(file_path, sizeof(file_path),
+                                       snprintf(file_path, sizeof(file_path),
                                                "%s/%s", hugedir, dirent->d_name);
-                                       
+
                                        /* remove file */
                                        if (remove(file_path) < 0) {
                                                printf("Error deleting %s - %s!\n",
@@ -217,6 +218,7 @@ end:
        return result;
 }
 
+#ifdef RTE_EXEC_ENV_LINUXAPP
 /*
  * count the number of "node*" files in /sys/devices/system/node/
  */
@@ -246,6 +248,7 @@ get_number_of_sockets(void)
        closedir(dir);
        return result;
 }
+#endif
 
 static char*
 get_current_prefix(char * prefix, int size)
@@ -254,35 +257,109 @@ get_current_prefix(char * prefix, int size)
        char buf[PATH_MAX] = {0};
 
        /* get file for config (fd is always 3) */
-       rte_snprintf(path, sizeof(path), "/proc/self/fd/%d", 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 */
-       rte_snprintf(buf, sizeof(buf), "%s", basename(buf));
+       snprintf(buf, sizeof(buf), "%s", basename(buf));
 
        /* copy string all the way from second char up to start of _config */
-       rte_snprintf(prefix, size, "%.*s",
-                       strnlen(buf, sizeof(buf)) - sizeof("_config"), &buf[1]);
+       snprintf(prefix, size, "%.*s",
+                       (int)(strnlen(buf, sizeof(buf)) - sizeof("_config")),
+                       &buf[1]);
 
        return prefix;
 }
 
 /*
- * Test that the app doesn't run without invalid blacklist option.
+ * Test that the app doesn't run with invalid whitelist option.
+ * Final tests ensures it does run with valid options as sanity check (one
+ * test for with Domain+BDF, second for just with BDF)
+ */
+static int
+test_whitelist_flag(void)
+{
+       unsigned i;
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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
+
+       const char *wlinval[][11] = {
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "error", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "0:0:0", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "0:error:0.1", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "0:0:0.1error", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "error0:0:0.1", "", ""},
+               {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                               pci_whitelist, "0:0:0.1.2", "", ""},
+       };
+       /* Test with valid whitelist option */
+       const char *wlval1[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       pci_whitelist, "00FF:09:0B.3"};
+       const char *wlval2[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       pci_whitelist, "09:0B.3", pci_whitelist, "0a:0b.1"};
+       const char *wlval3[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
+                       pci_whitelist, "09:0B.3,type=test",
+                       pci_whitelist, "08:00.1,type=normal",
+       };
+
+       for (i = 0; i < sizeof(wlinval) / sizeof(wlinval[0]); i++) {
+               if (launch_proc(wlinval[i]) == 0) {
+                       printf("Error - process did run ok with invalid "
+                           "whitelist parameter\n");
+                       return -1;
+               }
+       }
+       if (launch_proc(wlval1) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist\n");
+               return -1;
+       }
+       if (launch_proc(wlval2) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist value set\n");
+               return -1;
+       }
+       if (launch_proc(wlval3) != 0 ) {
+               printf("Error - process did not run ok with valid whitelist + args\n");
+               return -1;
+       }
+
+       return 0;
+}
+
+/*
+ * Test that the app doesn't run with invalid blacklist option.
  * Final test ensures it does run with valid options as sanity check
  */
 static int
 test_invalid_b_flag(void)
 {
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
 
        const char *blinval[][9] = {
                {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-b", "error"},
@@ -311,6 +388,53 @@ test_invalid_b_flag(void)
        return 0;
 }
 
+/*
+ *  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)
+{
+       /* Test with invalid vdev option */
+       const char *vdevinval[] = {prgname, "--file-prefix=vdev","-n", "1",
+                               "-c", "1", vdev, "eth_dummy"};
+
+       /* Test with valid vdev option */
+       const char *vdevval1[] = {prgname, "--file-prefix=vdev", "-n", "1",
+       "-c", "1", vdev, "eth_ring0"};
+
+       const char *vdevval2[] = {prgname, "--file-prefix=vdev", "-n", "1",
+       "-c", "1", vdev, "eth_ring0,args=test"};
+
+       const char *vdevval3[] = {prgname, "--file-prefix=vdev", "-n", "1",
+       "-c", "1", vdev, "eth_ring0,nodeaction=r1:0:CREATE"};
+
+       if (launch_proc(vdevinval) == 0) {
+               printf("Error - process did run ok with invalid "
+                       "vdev parameter\n");
+               return -1;
+       }
+
+       if (launch_proc(vdevval1) != 0) {
+               printf("Error - process did not run ok with valid vdev value\n");
+               return -1;
+       }
+
+       if (launch_proc(vdevval2) != 0) {
+               printf("Error - process did not run ok with valid vdev value,"
+                       "with dummy args\n");
+               return -1;
+       }
+
+       if (launch_proc(vdevval3) != 0) {
+               printf("Error - process did not run ok with valid vdev value,"
+                       "with valid args\n");
+               return -1;
+       }
+       return 0;
+}
+#endif
 
 /*
  * Test that the app doesn't run with invalid -r option.
@@ -318,12 +442,17 @@ test_invalid_b_flag(void)
 static int
 test_invalid_r_flag(void)
 {
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
 
        const char *rinval[][9] = {
                        {prgname, prefix, mp_flag, "-n", "1", "-c", "1", "-r", "error"},
@@ -357,12 +486,17 @@ test_invalid_r_flag(void)
 static int
 test_missing_c_flag(void)
 {
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
 
        /* -c flag but no coremask value */
        const char *argv1[] = { prgname, prefix, mp_flag, "-n", "3", "-c"};
@@ -395,12 +529,17 @@ test_missing_c_flag(void)
 static int
 test_missing_n_flag(void)
 {
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
 
        /* -n flag but no value */
        const char *argv1[] = { prgname, prefix, no_huge, no_shconf, "-c", "1", "-n"};
@@ -434,11 +573,15 @@ static int
 test_no_hpet_flag(void)
 {
        char prefix[PATH_MAX], tmp[PATH_MAX];
+
+#ifdef RTE_EXEC_ENV_BSDAPP
+       return 0;
+#endif
        if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
                printf("Error - unable to get current prefix!\n");
                return -1;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
 
        /* With --no-hpet */
        const char *argv1[] = {prgname, prefix, mp_flag, no_hpet, "-c", "1", "-n", "2"};
@@ -463,26 +606,25 @@ test_no_hpet_flag(void)
 static int
 test_no_huge_flag(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;
-       }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* BSD target doesn't support prefixes at this point, and we also need to
+        * run another primary process here */
+       const char * prefix = no_shconf;
+#else
+       const char * prefix = "--file-prefix=nohuge";
+#endif
 
        /* With --no-huge */
-       const char *argv1[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
-                       "--file-prefix=nohuge"};
+       const char *argv1[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2"};
        /* With --no-huge and -m */
-       const char *argv2[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2", "-m", "2",
-                       "--file-prefix=nohuge"};
+       const char *argv2[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2", "-m", "2"};
+
        /* With --no-huge and --socket-mem */
        const char *argv3[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
-                       "--socket-mem=2", "--file-prefix=nohuge"};
+                       "--socket-mem=2"};
        /* With --no-huge, -m and --socket-mem */
        const char *argv4[] = {prgname, prefix, no_huge, "-c", "1", "-n", "2",
-                       "-m", "2", "--socket-mem=2", "--file-prefix=nohuge"};
-
+                       "-m", "2", "--socket-mem=2"};
        if (launch_proc(argv1) != 0) {
                printf("Error - process did not run ok with --no-huge flag\n");
                return -1;
@@ -491,6 +633,11 @@ test_no_huge_flag(void)
                printf("Error - process run ok with --no-huge and -m flags\n");
                return -1;
        }
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* BSD target does not support NUMA, hence no --socket-mem tests */
+       return 0;
+#endif
+
        if (launch_proc(argv3) == 0) {
                printf("Error - process run ok with --no-huge and --socket-mem "
                                "flags\n");
@@ -504,15 +651,125 @@ 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
+       /* BSD target doesn't support prefixes at this point */
+       const char * prefix = "";
+       const char * nosh_prefix = "";
+#else
        char prefix[PATH_MAX], tmp[PATH_MAX];
+       const char * nosh_prefix = "--file-prefix=noshconf";
+       FILE * hugedir_handle = NULL;
+       char line[PATH_MAX] = {0};
+       unsigned i, isempty = 1;
        if (get_current_prefix(tmp, sizeof(tmp)) == NULL) {
                printf("Error - unable to get current prefix!\n");
                return -1;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+
+       /*
+        * get first valid hugepage path
+        */
+
+       /* get hugetlbfs mountpoints from /proc/mounts */
+       hugedir_handle = fopen("/proc/mounts", "r");
+
+       if (hugedir_handle == NULL) {
+               printf("Error opening /proc/mounts!\n");
+               return -1;
+       }
+
+       /* read /proc/mounts */
+       while (fgets(line, sizeof(line), hugedir_handle) != NULL) {
+
+               /* find first valid hugepath */
+               if (get_hugepage_path(line, sizeof(line), hugepath, sizeof(hugepath)))
+                       break;
+       }
+
+       fclose(hugedir_handle);
+
+       /* check if path is not empty */
+       for (i = 0; i < sizeof(hugepath); i++)
+               if (hugepath[i] != '\0')
+                       isempty = 0;
+
+       if (isempty) {
+               printf("No mounted hugepage dir found!\n");
+               return -1;
+       }
+#endif
+
 
        /* check that some general flags don't prevent things from working.
         * All cases, apart from the first, app should run.
@@ -525,6 +782,53 @@ test_misc_flags(void)
        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", "2",
+                       no_shconf, nosh_prefix };
+
+#ifdef RTE_EXEC_ENV_BSDAPP
+       return 0;
+#endif
+       /* With --huge-dir */
+       const char *argv7[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--file-prefix=hugedir", "--huge-dir", hugepath};
+       /* With empty --huge-dir (should fail) */
+       const char *argv8[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--file-prefix=hugedir", "--huge-dir"};
+       /* With invalid --huge-dir */
+       const char *argv9[] = {prgname, "-c", "1", "-n", "2", "-m", "2",
+                       "--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"};
+
+       /* try running with base-virtaddr param */
+       const char *argv11[] = {prgname, "--file-prefix=virtaddr",
+                       "-c", "1", "-n", "2", "--base-virtaddr=0x12345678"};
+
+       /* try running with --vfio-intr INTx flag */
+       const char *argv12[] = {prgname, "--file-prefix=intr",
+                       "-c", "1", "-n", "2", "--vfio-intr=legacy"};
+
+       /* try running with --vfio-intr MSI flag */
+       const char *argv13[] = {prgname, "--file-prefix=intr",
+                       "-c", "1", "-n", "2", "--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"};
+
+       /* try running with --vfio-intr invalid flag */
+       const char *argv15[] = {prgname, "--file-prefix=intr",
+                       "-c", "1", "-n", "2", "--vfio-intr=invalid"};
+
 
        if (launch_proc(argv0) == 0) {
                printf("Error - process ran ok with invalid flag\n");
@@ -538,8 +842,68 @@ test_misc_flags(void)
                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;
+       }
+#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;
+       }
+       if (launch_proc(argv8) == 0) {
+               printf("Error - process run ok with empty --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv9) == 0) {
+               printf("Error - process run ok with invalid --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv10) != 0) {
+               printf("Error - secondary process did not run ok with invalid --huge-dir flag\n");
+               return -1;
+       }
+       if (launch_proc(argv11) != 0) {
+               printf("Error - process did not run ok with --base-virtaddr parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv12) != 0) {
+               printf("Error - process did not run ok with "
+                               "--vfio-intr INTx parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv13) != 0) {
+               printf("Error - process did not run ok with "
+                               "--vfio-intr MSI parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv14) != 0) {
+               printf("Error - process did not run ok with "
+                               "--vfio-intr MSI-X parameter\n");
+               return -1;
+       }
+       if (launch_proc(argv15) == 0) {
+               printf("Error - process run ok with "
+                               "--vfio-intr invalid parameter\n");
+               return -1;
+       }
        return 0;
 }
+#endif
 
 static int
 test_file_prefix(void)
@@ -555,6 +919,10 @@ test_file_prefix(void)
         * 7. check that only memtest2 hugefiles are present in the hugedir
         */
 
+#ifdef RTE_EXEC_ENV_BSDAPP
+       return 0;
+#endif
+
        /* this should fail unless the test itself is run with "memtest" prefix */
        const char *argv0[] = {prgname, mp_flag, "-c", "1", "-n", "2", "-m", "2",
                        "--file-prefix=" memtest };
@@ -572,6 +940,9 @@ test_file_prefix(void)
                printf("Error - unable to get current prefix!\n");
                return -1;
        }
+#ifdef RTE_LIBRTE_XEN_DOM0
+       return 0;
+#endif
 
        /* check if files for current prefix are present */
        if (process_hugefiles(prefix, HUGEPAGE_CHECK_EXISTS) != 1) {
@@ -655,20 +1026,32 @@ test_file_prefix(void)
 static int
 test_memory_flags(void)
 {
+       const char* mem_size = NULL;
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* 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;
        }
-       rte_snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+       snprintf(prefix, sizeof(prefix), "--file-prefix=%s", tmp);
+#endif
+#ifdef RTE_LIBRTE_XEN_DOM0
+       mem_size = "30";
+#else
+       mem_size = "2";
+#endif
 
-       /* valid -m flag */
-       const char *argv0[] = {prgname, "-c", "10", "-n", "2",
-                       "--file-prefix=" memtest, "-m", "2"};
 
        /* valid -m flag and mp flag */
-       const char *argv1[] = {prgname, prefix, mp_flag, "-c", "10",
-                       "-n", "2", "-m", "2"};
+       const char *argv0[] = {prgname, prefix, mp_flag, "-c", "10",
+                       "-n", "2", "-m", mem_size};
+
+       /* valid -m flag */
+       const char *argv1[] = {prgname, "-c", "10", "-n", "2",
+                       "--file-prefix=" memtest, "-m", mem_size};
 
        /* invalid (zero) --socket-mem flag */
        const char *argv2[] = {prgname, "-c", "10", "-n", "2",
@@ -702,39 +1085,44 @@ test_memory_flags(void)
         * 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 */
+
+#ifdef RTE_EXEC_ENV_BSDAPP
+       int i, num_sockets = 1;
+#else
        int i, num_sockets = get_number_of_sockets();
+#endif
 
        if (num_sockets <= 0 || num_sockets > RTE_MAX_NUMA_NODES) {
                printf("Error - cannot get number of sockets!\n");
                return -1;
        }
 
-       rte_snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "--socket-mem=");
+       snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "--socket-mem=");
 
        /* add one extra socket */
        for (i = 0; i < num_sockets + 1; i++) {
-               rte_snprintf(buf, sizeof(buf), "%s2", invalid_socket_mem);
-               rte_snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "%s", buf);
+               snprintf(buf, sizeof(buf), "%s2", invalid_socket_mem);
+               snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "%s", buf);
 
                if (num_sockets + 1 - i > 1) {
-                       rte_snprintf(buf, sizeof(buf), "%s,", invalid_socket_mem);
-                       rte_snprintf(invalid_socket_mem, sizeof(invalid_socket_mem), "%s", buf);
+                       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];
 
-       rte_snprintf(valid_socket_mem, sizeof(valid_socket_mem), "--socket-mem=");
+       snprintf(valid_socket_mem, sizeof(valid_socket_mem), "--socket-mem=");
 
        /* add one extra socket */
        for (i = 0; i < num_sockets; i++) {
-               rte_snprintf(buf, sizeof(buf), "%s2", valid_socket_mem);
-               rte_snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
+               snprintf(buf, sizeof(buf), "%s2", valid_socket_mem);
+               snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
 
                if (num_sockets - i > 1) {
-                       rte_snprintf(buf, sizeof(buf), "%s,", valid_socket_mem);
-                       rte_snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
+                       snprintf(buf, sizeof(buf), "%s,", valid_socket_mem);
+                       snprintf(valid_socket_mem, sizeof(valid_socket_mem), "%s", buf);
                }
        }
 
@@ -747,15 +1135,22 @@ test_memory_flags(void)
                        "--file-prefix=" memtest, valid_socket_mem};
 
        if (launch_proc(argv0) != 0) {
-               printf("Error - process failed with valid -m flag!\n");
+               printf("Error - secondary process failed with valid -m flag !\n");
                return -1;
        }
 
+#ifdef RTE_EXEC_ENV_BSDAPP
+       /* no other tests are applicable to BSD */
+       return 0;
+#endif
+
        if (launch_proc(argv1) != 0) {
-               printf("Error - secondary process failed with valid -m flag !\n");
+               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");
                return -1;
@@ -809,7 +1204,7 @@ test_memory_flags(void)
        return 0;
 }
 
-int
+static int
 test_eal_flags(void)
 {
        int ret = 0;
@@ -838,12 +1233,25 @@ test_eal_flags(void)
                return ret;
        }
 
+       ret = test_whitelist_flag();
+       if (ret < 0) {
+               printf("Error in test_invalid_whitelist_flag()\n");
+               return ret;
+       }
+
        ret = test_invalid_b_flag();
        if (ret < 0) {
                printf("Error in test_invalid_b_flag()\n");
                return ret;
        }
 
+#ifdef RTE_LIBRTE_PMD_RING
+       ret = test_invalid_vdev_flag();
+       if (ret < 0) {
+               printf("Error in test_invalid_vdev_flag()\n");
+               return ret;
+       }
+#endif
        ret = test_invalid_r_flag();
        if (ret < 0) {
                printf("Error in test_invalid_r_flag()\n");
@@ -862,7 +1270,11 @@ 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;
@@ -871,15 +1283,9 @@ test_eal_flags(void)
        return ret;
 }
 
-#else
-/* Baremetal version
- * Multiprocess not applicable, so just return 0 always
- */
-int
-test_eal_flags(void)
-{
-       printf("Multi-process not possible for baremetal, cannot test EAL flags\n");
-       return 0;
-}
-
+static struct test_command eal_flags_cmd = {
+       .command = "eal_flags_autotest",
+       .callback = test_eal_flags,
+};
+REGISTER_TEST_COMMAND(eal_flags_cmd);
 #endif