From 8a2ff470a987aed89a8556706528a33efdcb60e2 Mon Sep 17 00:00:00 2001 From: Serris Lew Date: Wed, 4 Jan 2023 13:14:03 -0800 Subject: [PATCH 1/2] Remove dns_host_down autest from 9.2.x --- tests/gold_tests/dns/dns_host_down.test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/gold_tests/dns/dns_host_down.test.py b/tests/gold_tests/dns/dns_host_down.test.py index 08865a76bc3..cac73e32477 100644 --- a/tests/gold_tests/dns/dns_host_down.test.py +++ b/tests/gold_tests/dns/dns_host_down.test.py @@ -22,6 +22,10 @@ Test.Summary = ''' Verify ATS handles down origin servers with cached domain correctly. ''' +# This test is dependent on the new HostDB restructure that is not in 9.2.x. +# The code is still applicable for 9.2.x but the autest created to show its +# functionality is a workaround that only applies to 10-Dev. +Test.SkipIf(Condition.true("This test depends on new HostDB restructure")) class DownCachedOriginServerTest: From 6c94e76d6a6ae1ea6b31ce1954695c780ed7c880 Mon Sep 17 00:00:00 2001 From: Serris Lew Date: Fri, 6 Jan 2023 14:17:30 -0800 Subject: [PATCH 2/2] Reword explanation --- tests/gold_tests/dns/dns_host_down.test.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/gold_tests/dns/dns_host_down.test.py b/tests/gold_tests/dns/dns_host_down.test.py index cac73e32477..d0c5bf12664 100644 --- a/tests/gold_tests/dns/dns_host_down.test.py +++ b/tests/gold_tests/dns/dns_host_down.test.py @@ -23,8 +23,9 @@ Verify ATS handles down origin servers with cached domain correctly. ''' # This test is dependent on the new HostDB restructure that is not in 9.2.x. -# The code is still applicable for 9.2.x but the autest created to show its -# functionality is a workaround that only applies to 10-Dev. +# The production patch associated with this test is still applicable for 9.2.x +# but the autest created to show its functionality relies upon the restructured +# HostDB's relationship with down nameservers, which only applies to 10-Dev. Test.SkipIf(Condition.true("This test depends on new HostDB restructure"))