diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-19 01:58:56 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-20 00:16:04 +0200 |
commit | 15358ecc9ff751981e1e13abbce8941bc99d5135 (patch) | |
tree | b9f3aa83bc279c237fb7abf519cf391a2f7bc4e4 /run_project_tests.py | |
parent | 93e983a49a884a126674a76cb304b898e1f77ca5 (diff) | |
download | meson-15358ecc9ff751981e1e13abbce8941bc99d5135.zip meson-15358ecc9ff751981e1e13abbce8941bc99d5135.tar.gz meson-15358ecc9ff751981e1e13abbce8941bc99d5135.tar.bz2 |
Run FPGA tests.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 9bbbbd0..9599155 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(): |