Skip to content

Commit 9e3a667

Browse files
committed
Updated after review comments
1 parent 8834cbb commit 9e3a667

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/run_opencl_cts/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
echo QEMU SETTING: $QEMU_SETTING
3636
set -x
3737
# Build override file, all is done first, then the target specific.
38-
# The last file can overwrite previous overrides.
38+
# The last file can overwrite previous overrides.
3939
for csv in .github/opencl_cts/override_all.csv .github/opencl_cts/override_${{ inputs.target }}.csv
4040
do
4141
[ -f $csv ] && cat $csv

scripts/testing/city_runner/test_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def from_file(cls, list_file_paths, disabled_file_path, ignored_file_path, overr
146146
device_filter = chunks.pop(0)
147147
if len(chunks) < 2:
148148
raise Exception("Not enough columns in the CSV file")
149-
149+
150150
# match on the first 2
151151
for o in override_tests:
152152
if chunks[:2] == o[:2]:

scripts/testing/city_runner/ui.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def print_results(self, results):
101101
pass_rate = self.calc_progress(results.num_passes, results.num_tests, 1)
102102
xfail_rate = self.calc_progress(results.num_xfails, results.num_tests, 1)
103103
xpass_rate = self.calc_progress(results.num_xpasses, results.num_tests, 1)
104-
mayfail_rate = self.calc_progress(results.num_mayfails, results.num_tests, 1)
104+
mayfail_rate = self.calc_progress(results.num_mayfails, results.num_tests, 1)
105105
fail_rate = self.calc_progress(results.num_fails, results.num_tests, 1)
106106
timeout_rate = self.calc_progress(results.num_timeouts, results.num_tests, 1)
107107
skip_rate = self.calc_progress(results.num_skipped, results.num_tests, 1)
@@ -126,7 +126,7 @@ def print_results(self, results):
126126
for run in results.mayfail_list:
127127
self.out.write(" %s\n" % run.test.name)
128128
self.out.write("\n")
129-
129+
130130
if results.timeout_list:
131131
self.out.write(self.fmt.blue("Timeout tests:\n"))
132132
for run in results.timeout_list:

0 commit comments

Comments
 (0)