From 630b55e40aaa95cc00d01c5e84d6d80db6d9520c Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Thu, 16 Dec 2021 17:08:30 -0800 Subject: [PATCH] cmocka/test-all-defconfig.sh: add banners between platforms Sample output: [ 97%] Built target acos_32b_fixed [ 98%] Linking C executable volume_process [ 98%] Built target volume_process [100%] Linking C executable strcheck [100%] Built target strcheck ========= Building cmocka tests for broadwell_defconfig ====== + cmake -DINIT_CONFIG=broadwell_defconfig -S /srv/mherber2/SOFub20/sof -B build_ut_defs/broadwell_defconfig -DBUILD_UNIT_TESTS=ON -DBUILD_UNIT_TESTS_HOST=ON -- version.cmake starting SOF build at 2021-12-17T01:09:44Z UTC -- Building git commit with parent(s): Signed-off-by: Marc Herbert --- test/test-all-defconfigs.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/test-all-defconfigs.sh b/test/test-all-defconfigs.sh index 96a82bff4..aaba12783 100755 --- a/test/test-all-defconfigs.sh +++ b/test/test-all-defconfigs.sh @@ -12,6 +12,8 @@ rebuild_config() { local conf="$1" mkdir -p "$BUILDTOP" + printf '\n ========= Building native cmocka tests for %s ======\n\n' "$conf" + ( set -x cmake -DINIT_CONFIG="$conf" -S "$SOFTOP" -B "$BUILDTOP"/"$conf" \ -DBUILD_UNIT_TESTS=ON \ @@ -33,6 +35,7 @@ main() # Now run all the tests for d in "$BUILDTOP"/*_defconfig; do + printf '\n\n ========= Running native cmocka tests in %s ======\n\n' "$d" ( set -x cmake --build "$d" -- test )