aboutsummaryrefslogtreecommitdiff
path: root/test/common_plat/validation/api/packet/packet_main.c
diff options
context:
space:
mode:
authorChristophe Milard <christophe.milard@linaro.org>2016-07-13 21:50:41 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-07-21 16:02:40 +0300
commitefa6bc89a4e7a5823a3c8c27fcdc9573d7ac5694 (patch)
treef54ae4d3df7f05b6ad83d665c721ff4b5b8cae82 /test/common_plat/validation/api/packet/packet_main.c
parentc79b041f389e56a2c713a507b75762e08d75e4b4 (diff)
validation: moving api validation tests to prepare for new interfaces
API tests are now moved to test/common_plat/validation/api (from test/validation), The reason for this move is two folded: * Moving down validation to all-plaforms/validation disambiguates the meaning of validation (which up to now was referring to both platform agnostic tests and to the set of tests to pass to be ODP compatible). Now things in test/common_plat/ are platform agnostic. So test/common_plat/validation/* are platform agnostic things for the validation tests, as much as test/common_plat/performance are platform agnostic things for the performance tests. * creating the api directory under "validation" simply enable adding other interfaces (such as future drv) as part of the validation tests Signed-off-by: Christophe Milard <christophe.milard@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Reviewed-and-tested-by: Yi He <yi.he@linaro.org> Reviewed-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'test/common_plat/validation/api/packet/packet_main.c')
-rw-r--r--test/common_plat/validation/api/packet/packet_main.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/common_plat/validation/api/packet/packet_main.c b/test/common_plat/validation/api/packet/packet_main.c
new file mode 100644
index 000000000..511bb104b
--- /dev/null
+++ b/test/common_plat/validation/api/packet/packet_main.c
@@ -0,0 +1,12 @@
+/* Copyright (c) 2015, Linaro Limited
+ * All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#include "packet.h"
+
+int main(int argc, char *argv[])
+{
+ return packet_main(argc, argv);
+}