spec-test-script: Fix NaN comparision between v128 values (#2605)

This commit is contained in:
liang.he
2023-10-07 15:50:29 +08:00
committed by GitHub
parent 74acfd964e
commit 1ef7c1c83d
2 changed files with 13 additions and 20 deletions

View File

@ -199,7 +199,8 @@ def test_case(
case_path = pathlib.Path(case_path).resolve()
case_name = case_path.stem
CMD.append(case_path)
CMD.append(str(case_path))
# print(f"============> use {' '.join(CMD)}")
print(f"============> run {case_name} ", end="")
with subprocess.Popen(
CMD,
@ -481,7 +482,6 @@ def main():
)
options = parser.parse_args()
print(options)
if not preflight_check(options.aot_flag):
return False