From 67e3968693372723792a8c0366d7525bb15d3a20 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Mon, 16 Dec 2019 22:08:31 +0200 Subject: [PATCH] Enable assert_exhaustion. Fix #3 --- test/run-spec-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run-spec-test.py b/test/run-spec-test.py index 11b3e7b..4dbbe9d 100755 --- a/test/run-spec-test.py +++ b/test/run-spec-test.py @@ -518,7 +518,7 @@ for fn in jsonFiles: test.expected[0]["value"] = "" elif test.type == "assert_trap": test.expected_trap = cmd["text"] - elif test.type == "assert_exhaustion" and args.all: # TODO: Remove args.all check + elif test.type == "assert_exhaustion": test.expected_trap = "stack overflow" else: stats.skipped += 1