From 87742fd9f016873fcd9d91ef8bc4c3b1be925224 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 19 Dec 2017 20:57:05 -0800 Subject: run_project_tests: correctly search for objcpp compiler Instead of looking for an objc compiler. Fixes objc++ tests on DragonFlyBSD (which has an objc but not an objc++ compiler) Really though, the objc and objc++ tests need to be untangled so that the objc tests can run even if an objc++ compiler is unavilable. --- run_project_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'run_project_tests.py') diff --git a/run_project_tests.py b/run_project_tests.py index 0bf5f31d1..810f00ec7 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -453,7 +453,7 @@ def have_objc_compiler(): return False try: objc_comp.sanity_check(env.get_scratch_dir(), env) - objcpp_comp = env.detect_objc_compiler(False) + objcpp_comp = env.detect_objcpp_compiler(False) except: return False if not objcpp_comp: -- cgit v1.2.3