From 60ab82ef0cbb84aba001534c105663e632b37d28 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Sun, 15 Dec 2019 18:01:08 +0200 Subject: [PATCH] Disable assert_exhaustion temporarily --- test/run-spec-test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/run-spec-test.py b/test/run-spec-test.py index 4dbbe9d..f437128 100755 --- a/test/run-spec-test.py +++ b/test/run-spec-test.py @@ -518,8 +518,8 @@ for fn in jsonFiles: test.expected[0]["value"] = "" elif test.type == "assert_trap": test.expected_trap = cmd["text"] - elif test.type == "assert_exhaustion": - test.expected_trap = "stack overflow" + #elif test.type == "assert_exhaustion": + # test.expected_trap = "stack overflow" else: stats.skipped += 1 warning(f"Skipped {test.source} ({test.type} not implemented)")