Skip to content

Commit 94bba08

Browse files
author
Colin Davidson
committed
Fix city runner lit profile for windows
This was not setting the correct flag for windows when setting up the lit config
1 parent 4cbd86e commit 94bba08

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • scripts/testing/city_runner/profiles

scripts/testing/city_runner/profiles/lit.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import sys
2020
import time
2121
import csv
22+
import platform
2223

2324
import lit.cl_arguments
2425
import lit.discovery
@@ -110,7 +111,7 @@ def load_tests(self, csv_paths, disabled_path, ignored_path, override_path):
110111
valgrindArgs=[],
111112
noExecute=False,
112113
debug=False,
113-
isWindows=False,
114+
isWindows=(platform.system() == "Windows"),
114115
order=lit.cl_arguments.TestOrder.SMART,
115116
params=self.args.lit_param,
116117
config_prefix=""

0 commit comments

Comments
 (0)