Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hpvm-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
hpvm-release
Commits
b998be88
Commit
b998be88
authored
5 years ago
by
Akash Kothari
Browse files
Options
Downloads
Patches
Plain Diff
Remove unnecessary Unit directory
parent
64fd925e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
hpvm/test/CMakeLists.txt
+0
-7
0 additions, 7 deletions
hpvm/test/CMakeLists.txt
hpvm/test/Unit/lit.cfg.py
+0
-51
0 additions, 51 deletions
hpvm/test/Unit/lit.cfg.py
hpvm/test/Unit/lit.site.cfg.py.in
+0
-23
0 additions, 23 deletions
hpvm/test/Unit/lit.site.cfg.py.in
with
0 additions
and
81 deletions
hpvm/test/CMakeLists.txt
+
0
−
7
View file @
b998be88
...
...
@@ -22,13 +22,6 @@ configure_lit_site_cfg(
MAIN_CONFIG
${
CMAKE_CURRENT_SOURCE_DIR
}
/lit.cfg.py
)
configure_lit_site_cfg
(
${
CMAKE_CURRENT_SOURCE_DIR
}
/Unit/lit.site.cfg.py.in
${
CMAKE_CURRENT_BINARY_DIR
}
/Unit/lit.site.cfg.py
MAIN_CONFIG
${
CMAKE_CURRENT_SOURCE_DIR
}
/Unit/lit.cfg.py
)
# Set the depends list as a variable so that it can grow conditionally.
# NOTE: Sync the substitutions in test/lit.cfg when adding to this list.
...
...
This diff is collapsed.
Click to expand it.
hpvm/test/Unit/lit.cfg.py
deleted
100644 → 0
+
0
−
51
View file @
64fd925e
# -*- Python -*-
# Configuration file for the 'lit' test runner.
import
os
import
subprocess
import
lit.formats
# name: The name of this test suite.
config
.
name
=
'
LLVM-Unit
'
# suffixes: A list of file extensions to treat as test files.
config
.
suffixes
=
[]
# is_early; Request to run this suite early.
config
.
is_early
=
True
# test_source_root: The root path where tests are located.
# test_exec_root: The root path where tests should be run.
config
.
test_exec_root
=
os
.
path
.
join
(
config
.
llvm_obj_root
,
'
unittests
'
)
config
.
test_source_root
=
config
.
test_exec_root
# testFormat: The test format to use to interpret tests.
config
.
test_format
=
lit
.
formats
.
GoogleTest
(
config
.
llvm_build_mode
,
'
Tests
'
)
# Propagate the temp directory. Windows requires this because it uses \Windows\
# if none of these are present.
if
'
TMP
'
in
os
.
environ
:
config
.
environment
[
'
TMP
'
]
=
os
.
environ
[
'
TMP
'
]
if
'
TEMP
'
in
os
.
environ
:
config
.
environment
[
'
TEMP
'
]
=
os
.
environ
[
'
TEMP
'
]
# Propagate HOME as it can be used to override incorrect homedir in passwd
# that causes the tests to fail.
if
'
HOME
'
in
os
.
environ
:
config
.
environment
[
'
HOME
'
]
=
os
.
environ
[
'
HOME
'
]
# Propagate path to symbolizer for ASan/MSan.
for
symbolizer
in
[
'
ASAN_SYMBOLIZER_PATH
'
,
'
MSAN_SYMBOLIZER_PATH
'
]:
if
symbolizer
in
os
.
environ
:
config
.
environment
[
symbolizer
]
=
os
.
environ
[
symbolizer
]
# Win32 seeks DLLs along %PATH%.
if
sys
.
platform
in
[
'
win32
'
,
'
cygwin
'
]
and
os
.
path
.
isdir
(
config
.
shlibdir
):
config
.
environment
[
'
PATH
'
]
=
os
.
path
.
pathsep
.
join
((
config
.
shlibdir
,
config
.
environment
[
'
PATH
'
]))
# Win32 may use %SYSTEMDRIVE% during file system shell operations, so propogate.
if
sys
.
platform
==
'
win32
'
and
'
SYSTEMDRIVE
'
in
os
.
environ
:
config
.
environment
[
'
SYSTEMDRIVE
'
]
=
os
.
environ
[
'
SYSTEMDRIVE
'
]
This diff is collapsed.
Click to expand it.
hpvm/test/Unit/lit.site.cfg.py.in
deleted
100644 → 0
+
0
−
23
View file @
64fd925e
@LIT_SITE_CFG_IN_HEADER@
import sys
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
config.llvm_build_mode = "@LLVM_BUILD_MODE@"
config.enable_shared = @ENABLE_SHARED@
config.shlibdir = "@SHLIBDIR@"
# Support substitution of the tools_dir and build_mode with user parameters.
# This is used when we can't determine the tool dir at configuration time.
try:
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
config.llvm_build_mode = config.llvm_build_mode % lit_config.params
except KeyError:
e = sys.exc_info()[1]
key, = e.args
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
# Let the main config do the real work.
lit_config.load_config(config, "@LLVM_SOURCE_DIR@/test/Unit/lit.cfg.py")
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment