HIGUCHI Yuta
Committed by Gerrit Code Review

Stop using fixed path /tmp

Change-Id: If0d8048db555cd9872959aaa70d52cc3a9aa864b
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 ~ limitations under the License. 14 ~ limitations under the License.
15 --> 15 -->
16 16
17 -<scenario name="one" description="" logDir="/tmp/junit-stc/one"> 17 +<scenario name="one" description="" logDir="${test.dir}/junit-stc/one">
18 <step name="yolo" exec="some-command args"/> 18 <step name="yolo" exec="some-command args"/>
19 <step name="hello" exec="some-command other args" requires="yolo"/> 19 <step name="hello" exec="some-command other args" requires="yolo"/>
20 </scenario> 20 </scenario>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 ~ See the License for the specific language governing permissions and 13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License. 14 ~ limitations under the License.
15 --> 15 -->
16 -<scenario name="foo" description="Simple Test Scenario" logDir="/tmp/junit-stc/foo"> 16 +<scenario name="foo" description="Simple Test Scenario" logDir="${test.dir}/junit-stc/foo">
17 <group name="alpha" exec="same-command args"> 17 <group name="alpha" exec="same-command args">
18 <step name="one" exec="asdads"/> 18 <step name="one" exec="asdads"/>
19 <step name="two" exec="asdads"/> 19 <step name="two" exec="asdads"/>
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
14 ~ limitations under the License. 14 ~ limitations under the License.
15 --> 15 -->
16 16
17 -<scenario name="two" description="" logDir="/tmp/junit-stc/two"> 17 +<scenario name="two" description="" logDir="${test.dir}/junit-stc/two">
18 <step name="dude" exec="some-command args"/> 18 <step name="dude" exec="some-command args"/>
19 <step name="waz" exec="some-command other args"/> 19 <step name="waz" exec="some-command other args"/>
20 <step name="up" exec="another-command" requires="dude,waz"/> 20 <step name="up" exec="another-command" requires="dude,waz"/>
......