From b2b7fca320156b6375cc69eed6621bedccef3827 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 2 Feb 2020 17:19:42 -0800 Subject: update test_templates in run_unittests.py --- run_unittests.py | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/run_unittests.py b/run_unittests.py index cf40955..78bdc68 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -3119,15 +3119,28 @@ int main(int argc, char **argv) { except EnvironmentException: pass try: + env.detect_cs_compiler(MachineChoice.HOST) + langs.append('cs') + except EnvironmentException: + pass + try: env.detect_d_compiler(MachineChoice.HOST) langs.append('d') except EnvironmentException: pass try: + env.detect_java_compiler(MachineChoice.HOST) + langs.append('java') + except EnvironmentException: + pass + try: + env.detect_cuda_compiler(MachineChoice.HOST) + langs.append('cuda') + except EnvironmentException: + pass + try: env.detect_fortran_compiler(MachineChoice.HOST) - if is_windows() or platform.machine().lower() != 'e2k': - # Elbrus Fortran compiler can't generate debug information - langs.append('fortran') + langs.append('fortran') except EnvironmentException: pass try: @@ -3135,6 +3148,11 @@ int main(int argc, char **argv) { langs.append('objc') except EnvironmentException: pass + try: + env.detect_objcpp_compiler(MachineChoice.HOST) + langs.append('objcpp') + except EnvironmentException: + pass # FIXME: omitting rust as Windows AppVeyor CI finds Rust but doesn't link correctly for lang in langs: -- cgit v1.1