From 17314d2b2384756c980ad31db06dd7476ae1cb07 Mon Sep 17 00:00:00 2001 From: Matt D'Souza Date: Wed, 29 May 2024 16:34:45 -0400 Subject: [PATCH] Disable fstring test causing short overflow --- graalpython/lib-python/3/test/test_fstring.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graalpython/lib-python/3/test/test_fstring.py b/graalpython/lib-python/3/test/test_fstring.py index 8e719cdef2..b03fa09f23 100644 --- a/graalpython/lib-python/3/test/test_fstring.py +++ b/graalpython/lib-python/3/test/test_fstring.py @@ -13,7 +13,7 @@ import types import decimal import unittest -from test.support import impl_detail +from test.support import bytecode_dsl_excluded from test.support.os_helper import temp_cwd from test.support.script_helper import assert_python_failure @@ -580,6 +580,7 @@ def test_comments(self): # '()#)'. Make sure that doesn't compile. ]) + @bytecode_dsl_excluded def test_many_expressions(self): # Create a string with many expressions in it. Note that # because we have a space in here as a literal, we're actually