From 0d0f7ce8f55529a767f2abc80d520d360a2b118d Mon Sep 17 00:00:00 2001 From: Madhura Jayaraman Date: Wed, 9 Oct 2024 13:37:06 -0700 Subject: [PATCH] Filter out deep link tests --- cobalt/black_box_tests/black_box_tests.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cobalt/black_box_tests/black_box_tests.py b/cobalt/black_box_tests/black_box_tests.py index c2295f529513..f86e5ad2b55f 100755 --- a/cobalt/black_box_tests/black_box_tests.py +++ b/cobalt/black_box_tests/black_box_tests.py @@ -188,8 +188,10 @@ def LoadTests(launcher_params, test_set): if launcher.SupportsSuspendResume(): test_targets += _TESTS_NEEDING_SYSTEM_SIGNAL - if launcher.SupportsDeepLink(): - test_targets += _TESTS_NEEDING_DEEP_LINK + # disabled due to deep linking break after posixification of sockets + # and we don't support deep links + # if launcher.SupportsDeepLink(): + # test_targets += _TESTS_NEEDING_DEEP_LINK if test_set in ['all', 'wpt']: test_targets += _WPT_TESTS