aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKito Cheng <kito.cheng@sifive.com>2023-11-21 08:32:39 +0800
committerGitHub <noreply@github.com>2023-11-21 08:32:39 +0800
commit6b60183455c7271fdefd3a417f3e3a7720d51aec (patch)
tree7577e21e8546a2a859e303ac4958f5984c5a4990
parent82c3d6550a26f03c3b4acb6cbefe5c5e98855ddb (diff)
parent0e5c40517d6585bf06b60f9c3076a418858820d7 (diff)
downloadriscv-gnu-toolchain-6b60183455c7271fdefd3a417f3e3a7720d51aec.zip
riscv-gnu-toolchain-6b60183455c7271fdefd3a417f3e3a7720d51aec.tar.gz
riscv-gnu-toolchain-6b60183455c7271fdefd3a417f3e3a7720d51aec.tar.bz2
Merge pull request #1369 from riscv-collab/improve-report
Improve make report with extra test arguments
-rwxr-xr-xscripts/testsuite-filter13
1 files changed, 9 insertions, 4 deletions
diff --git a/scripts/testsuite-filter b/scripts/testsuite-filter
index 3d9fb27..df5004e 100755
--- a/scripts/testsuite-filter
+++ b/scripts/testsuite-filter
@@ -187,6 +187,7 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
arch = ""
abi = ""
cmodel = ""
+ other_args = []
for info in variation.split('/'):
if info.startswith('-march'):
arch = info[7:]
@@ -194,13 +195,15 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
abi = info[6:]
elif info.startswith('-mcmodel'):
cmodel = info[9:]
+ elif info != 'riscv-sim':
+ other_args.append(info)
white_list = \
get_white_list(arch, abi, libc,
os.path.join(white_list_base_dir, tool),
is_gcc)
# filter!
- config = (arch, abi, cmodel)
+ config = (arch, abi, cmodel, ":".join(other_args))
fail_count = 0
unexpected_result_list = []
if is_gcc:
@@ -234,8 +237,8 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
if len(unexpected_result_list) != 0:
- print ("\t\t=== %s: Unexpected fails for %s %s %s ===" \
- % (testtool, arch, abi, cmodel))
+ print ("\t\t=== %s: Unexpected fails for %s %s %s %s ===" \
+ % (testtool, arch, abi, cmodel, " ".join(other_args)))
for ur in unexpected_result_list:
print (ur)
@@ -257,7 +260,7 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
print (" | # of unexpected case")
print (" |%s |" % bar)
for config, result in summary.items():
- arch, abi, cmodel = config
+ arch, abi, cmodel, other_args = config
print (" %10s/ %6s/ %6s |" % (arch, abi, cmodel), end='')
for tool in toollist:
if tool not in summary[config]:
@@ -271,6 +274,8 @@ def filter_result(tool, libc, white_list_base_dir, unexpected_results):
fail_count = summary[config][tool]
print ("%13d |" % fail_count, end='')
print ("")
+ if (len(other_args)):
+ print (" " + other_args.replace(":", " "))
if any_fail or len(summary.items()) == 0:
return 1
else: