From 74f309f00ee86d768378573598cb9c338fffbd9f Mon Sep 17 00:00:00 2001 From: Ittay Stern Date: Tue, 3 Dec 2019 20:38:44 +0200 Subject: Sink all Async-Jobs logging to same debug.log Error events are _replicated_ to error.log Main incentive is to have all JobWorker, ResourceCommand and MsoResultHandlerService logging the job life-cycle on same page. Issue-ID: VID-253 Change-Id: I862b408d71767ca3d5e6da3071bbae751261587e Signed-off-by: Ittay Stern --- vid-automation/TestNg-ApiTest.xml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'vid-automation') diff --git a/vid-automation/TestNg-ApiTest.xml b/vid-automation/TestNg-ApiTest.xml index 641f3eba6..e0ca82cb8 100644 --- a/vid-automation/TestNg-ApiTest.xml +++ b/vid-automation/TestNg-ApiTest.xml @@ -20,6 +20,10 @@ "underDevelopment" }; + String [] testClassesToRunAlways = new String [] { + "LoggerFormatTest" + }; + String [] classes1 = new String [] { "AsyncInstantiationALaCarteApiTest" }; @@ -34,6 +38,10 @@ if (methodClass.contains("org.onap.vid.api.Base")) return true; + for (c: testClassesToRunAlways) { + if (methodClass.endsWith(c)) return true; // repeat in any selectPart value + } + for (c: classes1) { if (methodClass.endsWith(c)) return selectPart==1; } -- cgit 1.2.3-korg