소스 검색

remove log files before benchmarking.

AOYAMA Kazuharu 12 년 전
부모
커밋
c40a664a37
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      treefrog/setup.py

+ 1 - 1
treefrog/setup.py

@@ -19,7 +19,7 @@ def start(args):
   try:
     subprocess.check_call("qmake -r CONFIG+=release", shell=True, cwd="treefrog")
     subprocess.check_call("make", shell=True, cwd="treefrog")
-    subprocess.check_call("rm -f ./*.log", shell=True, cwd="treefrog/log")
+    subprocess.check_call("rm -f log/*.log", shell=True, cwd="treefrog")
     subprocess.check_call("treefrog -d " + home + "/FrameworkBenchmarks/treefrog", shell=True)
     return 0
   except subprocess.CalledProcessError: