From 7123d22d7251682f7d788dd1c12e56ef74ea0712 Mon Sep 17 00:00:00 2001 From: Brian Neradt Date: Mon, 14 Nov 2022 17:25:34 +0000 Subject: [PATCH] AuTest: make MakeATSProcess accessible for TestRuns In the past there were limitations with the Traffic Server AuTest process extension which would prevent it from being associated with TestRun objects. That has since been addressed. This change makes it so that the ATS process for our AuTests can be associated with TestRun objects in addition to the larger and currently available Test scope. --- tests/gold_tests/autest-site/trafficserver.test.ext | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/gold_tests/autest-site/trafficserver.test.ext b/tests/gold_tests/autest-site/trafficserver.test.ext index 07d87e8be1d..43f768ef184 100755 --- a/tests/gold_tests/autest-site/trafficserver.test.ext +++ b/tests/gold_tests/autest-site/trafficserver.test.ext @@ -544,3 +544,4 @@ RegisterFileType(Config, "ats:config") RegisterFileType(RecordsConfig, "ats:config:records") ExtendTestRun(chownForATSProcess, name="ChownForATSProcess") ExtendTest(MakeATSProcess, name="MakeATSProcess") +ExtendTestRun(MakeATSProcess, name="MakeATSProcess")