Revert "net:tc add dup testcases"
authorAhreum Jeong <ahreum.jeong@samsung.com>
Tue, 26 Sep 2017 06:17:26 +0000 (15:17 +0900)
committerAhreum Jeong <ahreum.jeong@samsung.com>
Tue, 26 Sep 2017 06:18:26 +0000 (15:18 +0900)
This reverts commit 43f0771693275fe3ea141a5c0869c6da111e21a2.

Missed a main file for this commit. This will be merged including that file later.

apps/examples/testcase/le_tc/network/Kconfig
apps/examples/testcase/le_tc/network/Make.defs
apps/examples/testcase/le_tc/network/network_tc_main.c

index 77bdb4a..43adc03 100644 (file)
@@ -36,7 +36,6 @@ config TC_NET_ALL
        select TC_NET_INET
        select TC_NET_ETHER
        select TC_NET_NETDB
-       select TC_NET_DUP
 
 config TC_NET_SOCKET
        bool "socket() api"
@@ -122,9 +121,6 @@ config TC_NET_NETDB
        bool "netdb() api"
        default n
 
-config TC_NET_DUP
-       bool "dup() api"
-       default n
 
 
 endif #EXAMPLES_TESTCASE_NETWORK
index 3d1fc5a..6b31e7b 100644 (file)
@@ -119,9 +119,6 @@ endif
 ifeq ($(CONFIG_TC_NET_NETDB),y)
 CSRCS +=tc_net_netdb.c
 endif
-ifeq ($(CONFIG_TC_NET_DUP),y)
-CSRCS +=tc_net_dup.c
-endif
 
 # Include network build support
 
index 6427fcf..5aded54 100644 (file)
@@ -110,9 +110,6 @@ int network_tc_main(int argc, char *argv[])
 #ifdef CONFIG_TC_NET_NETDB
        net_netdb_main();
 #endif
-#ifdef CONFIG_TC_NET_DUP
-       net_dup_main();
-#endif
 
        printf("\n=== TINYARA Network TC COMPLETE ===\n");
        printf("\t\tTotal pass : %d\n\t\tTotal fail : %d\n", total_pass, total_fail);