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

Added/Updated tests\bugs\gh_8386_test.py: DISABLED check for ServerMode, requested by dimitr

This commit is contained in:
pavel-zotov 2025-01-17 13:35:45 +03:00
parent 07c81fa5aa
commit d847fa7cf6

View File

@ -110,8 +110,10 @@ act = isql_act('db', test_script, substitutions = [('[ \t]+', ' ')])
@pytest.mark.version('>=5.0.2,<6') @pytest.mark.version('>=5.0.2,<6')
def test_1(act: Action): def test_1(act: Action):
if act.vars['server-arch'] != 'SuperServer':
pytest.skip("Only SuperServer affected") # DISABLED 17.01.2025 13:35, requested by dimitr:
#if act.vars['server-arch'] != 'SuperServer':
# pytest.skip("Only SuperServer affected")
act.expected_stdout = 'MSG Completed' act.expected_stdout = 'MSG Completed'
act.execute(combine_output = True) act.execute(combine_output = True)