From 36eb79de5df9a4d153465317aeef3a57f7e45d18 Mon Sep 17 00:00:00 2001 From: Steven Wu Date: Fri, 13 May 2016 20:10:51 +0000 Subject: [PATCH] Disable test from r269436 on unsupported platforms Fixing bots failure. test/ExecutionEngine/RuntimeDyld/SystemZ/cfi-relo-pc64.s requires SystemZ backend. Mark the test as unsupported if the backend is not available. llvm-svn: 269470 --- test/ExecutionEngine/RuntimeDyld/SystemZ/lit.local.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 test/ExecutionEngine/RuntimeDyld/SystemZ/lit.local.cfg diff --git a/test/ExecutionEngine/RuntimeDyld/SystemZ/lit.local.cfg b/test/ExecutionEngine/RuntimeDyld/SystemZ/lit.local.cfg new file mode 100644 index 00000000000..5c02dd3614a --- /dev/null +++ b/test/ExecutionEngine/RuntimeDyld/SystemZ/lit.local.cfg @@ -0,0 +1,3 @@ +if not 'SystemZ' in config.root.targets: + config.unsupported = True +