From 1fc65a65fe54635d0e564559ba5a7b8a8a42d4d6 Mon Sep 17 00:00:00 2001 From: dim Date: Mon, 11 Oct 2010 17:22:16 +0000 Subject: Remove more unneeded files and directories from contrib/llvm. This still allows us to build tblgen and clang, and further reduces the footprint in the tree. Approved by: rpaulo (mentor) --- contrib/llvm/utils/lit/setup.py | 69 ----------------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 contrib/llvm/utils/lit/setup.py (limited to 'contrib/llvm/utils/lit/setup.py') diff --git a/contrib/llvm/utils/lit/setup.py b/contrib/llvm/utils/lit/setup.py deleted file mode 100644 index e6ae3d8..0000000 --- a/contrib/llvm/utils/lit/setup.py +++ /dev/null @@ -1,69 +0,0 @@ -import lit - -# FIXME: Support distutils? -from setuptools import setup, find_packages -setup( - name = "Lit", - version = lit.__version__, - - author = lit.__author__, - author_email = lit.__email__, - url = 'http://llvm.org', - license = 'BSD', - - description = "A Software Testing Tool", - keywords = 'test C++ automatic discovery', - long_description = """\ -Lit -+++ - -About -===== - -Lit is a portable tool for executing LLVM and Clang style test suites, -summarizing their results, and providing indication of failures. Lit is designed -to be a lightweight testing tool with as simple a user interface as possible. - - -Features -======== - - * Portable! - * Flexible test discovery. - * Parallel test execution. - * Support for multiple test formats and test suite designs. - - -Documentation -============= - -The offical Lit documentation is in the man page, available online in the `LLVM -Command Guide http://llvm.org/cmds/lit.html`_. - - -Source -====== - -The Lit source is available as part of LLVM, in the `LLVM SVN repository -