From 969c9d3b3969dd9ce23133d605ea44a3bb3ce90f Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Wed, 14 May 2008 16:32:44 +0000 Subject: [PATCH] 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 --- test/LLVMC/dg.exp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/LLVMC/dg.exp b/test/LLVMC/dg.exp index 22ecaecbd7b..a2e44b99859 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}]] +} + -- 2.34.1