aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-01-23 14:47:06 +0200
committerGitHub <noreply@github.com>2019-01-23 14:47:06 +0200
commit379b42c5b18cd94feded28791a5189ee253ba04e (patch)
tree32276f56c794a215bf7768b541e7fb5279e326a7 /run_project_tests.py
parentf72522e8890bb44283da970bf8e4545830ae81a6 (diff)
parent43147c2594f2d8d802113d1cb2bc5bb9c72d3b96 (diff)
downloadmeson-379b42c5b18cd94feded28791a5189ee253ba04e.zip
meson-379b42c5b18cd94feded28791a5189ee253ba04e.tar.gz
meson-379b42c5b18cd94feded28791a5189ee253ba04e.tar.bz2
Merge pull request #3919 from mesonbuild/cudarebase
Add Cuda support
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 02897ce..4c6ca3b 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -542,6 +542,7 @@ def detect_tests_to_run():
('objective c++', 'objcpp', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objcpp_compiler()),
('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')),
('swift', 'swift', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('swiftc')),
+ ('cuda', 'cuda', backend not in (Backend.ninja, Backend.xcode) or not shutil.which('nvcc')),
('python3', 'python3', backend is not Backend.ninja),
('python', 'python', backend is not Backend.ninja),
('fpga', 'fpga', shutil.which('yosys') is None),