aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2007-07-23 15:23:35 +0000
committerDuncan Sands <baldrick@free.fr>2007-07-23 15:23:35 +0000
commita524e0e63d6c78172343ab58e89300e1c640595e (patch)
treee651cd411e0304b8fdbbbe779b4648d00b8aba7b /test/C++Frontend
parent2ceab5231631b03fa9f23363c1b10f031e877482 (diff)
downloadexternal_llvm-a524e0e63d6c78172343ab58e89300e1c640595e.zip
external_llvm-a524e0e63d6c78172343ab58e89300e1c640595e.tar.gz
external_llvm-a524e0e63d6c78172343ab58e89300e1c640595e.tar.bz2
The Ada f-e produces various auxiliary output files
that cannot be suppressed and cannot be redirected: they are dumped in the current working directory. When running the testsuite this means that these files do not end up in the Output directory. The best solution I could find is to change directory into Output before running tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-rw-r--r--test/C++Frontend/2006-11-30-NoCompileUnit.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/C++Frontend/2006-11-30-NoCompileUnit.cpp b/test/C++Frontend/2006-11-30-NoCompileUnit.cpp
index 993ceb4..4203ab1 100644
--- a/test/C++Frontend/2006-11-30-NoCompileUnit.cpp
+++ b/test/C++Frontend/2006-11-30-NoCompileUnit.cpp
@@ -1,12 +1,12 @@
// This is a regression test on debug info to make sure we don't hit a compile
// unit size issue with gdb.
// RUN: %llvmgcc -S -O0 -g %s -o - | llvm-as | \
-// RUN: llc --disable-fp-elim -o Output/NoCompileUnit.s -f
-// RUN: as Output/NoCompileUnit.s -o Output/NoCompileUnit.o
-// RUN: g++ Output/NoCompileUnit.o -o Output/NoCompileUnit.exe
+// RUN: llc --disable-fp-elim -o NoCompileUnit.s -f
+// RUN: as NoCompileUnit.s -o NoCompileUnit.o
+// RUN: g++ NoCompileUnit.o -o NoCompileUnit.exe
// RUN: echo {break main\nrun\np NoCompileUnit::pubname} > %t2
-// RUN: gdb -q -batch -n -x %t2 Output/NoCompileUnit.exe | \
-// RUN: tee Output/NoCompileUnit.out | not grep {"low == high"}
+// RUN: gdb -q -batch -n -x %t2 NoCompileUnit.exe | \
+// RUN: tee NoCompileUnit.out | not grep {"low == high"}
// XFAIL: alpha|ia64|arm