Skip to content

Commit 13943d9

Browse files
authored
Merge pull request ethereum#15657 from ipsilon/eof-cpp-tests-update
eof: Disable legacy-specific C++ tests and need to be rewritten for EOF later
2 parents 2462dfa + 10a1d51 commit 13943d9

File tree

8 files changed

+32
-22
lines changed

8 files changed

+32
-22
lines changed

.circleci/soltest.sh

-11
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,6 @@ IFS=" " read -r -a SOLTEST_FLAGS <<< "$SOLTEST_FLAGS"
4545

4646
# TODO: [EOF] These won't pass on EOF yet. Reenable them when the implementation is complete.
4747
EOF_EXCLUDES=(
48-
--run_test='!Assembler/all_assembly_items'
49-
--run_test='!Assembler/immutable'
50-
--run_test='!Assembler/immutables_and_its_source_maps'
51-
--run_test='!Optimiser/jumpdest_removal_subassemblies'
52-
--run_test='!Optimiser/jumpdest_removal_subassemblies/*'
53-
--run_test='!SolidityCompiler/does_not_include_creation_time_only_internal_functions'
54-
--run_test='!SolidityInlineAssembly/Analysis/create2'
55-
--run_test='!SolidityInlineAssembly/Analysis/inline_assembly_shadowed_instruction_declaration'
56-
--run_test='!SolidityInlineAssembly/Analysis/large_constant'
57-
--run_test='!SolidityInlineAssembly/Analysis/staticcall'
58-
--run_test='!ViewPureChecker/assembly_staticcall'
5948
--run_test='!yulStackLayout/literal_loop'
6049
)
6150

test/Common.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,13 @@ bool isValidSemanticTestPath(boost::filesystem::path const& _testPath)
302302
return true;
303303
}
304304

