summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDylan McKay <dylanmckay34@gmail.com>2016-11-17 00:09:38 +0000
committerDylan McKay <dylanmckay34@gmail.com>2016-11-17 00:09:38 +0000
commit48c26b2b1297c1b2e2e1cd67e50c016c652c6c60 (patch)
treea27d9c20b28693100a4719da1223f0ba01725c72
parent8e07a88bfacfc98f0fe6e146cd0c5d4db28956a3 (diff)
downloadbcm5719-llvm-48c26b2b1297c1b2e2e1cd67e50c016c652c6c60.tar.gz
bcm5719-llvm-48c26b2b1297c1b2e2e1cd67e50c016c652c6c60.zip
[AVR] Remove some accidentally-commited code that broke the bots
This is a remnant of an on-chip unit testing tool that has since been moved out-of-tree. It was accidentally committed in r287162. llvm-svn: 287180
-rw-r--r--llvm/test/CodeGen/AVR/lit.local.cfg24
1 files changed, 0 insertions, 24 deletions
diff --git a/llvm/test/CodeGen/AVR/lit.local.cfg b/llvm/test/CodeGen/AVR/lit.local.cfg
index 07865380a97..efbb6c4ba44 100644
--- a/llvm/test/CodeGen/AVR/lit.local.cfg
+++ b/llvm/test/CodeGen/AVR/lit.local.cfg
@@ -1,27 +1,3 @@
if not 'AVR' in config.root.targets:
config.unsupported = True
-config.suffixes = ['.ll', '.cpp']
-
-import os, lit.TestRunner
-from lit.formats import ShTest
-
-targets = set(config.root.targets_to_build.split())
-if not 'AVR' in targets:
- config.unsupported = True
-
-if 'AVRLIT_PORT' in os.environ:
- config.environment['AVRLIT_PORT'] = os.environ['AVRLIT_PORT']
-
-class AVRCodeGenTest(ShTest):
- def __init__(self):
- ShTest.__init__(self)
-
- def execute(self, test, litConfig):
- if test.getSourcePath().endswith('.cpp') and not 'AVRLIT_PORT' in os.environ:
- return (lit.Test.UNSUPPORTED, 'AVRLIT_PORT environment variable is not set')
-
- return ShTest.execute(self, test, litConfig)
-
-
-config.test_format = AVRCodeGenTest()
OpenPOWER on IntegriCloud