diff mbox series

[API-NEXT,v1,2/11] validation: ipsec: drop unused file

Message ID 1508493607-25012-3-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [API-NEXT,v1,1/11] linux-gen: ipsec: use counter instead of random IV for GCM | expand

Commit Message

Github ODP bot Oct. 20, 2017, 9:59 a.m. UTC
From: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>


Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 243 (lumag:ipsec-packet-impl-3)
 ** https://github.com/Linaro/odp/pull/243
 ** Patch: https://github.com/Linaro/odp/pull/243.patch
 ** Base sha: e3108af2f0b58c2ceca422b418439bba5de04b11
 ** Merge commit sha: 0b3c6fecf5adbd74ef6dd0c08d541051854b91a4
 **/
 .../validation/api/ipsec/ipsec_sync_in.c           | 27 ----------------------
 1 file changed, 27 deletions(-)
 delete mode 100644 test/common_plat/validation/api/ipsec/ipsec_sync_in.c
diff mbox series

Patch

diff --git a/test/common_plat/validation/api/ipsec/ipsec_sync_in.c b/test/common_plat/validation/api/ipsec/ipsec_sync_in.c
deleted file mode 100644
index 8a7fc4680..000000000
--- a/test/common_plat/validation/api/ipsec/ipsec_sync_in.c
+++ /dev/null
@@ -1,27 +0,0 @@ 
-/* Copyright (c) 2017, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier:     BSD-3-Clause
- */
-
-#include "config.h"
-
-#include "ipsec.h"
-
-int main(int argc, char *argv[])
-{
-	int ret;
-
-	/* parse common options: */
-	if (odp_cunit_parse_options(argc, argv))
-		return -1;
-
-	odp_cunit_register_global_init(ipsec_init);
-	odp_cunit_register_global_term(ipsec_term);
-
-	ret = odp_cunit_register(ipsec_suites);
-	if (ret == 0)
-		ret = odp_cunit_run();
-
-	return ret;
-}