app: no more bare metal environment
[dpdk.git] / app / test / test_interrupts.c
index 31f3d26..6e3dec3 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
@@ -35,8 +35,6 @@
 #include <stdint.h>
 #include <unistd.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_cycles.h>
 #include <rte_interrupts.h>
@@ -159,7 +157,7 @@ test_interrupt_handle_compare(struct rte_intr_handle *intr_handle_l,
 }
 
 #else
-/* to be implemented for baremetal later */
+/* to be implemented for bsd later */
 static inline int
 test_interrupt_handle_sanity_check(struct rte_intr_handle *intr_handle)
 {
@@ -397,7 +395,7 @@ test_interrupt_full_path_check(enum test_interrupt_handle_type intr_type)
 /**
  * Main function of testing interrupt.
  */
-int
+static int
 test_interrupt(void)
 {
        int ret = -1;
@@ -550,3 +548,8 @@ out:
        return ret;
 }
 
+static struct test_command interrupt_cmd = {
+       .command = "interrupt_autotest",
+       .callback = test_interrupt,
+};
+REGISTER_TEST_COMMAND(interrupt_cmd);