Stop using fixed path /tmp

Change-Id: If0d8048db555cd9872959aaa70d52cc3a9aa864b
diff --git a/utils/stc/src/test/resources/org/onlab/stc/one-scenario.xml b/utils/stc/src/test/resources/org/onlab/stc/one-scenario.xml
index e5cb6f2..182397b 100644
--- a/utils/stc/src/test/resources/org/onlab/stc/one-scenario.xml
+++ b/utils/stc/src/test/resources/org/onlab/stc/one-scenario.xml
@@ -14,7 +14,7 @@
   ~ limitations under the License.
   -->
 
-<scenario name="one" description="" logDir="/tmp/junit-stc/one">
+<scenario name="one" description="" logDir="${test.dir}/junit-stc/one">
     <step name="yolo" exec="some-command args"/>
     <step name="hello" exec="some-command other args" requires="yolo"/>
 </scenario>
\ No newline at end of file
diff --git a/utils/stc/src/test/resources/org/onlab/stc/simple-scenario.xml b/utils/stc/src/test/resources/org/onlab/stc/simple-scenario.xml
index c70fe87..b81b03f 100644
--- a/utils/stc/src/test/resources/org/onlab/stc/simple-scenario.xml
+++ b/utils/stc/src/test/resources/org/onlab/stc/simple-scenario.xml
@@ -13,7 +13,7 @@
   ~ See the License for the specific language governing permissions and
   ~ limitations under the License.
   -->
-<scenario name="foo" description="Simple Test Scenario" logDir="/tmp/junit-stc/foo">
+<scenario name="foo" description="Simple Test Scenario" logDir="${test.dir}/junit-stc/foo">
     <group name="alpha" exec="same-command args">
         <step name="one" exec="asdads"/>
         <step name="two" exec="asdads"/>
diff --git a/utils/stc/src/test/resources/org/onlab/stc/two-scenario.xml b/utils/stc/src/test/resources/org/onlab/stc/two-scenario.xml
index 0d6135d..7ecafa1 100644
--- a/utils/stc/src/test/resources/org/onlab/stc/two-scenario.xml
+++ b/utils/stc/src/test/resources/org/onlab/stc/two-scenario.xml
@@ -14,7 +14,7 @@
   ~ limitations under the License.
   -->
 
-<scenario name="two" description="" logDir="/tmp/junit-stc/two">
+<scenario name="two" description="" logDir="${test.dir}/junit-stc/two">
     <step name="dude" exec="some-command args"/>
     <step name="waz" exec="some-command other args"/>
     <step name="up" exec="another-command" requires="dude,waz"/>