diff options
author | chriseth <chris@ethereum.org> | 2018-03-15 01:07:55 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-15 01:07:55 +0800 |
commit | 78abe81f0874f65b02ddc0529b4bd0ce93fa52a2 (patch) | |
tree | d8d1e8db2f7012aaabb84f134594ee4afa6a201e /test/boostTest.cpp | |
parent | eecc26deec1815191bc3405e54ef84daaba853a1 (diff) | |
parent | d0c96d53e90be5e58d8fef2e77fbd71baf2027ba (diff) | |
download | dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar.gz dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar.bz2 dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar.lz dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar.xz dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.tar.zst dexon-solidity-78abe81f0874f65b02ddc0529b4bd0ce93fa52a2.zip |
Merge branch 'develop' into externalFunctionsInLibraries
Diffstat (limited to 'test/boostTest.cpp')
-rw-r--r-- | test/boostTest.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/boostTest.cpp b/test/boostTest.cpp index e557ff95..f16973b5 100644 --- a/test/boostTest.cpp +++ b/test/boostTest.cpp @@ -35,7 +35,7 @@ #pragma GCC diagnostic pop -#include <test/TestHelper.h> +#include <test/Options.h> #include <test/libsolidity/SyntaxTest.h> using namespace boost::unit_test; @@ -55,6 +55,7 @@ test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] ) { master_test_suite_t& master = framework::master_test_suite(); master.p_name.value = "SolidityTests"; + dev::test::Options::get().validate(); solAssert(dev::solidity::test::SyntaxTest::registerTests( master, dev::test::Options::get().testPath / "libsolidity", |