lib: add rte_hexdump and remove duplicated code
[dpdk.git] / app / test / test.h
old mode 100644 (file)
new mode 100755 (executable)
index 3c927d2..4de2788
@@ -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 
@@ -30,7 +30,6 @@
  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  * 
- *  version: DPDK.L.1.2.3-3
  */
 
 #ifndef _TEST_H_
@@ -47,8 +46,6 @@ extern const char *prgname;
 
 extern cmdline_parse_ctx_t main_ctx[];
 
-void test_hexdump(const char *title, const void *buf, unsigned int len);
-
 int main(int argc, char **argv);
 
 int test_pci(void);
@@ -64,11 +61,14 @@ int test_logs(void);
 int test_memzone(void);
 int test_ring(void);
 int test_mempool(void);
+int test_mempool_perf(void);
 int test_mbuf(void);
 int test_timer(void);
 int test_malloc(void);
 int test_memcpy(void);
+int test_memcpy_perf(void);
 int test_hash(void);
+int test_hash_perf(void);
 int test_lpm(void);
 int test_debug(void);
 int test_errno(void);
@@ -80,6 +80,12 @@ int test_eal_flags(void);
 int test_alarm(void);
 int test_interrupt(void);
 int test_version(void);
+int test_eal_fs(void);
+int test_cmdline(void);
+int test_func_reentrancy(void);
+int test_pmac_pm(void);
+int test_pmac_acl(void);
+
 int test_pci_run;
 
 #endif