From d494d13c1aace0049667c1a1c1d545f874e2557d Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 21 Apr 2026 18:32:35 +0100 Subject: [PATCH] Fix functionality test to use CMake for build --- tests/sanity_test/runtest.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/sanity_test/runtest.sh b/tests/sanity_test/runtest.sh index 2e9f995..ee3bba5 100755 --- a/tests/sanity_test/runtest.sh +++ b/tests/sanity_test/runtest.sh @@ -86,8 +86,9 @@ rlJournalStart rlPhaseStartTest # Test if architecture is supported if [ $ARCH = "i386" -o $ARCH="x86_64" ] ; then + rlRun "dnf install -y cmake" 0 "Install CMake to build test" # Make and make fibonacci - rlRun "pushd .${tbb_prefix}/oneTBB*/examples/test_all/fibonacci; make ${FLAGS}" 0 \ + rlRun "pushd .${tbb_prefix}/oneTBB*/examples/test_all/fibonacci; cmake .; make ${FLAGS}" 0 \ "Enter fibonacci example directory and make" # Run the fibonacci test rlRun "./fibonacci" 0 \