From 15358ecc9ff751981e1e13abbce8941bc99d5135 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 19 Feb 2018 01:58:56 +0200 Subject: [PATCH] Run FPGA tests. --- run_project_tests.py | 1 + 1 file changed, 1 insertion(+) 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():