From 90b5621afa40ff62be48dc9503f6d1a1d4c2e8ff Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Fri, 25 Sep 2020 10:15:39 -0400 Subject: [PATCH] test_pass_everything.py: use `cc` by default (like Make), not `gcc` Signed-off-by: Philippe Proulx --- tests/config/yaml/2/test_pass_everything.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/config/yaml/2/test_pass_everything.py b/tests/config/yaml/2/test_pass_everything.py index 0eb880c..547f660 100644 --- a/tests/config/yaml/2/test_pass_everything.py +++ b/tests/config/yaml/2/test_pass_everything.py @@ -43,7 +43,7 @@ def test_everything(request, tmpdir): with open(os.path.join(tmpdir, file.name), 'w') as f: f.write(file.contents) - cc = os.environ.get('CC', 'gcc') + cc = os.environ.get('CC', 'cc') o_file = 'obj.o' subprocess.check_call([cc, '-c', '-o', o_file, files[-1].name], cwd=tmpdir) nm = os.environ.get('NM', 'nm') -- 2.34.1