From 910b28ba0e7b06a6aaff175d79cf571d7708195b Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Wed, 6 Nov 2024 09:04:44 -0500 Subject: [PATCH] Try and fix a yaml syntax error The test fails with: line 1: True: command not found This looks like a yaml issue and the string `true` is converted to the canonical value `True`. Try and resolve that by putting the full path to the command. Related: RHEL-6401 --- tests/ci.fmf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci.fmf b/tests/ci.fmf index e263086..7727eba 100644 --- a/tests/ci.fmf +++ b/tests/ci.fmf @@ -6,4 +6,4 @@ prepare: - lttng-ust execute: script: - - true # always pass + - /usr/bin/true # always pass