From 1cc4b9a1d6e53c863976a17b8f1a64d986ea012b Mon Sep 17 00:00:00 2001 From: Alex Kiernan Date: Sun, 31 Dec 2023 09:31:35 +0000 Subject: [PATCH] c-ares: Filter out "Live" tests Inside a default `runqemu` there's no resolv.conf, so the "Live" tests fail, exclude them by default. Signed-off-by: Alex Kiernan Signed-off-by: Khem Raj --- meta-oe/recipes-support/c-ares/c-ares/run-ptest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/c-ares/c-ares/run-ptest b/meta-oe/recipes-support/c-ares/c-ares/run-ptest index 15971dec05..46572111b5 100644 --- a/meta-oe/recipes-support/c-ares/c-ares/run-ptest +++ b/meta-oe/recipes-support/c-ares/c-ares/run-ptest @@ -1,6 +1,6 @@ #!/bin/sh -if ./arestest; then +if ./arestest --gtest_filter=-*.Live*; then echo "PASS: c-ares" else echo "FAIL: c-ares"