summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-02-19 01:58:56 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2018-02-19 01:58:56 +0200
commita627ee3d3337f0680335bf967abbffe92d2b36dc (patch)
tree99393c8ea9bcc23cef90820594dba8a9bea39e6e
parent55a7c265c11e0f3e8a94cf9f4fd0b5f036a717d2 (diff)
downloadmeson-testfpga.tar.gz
Run FPGA tests.testfpga
-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 9bbbbd093..9599155cd 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -459,6 +459,7 @@ def detect_tests_to_run():
('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')),
('python3', 'python3', backend is not Backend.ninja),
+ ('fpga', 'fpga', shutil.which('yosys') is None),
]
gathered_tests = [(name, gather_tests('test cases/' + subdir), skip) for name, subdir, skip in all_tests]
if mesonlib.is_windows():