mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-29 06:30:39 +00:00
Remove -fexceptions from llvmc tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110999 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e027cb6ed
commit
eb6ed3f89d
@ -1,7 +1,7 @@
|
||||
// Check that hooks can be invoked from 'append_cmd'.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Check that the compilation graph can be empty.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// http://llvm.org/bugs/show_bug.cgi?id=4157
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: not grep {FOO")));} %t
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// The dummy tool and graph are required to silence warnings.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// http://llvm.org/bugs/show_bug.cgi?id=4159
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// The dummy tool and graph are required to silence warnings.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// The dummy tool and graph are required to silence warnings.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Check that hooks with arguments work.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Check that a hook can be given $INFILE as an argument.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Check that (init true/false) and (init "str") work.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// The dummy tool and graph are required to silence warnings.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Check that multiple compilation graphs are allowed.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Check that tools without associated actions are accepted.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// Check that the compilation graph is not required.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -2,7 +2,7 @@
|
||||
// The dummy tool and graph are required to silence warnings.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Test for the OptionPreprocessor and related functionality.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
// XFAIL: vg_leak
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
@ -1,7 +1,7 @@
|
||||
// Check that hooks can be invoked from 'output_suffix'.
|
||||
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
|
||||
// RUN: FileCheck -input-file %t %s
|
||||
// RUN: %compile_cxx -fexceptions -x c++ %t
|
||||
// RUN: %compile_cxx -x c++ %t
|
||||
|
||||
include "llvm/CompilerDriver/Common.td"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user