305+
boost::unit_test::precondition::predicate_t nonEOF()
306+
{
307+
return [](boost::unit_test::test_unit_id) {
308+
return !solidity::test::CommonOptions::get().eofVersion().has_value();
309+
};
310+
}
311+
305312
boost::unit_test::precondition::predicate_t minEVMVersionCheck(langutil::EVMVersion _minEVMVersion)
306313
{
307314
return [_minEVMVersion](boost::unit_test::test_unit_id) {

test/Common.h

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ bool isValidSemanticTestPath(boost::filesystem::path const& _testPath);
112112
/// @return A predicate (function) that can be passed into @a boost::unit_test::precondition().
113113
boost::unit_test::precondition::predicate_t minEVMVersionCheck(langutil::EVMVersion _minEVMVersion);
114114

115+
/// Helper that can be used to skip tests when the EOF is not supported by the test case.
116+
/// @return A predicate (function) that can be passed into @a boost::unit_test::precondition().
117+
boost::unit_test::precondition::predicate_t nonEOF();
118+
115119
bool loadVMs(CommonOptions const& _options);
116120

117121
/**

test/libevmasm/Assembler.cpp

+6-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737

3838
using namespace solidity::langutil;
3939
using namespace solidity::evmasm;
40+
using namespace solidity::test;
4041
using namespace std::string_literals;
4142

4243
namespace solidity::frontend::test
@@ -54,7 +55,7 @@ namespace
5455

5556
BOOST_AUTO_TEST_SUITE(Assembler)
5657

57-
BOOST_AUTO_TEST_CASE(all_assembly_items)
58+
BOOST_AUTO_TEST_CASE(all_assembly_items, *boost::unit_test::precondition(nonEOF()))
5859
{
5960
std::map<std::string, unsigned> indices = {
6061
{ "root.asm", 0 },
@@ -216,7 +217,8 @@ BOOST_AUTO_TEST_CASE(all_assembly_items)
216217
BOOST_CHECK_EQUAL(util::jsonCompactPrint(_assembly.assemblyJSON(indices)), util::jsonCompactPrint(jsonValue));
217218
}
218219

219-
BOOST_AUTO_TEST_CASE(immutables_and_its_source_maps)
220+
// TODO: Implement EOF counterpart
221+
BOOST_AUTO_TEST_CASE(immutables_and_its_source_maps, *boost::unit_test::precondition(nonEOF()))
220222
{
221223
EVMVersion evmVersion = solidity::test::CommonOptions::get().evmVersion();
222224
// Tests for 1, 2, 3 number of immutables.
@@ -301,7 +303,8 @@ BOOST_AUTO_TEST_CASE(immutables_and_its_source_maps)
301303
}
302304
}
303305

304-
BOOST_AUTO_TEST_CASE(immutable)
306+
// TODO: Implement EOF counterpart
307+
BOOST_AUTO_TEST_CASE(immutable, *boost::unit_test::precondition(nonEOF()))
305308
{
306309
std::map<std::string, unsigned> indices = {
307310
{ "root.asm", 0 },

test/libevmasm/Optimiser.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141

4242
using namespace solidity::langutil;
4343
using namespace solidity::evmasm;
44+
using namespace solidity::test;
4445

4546
namespace solidity::frontend::test
4647
{
@@ -1329,13 +1330,14 @@ BOOST_AUTO_TEST_CASE(jumpdest_removal)
13291330
);
13301331
}
13311332

1332-
BOOST_AUTO_TEST_CASE(jumpdest_removal_subassemblies)
1333+
BOOST_AUTO_TEST_CASE(jumpdest_removal_subassemblies, *boost::unit_test::precondition(nonEOF()))
13331334
{
13341335
// This tests that tags from subassemblies are not removed
13351336
// if they are referenced by a super-assembly. Furthermore,
13361337
// tag unifications (due to block deduplication) is also
13371338
// visible at the super-assembly.
13381339

1340+
solAssert(!solidity::test::CommonOptions::get().eofVersion().has_value());
13391341
Assembly::OptimiserSettings settings;
13401342
settings.runInliner = false;
13411343
settings.runJumpdestRemover = true;
@@ -1346,8 +1348,8 @@ BOOST_AUTO_TEST_CASE(jumpdest_removal_subassemblies)
13461348
settings.evmVersion = solidity::test::CommonOptions::get().evmVersion();
13471349
settings.expectedExecutionsPerDeployment = OptimiserSettings{}.expectedExecutionsPerDeployment;
13481350

1349-
Assembly main{settings.evmVersion, false, solidity::test::CommonOptions::get().eofVersion(), {}};
1350-
AssemblyPointer sub = std::make_shared<Assembly>(settings.evmVersion, true, solidity::test::CommonOptions::get().eofVersion(), std::string{});
1351+
Assembly main{settings.evmVersion, false, std::nullopt, {}};
1352+
AssemblyPointer sub = std::make_shared<Assembly>(settings.evmVersion, true, std::nullopt, std::string{});
13511353

13521354
sub->append(u256(1));
13531355
auto t1 = sub->newTag();

test/libsolidity/InlineAssembly.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444

4545
using namespace solidity::langutil;
4646
using namespace solidity::yul;
47+
using namespace solidity::test;
4748

4849
namespace solidity::frontend::test
4950
{
@@ -294,7 +295,8 @@ BOOST_AUTO_TEST_CASE(designated_invalid_instruction)
294295
BOOST_CHECK(successAssemble("{ invalid() }"));
295296
}
296297

297-
BOOST_AUTO_TEST_CASE(inline_assembly_shadowed_instruction_declaration)
298+
// TODO: Implement EOF counterpart
299+
BOOST_AUTO_TEST_CASE(inline_assembly_shadowed_instruction_declaration, *boost::unit_test::precondition(nonEOF()))
298300
{
299301
CHECK_ASSEMBLE_ERROR("{ let gas := 1 }", ParserError, "Cannot use builtin");
300302
}
@@ -333,14 +335,14 @@ BOOST_AUTO_TEST_CASE(returndatacopy)
333335
BOOST_CHECK(successAssemble("{ returndatacopy(0, 32, 64) }"));
334336
}
335337

336-
BOOST_AUTO_TEST_CASE(staticcall)
338+
BOOST_AUTO_TEST_CASE(staticcall, *boost::unit_test::precondition(nonEOF()))
337339
{
338340
if (!solidity::test::CommonOptions::get().evmVersion().hasStaticCall())
339341
return;
340342
BOOST_CHECK(successAssemble("{ pop(staticcall(10000, 0x123, 64, 0x10, 128, 0x10)) }"));
341343
}
342344

343-
BOOST_AUTO_TEST_CASE(create2)
345+
BOOST_AUTO_TEST_CASE(create2, *boost::unit_test::precondition(nonEOF()))
344346
{
345347
if (!solidity::test::CommonOptions::get().evmVersion().hasCreate2())
346348
return;

test/libsolidity/SolidityCompiler.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
#include <boost/test/unit_test.hpp>
2626

27+
using namespace solidity::test;
2728

2829
namespace solidity::frontend::test
2930
{
@@ -42,7 +43,8 @@ class SolidityCompilerFixture: protected AnalysisFramework
4243

4344
BOOST_FIXTURE_TEST_SUITE(SolidityCompiler, SolidityCompilerFixture)
4445

45-
BOOST_AUTO_TEST_CASE(does_not_include_creation_time_only_internal_functions)
46+
// TODO: Implement EOF counterpart
47+
BOOST_AUTO_TEST_CASE(does_not_include_creation_time_only_internal_functions, *boost::unit_test::precondition(nonEOF()))
4648
{
4749
char const* sourceCode = R"(
4850
contract C {

test/libsolidity/ViewPureChecker.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
#include <tuple>
2929

3030
using namespace solidity::langutil;
31+
using namespace solidity::test;
3132

3233
namespace solidity::frontend::test
3334
{
@@ -133,7 +134,7 @@ BOOST_AUTO_TEST_CASE(address_staticcall)
133134
}
134135

135136

136-
BOOST_AUTO_TEST_CASE(assembly_staticcall)
137+
BOOST_AUTO_TEST_CASE(assembly_staticcall, *boost::unit_test::precondition(nonEOF()))
137138
{
138139
std::string text = R"(
139140
contract C {

0 commit comments

Comments
 (0)