summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Kiernan <alex.kiernan@gmail.com>2023-12-31 09:31:35 +0000
committerKhem Raj <raj.khem@gmail.com>2023-12-31 08:27:46 -0800
commit1cc4b9a1d6e53c863976a17b8f1a64d986ea012b (patch)
treecd79c274abf88633b816e1a00cec66a1ea17d707
parent7d8115d5507bac6c018fbff8a7aa9bc513c2bc46 (diff)
downloadmeta-openembedded-1cc4b9a1d6e53c863976a17b8f1a64d986ea012b.tar.gz
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 <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/c-ares/c-ares/run-ptest2
1 files changed, 1 insertions, 1 deletions
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 @@
1#!/bin/sh 1#!/bin/sh
2 2
3if ./arestest; then 3if ./arestest --gtest_filter=-*.Live*; then
4 echo "PASS: c-ares" 4 echo "PASS: c-ares"
5else 5else
6 echo "FAIL: c-ares" 6 echo "FAIL: c-ares"