2021-04-26 20:07:00 +02:00
|
|
|
#coding:utf-8
|
|
|
|
|
2021-12-22 20:23:11 +01:00
|
|
|
"""
|
2022-01-22 21:59:15 +01:00
|
|
|
ID: issue-4079
|
|
|
|
ISSUE: 4079
|
|
|
|
TITLE: GBAK fails to fix system generators while restoring
|
|
|
|
DESCRIPTION:
|
|
|
|
JIRA: CORE-3733
|
2022-02-02 15:46:19 +01:00
|
|
|
FBTEST: bugs.core_3733
|
2022-01-22 21:59:15 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
from firebird.qa import *
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
db = db_factory(from_backup='core3733.fbk')
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
act_1 = isql_act('db', '')
|
2021-04-26 20:07:00 +02:00
|
|
|
|
2022-01-22 21:59:15 +01:00
|
|
|
@pytest.mark.version('>=3')
|
2021-04-28 12:42:11 +02:00
|
|
|
def test_1(act_1: Action):
|
2022-01-22 21:59:15 +01:00
|
|
|
# Passes if test database is restored just fine
|
|
|
|
pass
|
2021-04-26 20:07:00 +02:00
|
|
|
|