From b339e8df4b658b07fec4e5d6537071fd9ab9b706 Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Tue, 26 Dec 2017 10:38:14 -0700 Subject: [PATCH] Fix property order. --- test/gcc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/gcc.py b/test/gcc.py index 7314fbb84..f28d35f6a 100644 --- a/test/gcc.py +++ b/test/gcc.py @@ -62,14 +62,14 @@ def compute_path(properties): path += "/release" else: path += "/debug" - if "threading=multi" in properties: - path += "/threading-multi" if "link=static" in properties: path += "/link-static" if "runtime-link=static" in properties: path += "/runtime-link-static" if "target-os=linux" in properties: path += "/target-os-linux" + if "threading=multi" in properties: + path += "/threading-multi" return path def test_gcc(version, property_sets):