[llvm-commits] [llvm] r81155 - in /llvm/trunk/test/BugPoint: crash-narrowfunctiontest.ll remove_arguments_test.ll
Daniel Dunbar
daniel at zuster.org
Mon Sep 7 12:26:18 PDT 2009
Author: ddunbar
Date: Mon Sep 7 14:26:18 2009
New Revision: 81155
URL: http://llvm.org/viewvc/llvm-project?rev=81155&view=rev
Log:
Use -output-prefix in bugpoint tests so that outputs go in temp directory (and
we don't race on them).
Modified:
llvm/trunk/test/BugPoint/crash-narrowfunctiontest.ll
llvm/trunk/test/BugPoint/remove_arguments_test.ll
Modified: llvm/trunk/test/BugPoint/crash-narrowfunctiontest.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/BugPoint/crash-narrowfunctiontest.ll?rev=81155&r1=81154&r2=81155&view=diff
==============================================================================
--- llvm/trunk/test/BugPoint/crash-narrowfunctiontest.ll (original)
+++ llvm/trunk/test/BugPoint/crash-narrowfunctiontest.ll Mon Sep 7 14:26:18 2009
@@ -1,6 +1,6 @@
; Test that bugpoint can narrow down the testcase to the important function
;
-; RUN: bugpoint %s -bugpoint-crashcalls -silence-passes > /dev/null
+; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null
define i32 @foo() { ret i32 1 }
Modified: llvm/trunk/test/BugPoint/remove_arguments_test.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/BugPoint/remove_arguments_test.ll?rev=81155&r1=81154&r2=81155&view=diff
==============================================================================
--- llvm/trunk/test/BugPoint/remove_arguments_test.ll (original)
+++ llvm/trunk/test/BugPoint/remove_arguments_test.ll Mon Sep 7 14:26:18 2009
@@ -1,4 +1,4 @@
-; RUN: bugpoint %s -bugpoint-crashcalls -silence-passes
+; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes
; Test to make sure that arguments are removed from the function if they are
; unnecessary.
More information about the llvm-commits
mailing list