6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Added/Updated tests\bugs\core_5231_test.py: added combine_output=True in order to see STDERR text in mismatch

This commit is contained in:
pavel-zotov 2024-08-09 19:30:42 +03:00
parent 74c17c4b9d
commit e9648946dd

View File

@ -2,7 +2,7 @@
"""
ID: issue-5510
ISSUE: 5510
ISSUE: https://github.com/FirebirdSQL/firebird/issues/5510
TITLE: EXECUTE STATEMENT: BLR error if more than 256 output parameters exist
DESCRIPTION:
We define here number of output args for which one need to made test - see var 'sp_args_count'.
@ -71,5 +71,5 @@ def build_script(ddl_script: Path):
@pytest.mark.version('>=3.0')
def test_1(act: Action, ddl_script: Path):
build_script(ddl_script)
act.isql(switches=[], input_file=ddl_script, charset='NONE')
act.isql(switches=[], input_file=ddl_script, charset='NONE', combine_output = True)
assert act.clean_stdout == act.clean_expected_stdout