aboutsummaryrefslogtreecommitdiff
path: root/checkbuild.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-12-04 21:06:53 -0800
committerDan Albert <danalbert@google.com>2015-12-04 21:06:53 -0800
commite78fb69047e4d1ffa2d4c2b41c630311ca15fe68 (patch)
tree47a84b24c0e79250cc4eb191870ffc141ad7ec52 /checkbuild.py
parent442b76ca685280fff4be149ebf26bf48661cc55e (diff)
downloadndk-e78fb69047e4d1ffa2d4c2b41c630311ca15fe68.tar.gz
Stop packaging tests.
Now that we can run the tests against an arbitrary NDK install, there's not much reason to include it in the package. Change-Id: I694c9687e9eaa4411ce967cfde9968a639788ca1
Diffstat (limited to 'checkbuild.py')
-rw-r--r--checkbuild.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/checkbuild.py b/checkbuild.py
index 46042d6f3..7f7a0e8e0 100644
--- a/checkbuild.py
+++ b/checkbuild.py
@@ -53,7 +53,6 @@ ALL_MODULES = {
'platforms',
'python-packages',
'stlport',
- 'tests',
}
@@ -443,13 +442,6 @@ def build_platforms(out_dir, args):
invoke_build('build-platforms.py', common_build_args(out_dir, args))
-def build_tests(out_dir, _):
- root_dir = build_support.ndk_path()
- path = 'tests'
- build_support.make_package('tests', [path], out_dir, root_dir,
- repo_prop_dir=path)
-
-
def build_cpufeatures(out_dir, _):
root_dir = build_support.ndk_path()
path = 'sources/android/cpufeatures'
@@ -549,7 +541,6 @@ def main():
('platforms', build_platforms),
('python-packages', build_python_packages),
('stlport', build_stlport),
- ('tests', build_tests),
])
print('Building modules: {}'.format(' '.join(modules)))