Keep pragma in smoke test for bytecode compare script

This commit is contained in:
Leonardo Alt 2021-04-01 11:58:04 +02:00
parent ad10bee8f0
commit 8a7e94c06f
3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
contract C {
}
// ====
// SMTEngine: all
// SMTEngine: all

View File

@ -0,0 +1,3 @@
pragma experimental SMTChecker;
contract C {
}

View File

@ -14,8 +14,8 @@ from bytecodecompare.prepare_report import load_source, parse_cli_output, parse_
# pragma pylint: enable=import-error
SMT_SMOKE_TEST_SOL_PATH = LIBSOLIDITY_TEST_DIR / 'smtCheckerTests/simple/smoke_test.sol'
SMT_SMOKE_TEST_SOL_CODE = load_libsolidity_test_case(SMT_SMOKE_TEST_SOL_PATH)
SMT_SMOKE_TEST_SOL_PATH = FIXTURE_DIR / 'smt_smoke_test.sol'
SMT_SMOKE_TEST_SOL_CODE = load_fixture(SMT_SMOKE_TEST_SOL_PATH)
SMT_CONTRACT_WITH_LF_NEWLINES_SOL_PATH = FIXTURE_DIR / 'smt_contract_with_lf_newlines.sol'
SMT_CONTRACT_WITH_CRLF_NEWLINES_SOL_PATH = FIXTURE_DIR / 'smt_contract_with_crlf_newlines.sol'