Skip to content

Commit 09bc6cf

Browse files
committed
Do not run the test 'test_run_binary_application' only
for CentOS Stream 10 Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 79c63c8 commit 09bc6cf

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

test/test-lib-nodejs.sh

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -578,13 +578,15 @@ function test_run_hw_application() {
578578
}
579579

580580
function test_run_binary_application() {
581-
if [[ "${VERSION}" == "22" ]] && [[ "${OS}" == "c10s" ]]; then
582-
# This tests is suppressed for version 22
583-
# openssl/engine.h is going to be deprecated and therefore till node-rdkafka is not solve we can skip it.
584-
# https://src.fedoraproject.org/rpms/openssl/c/e67e9d9c40cd2cb9547e539c658e2b63f2736762
585-
# https://pkgs.devel.redhat.com/cgit/rpms/openssl/tree/openssl.spec?h=rhel-10-main#n508
586-
echo "openssl-devel-engine is deprecated. Test is skipped."
587-
return 0
581+
if [[ "${VERSION}" == "22" ]]; then
582+
if [[ "${OS}" == "c10s" ]]; then
583+
# This tests is suppressed for version 22
584+
# openssl/engine.h is going to be deprecated and therefore till node-rdkafka is not solve we can skip it.
585+
# https://src.fedoraproject.org/rpms/openssl/c/e67e9d9c40cd2cb9547e539c658e2b63f2736762
586+
# https://pkgs.devel.redhat.com/cgit/rpms/openssl/tree/openssl.spec?h=rhel-10-main#n508
587+
echo "openssl-devel-engine is deprecated. Test is skipped."
588+
return 0
589+
fi
588590
fi
589591
prepare binary
590592
check_prep_result $? binary || return

0 commit comments

Comments
 (0)