From 518e3deddba53af2f88ecce4de5334a9431a8a8f Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Sun, 15 Dec 2019 16:52:52 +0200 Subject: [PATCH] Enable assert_exhaustion tests --- test/run-spec-test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/run-spec-test.py b/test/run-spec-test.py index aaf142a..4dbbe9d 100755 --- a/test/run-spec-test.py +++ b/test/run-spec-test.py @@ -518,6 +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" else: stats.skipped += 1 warning(f"Skipped {test.source} ({test.type} not implemented)")