update Intel copyright years to 2014
[dpdk.git] / app / test / commands.c
index f36533f..4770817 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
  *   Redistribution and use in source and binary forms, with or without
@@ -182,6 +182,11 @@ static void cmd_autotest_parsed(void *parsed_result,
                ret |= test_power();
        if (all || !strcmp(res->autotest, "common_autotest"))
                ret |= test_common();
+#ifdef RTE_LIBRTE_PMD_RING
+       if (all || !strcmp(res->autotest, "ring_pmd_autotest"))
+               ret |= test_pmd_ring();
+#endif /* RTE_LIBRTE_PMD_RING */
+
 #ifdef RTE_LIBRTE_ACL
        if (all || !strcmp(res->autotest, "acl_autotest"))
                ret |= test_acl();
@@ -223,6 +228,9 @@ cmdline_parse_token_string_t cmd_autotest_autotest =
 #endif
                        "power_autotest#"
                        "timer_perf_autotest#"
+#ifdef RTE_LIBRTE_PMD_RING
+                       "ring_pmd_autotest#"
+#endif
                        "common_autotest#all_autotests");
 
 cmdline_parse_inst_t cmd_autotest = {