More fixes for SR-Tofino category

Change-Id: I4fb674fdc66ea23a32885519d3fcc0194b1d9412
diff --git a/TestON/JenkinsFile/CommonJenkinsFile.groovy b/TestON/JenkinsFile/CommonJenkinsFile.groovy
index 59a91ca..f7e2dcb 100644
--- a/TestON/JenkinsFile/CommonJenkinsFile.groovy
+++ b/TestON/JenkinsFile/CommonJenkinsFile.groovy
@@ -124,7 +124,7 @@
 
 def initGraphPaths(){
     graphPaths.put( "trendIndividual", fileRelated.rScriptPaths[ "scripts" ][ "trendIndividual" ] )
-    if ( category == "SR" || category == "SR-StratumBMv2" ){
+    if ( category == "SR" || category == "SR-StratumBMv2" || category == "SR-Tofino" ){
         graphPaths.put( "saveDirectory", fileRelated.workspaces[ "base" ] + "postjob-" + ( testStation - "TestStation-" - "s" ) + "/" )
     } else if ( category == "SRHA" ) {
         graphPaths.put( "saveDirectory", fileRelated.workspaces[ "Fabric" ] )
@@ -235,7 +235,7 @@
     // bash script to copy the logs and other necessary element for SR tests.
 
     result = ""
-    if ( category == "SR" || category == "SR-StratumBMv2" ){
+    if ( category == "SR" || category == "SR-StratumBMv2" || category == "SR-Tofino" ){
         result = '''
       sudo rm /var/jenkins/workspace/SR-log-${WikiPrefix}/*
       sudo cp *karaf.log.* /var/jenkins/workspace/SR-log-${WikiPrefix}/
@@ -322,7 +322,7 @@
     // prefix : branch prefix ( master, 2.1, 1.15 ... )
 
     resultURL = ""
-    if ( category == "SR" || category == "SR-StratumBMv2" ){
+    if ( category == "SR" || category == "SR-StratumBMv2" || category == "SR-Tofino" ){
         def post = build job: "SR-log-" + prefix, propagate: false
         resultURL = post.getAbsoluteUrl()
     }