aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/LibSolc.cpp
diff options
context:
space:
mode:
authorLeonardo Alt <leo@ethereum.org>2018-08-14 17:41:40 +0800
committerLeonardo Alt <leo@ethereum.org>2018-08-14 18:32:47 +0800
commit17cac588d053429ff74c53fd82648da7c8c55db9 (patch)
tree412051802e1811e77d8254d2085096de4d62463e /test/libsolidity/LibSolc.cpp
parentd01ffd1ad9737a13a7d39e33246d101b36b5cd93 (diff)
downloaddexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.tar.gz
dexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.tar.zst
dexon-solidity-17cac588d053429ff74c53fd82648da7c8c55db9.zip
Replace safety stop by invalid
Diffstat (limited to 'test/libsolidity/LibSolc.cpp')
-rw-r--r--test/libsolidity/LibSolc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/libsolidity/LibSolc.cpp b/test/libsolidity/LibSolc.cpp
index 9d5ffa27..61e5ebba 100644
--- a/test/libsolidity/LibSolc.cpp
+++ b/test/libsolidity/LibSolc.cpp
@@ -111,12 +111,12 @@ BOOST_AUTO_TEST_CASE(basic_compilation)
BOOST_CHECK(contract["bytecode"].isString());
BOOST_CHECK_EQUAL(
dev::test::bytecodeSansMetadata(contract["bytecode"].asString()),
- "6080604052348015600f57600080fd5b50603580601d6000396000f3006080604052600080fd00"
+ "6080604052348015600f57600080fd5b50603580601d6000396000f3fe6080604052600080fdfe"
);
BOOST_CHECK(contract["runtimeBytecode"].isString());
BOOST_CHECK_EQUAL(
dev::test::bytecodeSansMetadata(contract["runtimeBytecode"].asString()),
- "6080604052600080fd00"
+ "6080604052600080fdfe"
);
BOOST_CHECK(contract["functionHashes"].isObject());
BOOST_CHECK(contract["gasEstimates"].isObject());
@@ -153,12 +153,12 @@ BOOST_AUTO_TEST_CASE(single_compilation)
BOOST_CHECK(contract["bytecode"].isString());
BOOST_CHECK_EQUAL(
dev::test::bytecodeSansMetadata(contract["bytecode"].asString()),
- "6080604052348015600f57600080fd5b50603580601d6000396000f3006080604052600080fd00"
+ "6080604052348015600f57600080fd5b50603580601d6000396000f3fe6080604052600080fdfe"
);
BOOST_CHECK(contract["runtimeBytecode"].isString());
BOOST_CHECK_EQUAL(
dev::test::bytecodeSansMetadata(contract["runtimeBytecode"].asString()),
- "6080604052600080fd00"
+ "6080604052600080fdfe"
);
BOOST_CHECK(contract["functionHashes"].isObject());
BOOST_CHECK(contract["gasEstimates"].isObject());