From e1b8f6cf2726a10ed7d43a1e090de91f8a473a90 Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Tue, 4 Dec 2018 15:51:40 +0000 Subject: tests: Add pseudo platform test Provide an initial test which can run as part of the test suite. This test will report the platform and kernel version, along with the identified paths of required utilities. This will aid in ensuring that required tools are available on a running platform - and report the kernel and platform details in any test suite output for clarification of results. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart [Don't depend on columns] Signed-off-by: Laurent Pinchart --- tests/vsp-unit-test-0000.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 tests/vsp-unit-test-0000.sh diff --git a/tests/vsp-unit-test-0000.sh b/tests/vsp-unit-test-0000.sh new file mode 100755 index 0000000..5f40af7 --- /dev/null +++ b/tests/vsp-unit-test-0000.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# Report testing conditions + +model=$(cat /sys/firmware/devicetree/base/model) + +echo "Test Conditions:" + +echo " Platform: " "$model" +echo " Kernel release: " $(uname -r) +echo " convert: " $(which convert) +echo " compare: " $(which compare) +echo " killall: " $(which killall) +echo " raw2rgbpnm: " $(which raw2rgbpnm) +echo " stress: " $(which stress) +echo " yavta: " $(which yavta) -- cgit v1.2.3