mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Disable EndToEnd/snark test on <Byzantium (given the precompiles were introduced after)
This commit is contained in:
parent
ddf6e067ed
commit
fca0f6e2c1
@ -43,6 +43,7 @@
|
|||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace std::placeholders;
|
using namespace std::placeholders;
|
||||||
using namespace dev::test;
|
using namespace dev::test;
|
||||||
|
using namespace langutil;
|
||||||
|
|
||||||
#define ALSO_VIA_YUL(CODE) \
|
#define ALSO_VIA_YUL(CODE) \
|
||||||
{ \
|
{ \
|
||||||
@ -12888,6 +12889,9 @@ BOOST_AUTO_TEST_CASE(address_overload_resolution)
|
|||||||
|
|
||||||
BOOST_AUTO_TEST_CASE(snark)
|
BOOST_AUTO_TEST_CASE(snark)
|
||||||
{
|
{
|
||||||
|
if (dev::test::Options::get().evmVersion() <= EVMVersion::byzantium())
|
||||||
|
return;
|
||||||
|
|
||||||
char const* sourceCode = R"(
|
char const* sourceCode = R"(
|
||||||
library Pairing {
|
library Pairing {
|
||||||
struct G1Point {
|
struct G1Point {
|
||||||
|
Loading…
Reference in New Issue
Block a user