From 92dabb5710dd9efa598a4f26293d069dd6f05e49 Mon Sep 17 00:00:00 2001 From: Andrew Kaylor Date: Tue, 3 Mar 2015 22:33:39 +0000 Subject: [PATCH] Moving WinEH outlining tests to an architecture neutral location git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231155 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/{X86 => WinEH}/cppeh-catch-all.ll | 0 test/CodeGen/{X86 => WinEH}/cppeh-catch-scalar.ll | 0 test/CodeGen/{X86 => WinEH}/cppeh-frame-vars.ll | 0 test/CodeGen/{X86 => WinEH}/cppeh-inalloca.ll | 0 test/CodeGen/{X86 => WinEH}/cppeh-min-unwind.ll | 0 .../{X86 => WinEH}/cppeh-nonalloca-frame-values.ll | 0 test/CodeGen/WinEH/lit.local.cfg | 12 ++++++++++++ 7 files changed, 12 insertions(+) rename test/CodeGen/{X86 => WinEH}/cppeh-catch-all.ll (100%) rename test/CodeGen/{X86 => WinEH}/cppeh-catch-scalar.ll (100%) rename test/CodeGen/{X86 => WinEH}/cppeh-frame-vars.ll (100%) rename test/CodeGen/{X86 => WinEH}/cppeh-inalloca.ll (100%) rename test/CodeGen/{X86 => WinEH}/cppeh-min-unwind.ll (100%) rename test/CodeGen/{X86 => WinEH}/cppeh-nonalloca-frame-values.ll (100%) create mode 100644 test/CodeGen/WinEH/lit.local.cfg diff --git a/test/CodeGen/X86/cppeh-catch-all.ll b/test/CodeGen/WinEH/cppeh-catch-all.ll similarity index 100% rename from test/CodeGen/X86/cppeh-catch-all.ll rename to test/CodeGen/WinEH/cppeh-catch-all.ll diff --git a/test/CodeGen/X86/cppeh-catch-scalar.ll b/test/CodeGen/WinEH/cppeh-catch-scalar.ll similarity index 100% rename from test/CodeGen/X86/cppeh-catch-scalar.ll rename to test/CodeGen/WinEH/cppeh-catch-scalar.ll diff --git a/test/CodeGen/X86/cppeh-frame-vars.ll b/test/CodeGen/WinEH/cppeh-frame-vars.ll similarity index 100% rename from test/CodeGen/X86/cppeh-frame-vars.ll rename to test/CodeGen/WinEH/cppeh-frame-vars.ll diff --git a/test/CodeGen/X86/cppeh-inalloca.ll b/test/CodeGen/WinEH/cppeh-inalloca.ll similarity index 100% rename from test/CodeGen/X86/cppeh-inalloca.ll rename to test/CodeGen/WinEH/cppeh-inalloca.ll diff --git a/test/CodeGen/X86/cppeh-min-unwind.ll b/test/CodeGen/WinEH/cppeh-min-unwind.ll similarity index 100% rename from test/CodeGen/X86/cppeh-min-unwind.ll rename to test/CodeGen/WinEH/cppeh-min-unwind.ll diff --git a/test/CodeGen/X86/cppeh-nonalloca-frame-values.ll b/test/CodeGen/WinEH/cppeh-nonalloca-frame-values.ll similarity index 100% rename from test/CodeGen/X86/cppeh-nonalloca-frame-values.ll rename to test/CodeGen/WinEH/cppeh-nonalloca-frame-values.ll diff --git a/test/CodeGen/WinEH/lit.local.cfg b/test/CodeGen/WinEH/lit.local.cfg new file mode 100644 index 00000000000..67905d7e06e --- /dev/null +++ b/test/CodeGen/WinEH/lit.local.cfg @@ -0,0 +1,12 @@ +# FIXME: For now, override suffixes to exclude any .s tests, because some of the +# buildbots have a stray misched-copy.s output file lying around that causes +# failures. See misched-copy.s where we try and clean up that file. +# +# It should be possible to remove this override once all the bots have cycled +# cleanly. +config.suffixes = ['.ll', '.test', '.txt'] + +# FIXME: Add Windows on ARM support to these tests. +if not 'X86' in config.root.targets: + config.unsupported = True +