aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Uvarov <maxim.uvarov@linaro.org>2018-11-27 18:01:38 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-11-28 10:31:29 +0300
commit8511e88c69f5bf7cd251875610370aa334878788 (patch)
tree42132505f66f4317da6e5a0c8225ec776a282ca4
parent898d834f8c7164e4ee1a99fbe9115b3c7ca5bd67 (diff)
linux-gen: drop performance.m4next
performance.m4 which provides --enable-test-perf-proc is not needed now because process mode is tested with standard tests. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org>
-rw-r--r--platform/linux-generic/m4/configure.m42
-rw-r--r--platform/linux-generic/m4/performance.m410
2 files changed, 0 insertions, 12 deletions
diff --git a/platform/linux-generic/m4/configure.m4 b/platform/linux-generic/m4/configure.m4
index c3aa73963..1dd14cd4d 100644
--- a/platform/linux-generic/m4/configure.m4
+++ b/platform/linux-generic/m4/configure.m4
@@ -20,8 +20,6 @@ m4_include([platform/linux-generic/m4/odp_netmap.m4])
m4_include([platform/linux-generic/m4/odp_dpdk.m4])
ODP_SCHEDULER
-m4_include([platform/linux-generic/m4/performance.m4])
-
AC_CONFIG_COMMANDS_PRE([dnl
AM_CONDITIONAL([PLATFORM_IS_LINUX_GENERIC],
[test "${with_platform}" = "linux-generic"])
diff --git a/platform/linux-generic/m4/performance.m4 b/platform/linux-generic/m4/performance.m4
deleted file mode 100644
index f2e7107c0..000000000
--- a/platform/linux-generic/m4/performance.m4
+++ /dev/null
@@ -1,10 +0,0 @@
-##########################################################################
-# Enable/disable test-perf-proc
-##########################################################################
-AC_ARG_ENABLE([test-perf-proc],
- [AS_HELP_STRING([--enable-test-perf-proc], [run test in test/performance in process mode])],
- [test_perf_proc=$enableval],
- [test_perf_proc=yes])
-AC_CONFIG_COMMANDS_PRE([dnl
-AM_CONDITIONAL([test_perf_proc], [test x$test_perf_proc = xyes ])
-])