mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Keep pragma in smoke test for bytecode compare script
This commit is contained in:
parent
ad10bee8f0
commit
8a7e94c06f
@ -1,4 +1,4 @@
|
||||
contract C {
|
||||
}
|
||||
// ====
|
||||
// SMTEngine: all
|
||||
// SMTEngine: all
|
||||
|
3
test/scripts/fixtures/smt_smoke_test.sol
Normal file
3
test/scripts/fixtures/smt_smoke_test.sol
Normal file
@ -0,0 +1,3 @@
|
||||
pragma experimental SMTChecker;
|
||||
contract C {
|
||||
}
|
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user