From 54b5b1d8fc99376fccbbcb471825012dfa1e4017 Mon Sep 17 00:00:00 2001 From: Dan Liew Date: Tue, 14 Jan 2014 18:06:52 +0000 Subject: Fixed test cases that fail if using an in-source build --- test/Coverage/ReadArgs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/Coverage/ReadArgs.c') diff --git a/test/Coverage/ReadArgs.c b/test/Coverage/ReadArgs.c index 7ebf056e..ddfb1747 100644 --- a/test/Coverage/ReadArgs.c +++ b/test/Coverage/ReadArgs.c @@ -1,8 +1,8 @@ // RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc -// RUN: rm -rf xxx -// RUN: echo " --output-dir=xxx " > %t1.args +// RUN: rm -rf %T/xxx +// RUN: echo " --output-dir=%T/xxx " > %t1.args // RUN: %klee --read-args %t1.args %t1.bc -// RUN: test -d xxx +// RUN: test -d %T/xxx int main() { return 0; -- cgit 1.4.1