diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-05-14 16:32:44 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-05-14 16:32:44 +0000 |
commit | 969c9d3b3969dd9ce23133d605ea44a3bb3ce90f (patch) | |
tree | 475c5705f5f80a1077d1e99e7957a717395f0d6d /test | |
parent | 2010b3eea608c420337a94b18899e9e378913edb (diff) |
Check if llvm-gcc is available before running tests. Patch by Matthijs Kooijman!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/LLVMC/dg.exp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/LLVMC/dg.exp b/test/LLVMC/dg.exp index 22ecaecbd7..a2e44b9985 100644 --- a/test/LLVMC/dg.exp +++ b/test/LLVMC/dg.exp @@ -1,3 +1,10 @@ load_lib llvm.exp -RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{c,cpp}]] +if [ llvm_gcc_supports c ] then { + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{c}]] +} + +if [ llvm_gcc_supports c++ ] then { + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{cpp}]] +} + |