update copyright date to 2013
[dpdk.git] / app / test / commands.c
index b42ca34..123f5b4 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
  *   Redistribution and use in source and binary forms, with or without 
@@ -165,6 +165,10 @@ static void cmd_autotest_parsed(void *parsed_result,
                ret |= test_memcpy_perf();
        if (all || !strcmp(res->autotest, "func_reentrancy_autotest"))
                ret |= test_func_reentrancy();
+       if (all || !strcmp(res->autotest, "pm_autotest"))
+               ret |= test_pmac_pm();
+       if (all || !strcmp(res->autotest, "acl_autotest"))
+               ret |= test_pmac_acl();
 
        if (ret == 0)
                printf("Test OK\n");
@@ -192,7 +196,8 @@ cmdline_parse_token_string_t cmd_autotest_autotest =
                        "version_autotest#eal_fs_autotest#"
                        "cmdline_autotest#func_reentrancy_autotest#"
                        "mempool_perf_autotest#hash_perf_autotest#"
-                       "memcpy_perf_autotest#"
+                       "memcpy_perf_autotest#pm_autotest#"
+                       "acl_autotest#"
                        "all_autotests");
 
 cmdline_parse_inst_t cmd_autotest = {