You've already forked linux-packaging-mono
acceptance-tests
data
docs
external
Newtonsoft.Json
api-doc-tools
api-snapshot
aspnetwebstack
binary-reference-assemblies
bockbuild
boringssl
cecil
cecil-legacy
corefx
corert
helix-binaries
ikdasm
ikvm
illinker-test-assets
linker
llvm
bindings
cmake
docs
examples
include
lib
projects
resources
runtimes
scripts
test
tools
unittests
utils
FileCheck
KillTheDoctor
LLVMVisualizers
Misc
PerfectShuffle
TableGen
Target
bugpoint
count
crosstool
docker
emacs
fpcmp
gdb-scripts
git
git-svn
jedit
kate
lint
lit
examples
lit
tests
utils
CMakeLists.txt
MANIFEST.in
README.txt
lit.py
setup.py
llvm-build
llvm-lit
not
release
sanitizers
testgen
textmate
unittest
valgrind
vim
vscode
yaml-bench
DSAclean.py
DSAextract.py
GenLibDeps.pl
GetRepositoryPath
GetSourceVersion
LLVMBuild.txt
UpdateCMakeLists.pl
abtest.py
bisect
bisect-skip-count
check-each-file
clang-parse-diagnostics-file
codegen-diff
countloc.sh
create_ladder_graph.py
extract_symbols.py
findmisopt
findoptdiff
findsym.pl
getsrcs.sh
lldbDataFormatters.py
llvm-compilers-check
llvm-gisel-cov.py
llvm-native-gxx
llvm.grm
llvmdo
llvmgrep
makellvm
prepare-code-coverage-artifact.py
schedcover.py
shuffle_fuzz.py
shuffle_select_fuzz_tester.py
sort_includes.py
update_llc_test_checks.py
update_mir_test_checks.py
update_test_checks.py
wciia.py
.arcconfig
.clang-format
.clang-tidy
.gitattributes
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
CREDITS.TXT
LICENSE.TXT
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT
configure
llvm.spec.in
nuget-buildtasks
nunit-lite
roslyn-binaries
rx
xunit-binaries
how-to-bump-roslyn-binaries.md
ikvm-native
libgc
llvm
m4
man
mcs
mk
mono
msvc
po
runtime
samples
scripts
support
tools
COPYING.LIB
LICENSE
Makefile.am
Makefile.in
NEWS
README.md
acinclude.m4
aclocal.m4
autogen.sh
code_of_conduct.md
compile
config.guess
config.h.in
config.rpath
config.sub
configure.REMOVED.git-id
configure.ac.REMOVED.git-id
depcomp
install-sh
ltmain.sh.REMOVED.git-id
missing
mkinstalldirs
mono-uninstalled.pc.in
test-driver
winconfig.h
78 lines
1.8 KiB
Python
78 lines
1.8 KiB
Python
![]() |
import lit
|
||
|
import os
|
||
|
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
# setuptools expects to be invoked from within the directory of setup.py, but it
|
||
|
# is nice to allow:
|
||
|
# python path/to/setup.py install
|
||
|
# to work (for scripts, etc.)
|
||
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
||
|
|
||
|
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 official *lit* documentation is in the man page, available online at 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:
|
||
|
http://llvm.org/svn/llvm-project/llvm/trunk/utils/lit.
|
||
|
""",
|
||
|
|
||
|
classifiers=[
|
||
|
'Development Status :: 3 - Alpha',
|
||
|
'Environment :: Console',
|
||
|
'Intended Audience :: Developers',
|
||
|
'License :: OSI Approved :: University of Illinois/NCSA Open Source License',
|
||
|
'Natural Language :: English',
|
||
|
'Operating System :: OS Independent',
|
||
|
'Programming Language :: Python',
|
||
|
'Topic :: Software Development :: Testing',
|
||
|
],
|
||
|
|
||
|
zip_safe = False,
|
||
|
packages = find_packages(),
|
||
|
entry_points = {
|
||
|
'console_scripts': [
|
||
|
'lit = lit:main',
|
||
|
],
|
||
|
}
|
||
|
)
|