diff options
author | wu.zhihui <wu.zhihui1@zte.com.cn> | 2016-11-03 11:13:04 +0800 |
---|---|---|
committer | wu.zhihui <wu.zhihui1@zte.com.cn> | 2016-11-03 11:13:04 +0800 |
commit | f0f95b1d320a744b258a609f051d807f83dea09c (patch) | |
tree | be7843baca91e6d2b7f969af24cf01cdc3a2cf42 /benchmarks/perftest/whetstone.yaml | |
parent | 268c946642da7cce5801be983a032ea3993a0850 (diff) |
Fix typo and bugs in perftest
Change-Id: I36dfb9c2d69cd071cfb8567c5c965144288b3407
Signed-off-by: wu.zhihui <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'benchmarks/perftest/whetstone.yaml')
-rw-r--r-- | benchmarks/perftest/whetstone.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/benchmarks/perftest/whetstone.yaml b/benchmarks/perftest/whetstone.yaml index 4dcddb99..94532841 100644 --- a/benchmarks/perftest/whetstone.yaml +++ b/benchmarks/perftest/whetstone.yaml @@ -19,13 +19,13 @@ register: home_dir - name: cleaning tempT directory - file: path=$HOME/tempT state=absent + file: path={{home_dir.stdout}}/tempT state=absent - name: cleaning qtip result directory - file: path=$HOME/qtip_result state=absent + file: path={{home_dir.stdout}}/qtip_result state=absent - name: making qtip_result directory - file: path=$HOME/qtip_result state=directory + file: path={{home_dir.stdout}}/qtip_result state=directory - include: ./common/sys_proxy_pbook.yaml @@ -88,10 +88,10 @@ with_items: "{{copy_log_results.stdout_lines}}" - name: cleaning tempT directory - file: path=$HOME/tempT state=absent + file: path={{home_dir.stdout}}/tempT state=absent - name: cleaning qtip result directory - file: path=$HOME/qtip_result state=absent + file: path={{home_dir.stdout}}/qtip_result state=absent - hosts: localhost connection: local @@ -108,4 +108,4 @@ shell: ( find {{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp/ -name "*.log" | xargs cp -t {{workingdir}}/{{Dest_dir}}/whetstone/logs) - name: removing whetstone_temp - file: {{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp state=absent + file: path={{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp state=absent |