diff mbox series

[meta-oe,1/2] c-ares: Filter out "Live" tests

Message ID 20231231093136.15425-1-alex.kiernan@gmail.com
State Accepted
Headers show
Series [meta-oe,1/2] c-ares: Filter out "Live" tests | expand

Commit Message

Alex Kiernan Dec. 31, 2023, 9:31 a.m. UTC
Inside a default `runqemu` there's no resolv.conf, so the "Live" tests
fail, exclude them by default.

Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
---

 meta-oe/recipes-support/c-ares/c-ares/run-ptest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 15971dec058c..46572111b5cf 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"