This test was doing nothing as it could not find the telemetry client
script following the test suite rework.
Caught while looking at UNH unit test logs:
/root/workspace/Generic-Unit-Test-DPDK/dpdk/app/test/suites/test_telemetry.sh:
18: /root/workspace/Generic-Unit-Test-DPDK/dpdk/app/usertools/dpdk-telemetry.py:
not found
Fixes: 9da71dc4f96e ("test: add test case for scripted telemetry commands")
Cc: [email protected]
Signed-off-by: David Marchand <[email protected]>
Acked-by: Bruce Richardson <[email protected]>
Reviewed-by: Marat Khalili <[email protected]>
---
.mailmap | 1 +
app/test/suites/test_telemetry.sh | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.mailmap b/.mailmap
index 34a99f93a1..d4c04f3b81 100644
--- a/.mailmap
+++ b/.mailmap
@@ -955,6 +955,7 @@ Manish Chopra <[email protected]>
Manish Kurup <[email protected]>
Manish Tomar <[email protected]>
Mao Jiang <[email protected]>
+Marat Khalili <[email protected]>
Marcel Apfelbaum <[email protected]>
Marcel Cornu <[email protected]>
Marcelo Ricardo Leitner <[email protected]>
diff --git a/app/test/suites/test_telemetry.sh
b/app/test/suites/test_telemetry.sh
index ca6abe266e..20806b43e4 100755
--- a/app/test/suites/test_telemetry.sh
+++ b/app/test/suites/test_telemetry.sh
@@ -7,7 +7,7 @@ which jq || {
exit 77
}
-rootdir=$(readlink -f $(dirname $(readlink -f $0))/../..)
+rootdir=$(readlink -f $(dirname $(readlink -f $0))/../../..)
tmpoutput=$(mktemp -t dpdk.test_telemetry.XXXXXX)
trap "cat $tmpoutput; rm -f $tmpoutput" EXIT
--
2.50.0