diff options
author | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-31 17:44:00 +0800 |
---|---|---|
committer | Paweł Bylica <pawel.bylica@imapp.pl> | 2015-03-31 17:44:00 +0800 |
commit | 7fb437d0da0819c034b659f7a8ce4f35dd2a8b69 (patch) | |
tree | f2d75a61bc330b1c897d897e65251e9a0a4a9f5f /TestHelper.cpp | |
parent | f07089ffa390c02a81c1dd057329cd34797d5eec (diff) | |
parent | 8860f8d4c3590423f486559b11bf6c2db9bbab7a (diff) | |
download | dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.gz dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.tar.zst dexon-solidity-7fb437d0da0819c034b659f7a8ce4f35dd2a8b69.zip |
Merge remote-tracking branch 'upstream/develop' into evmjit
Diffstat (limited to 'TestHelper.cpp')
-rw-r--r-- | TestHelper.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index b3e64f47..295b759f 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -375,22 +375,6 @@ void checkCallCreates(eth::Transactions _resultCallCreates, eth::Transactions _e } } -std::string getTestPath() -{ - string testPath; - const char* ptestPath = getenv("ETHEREUM_TEST_PATH"); - - if (ptestPath == NULL) - { - cnote << " could not find environment variable ETHEREUM_TEST_PATH \n"; - testPath = "../../../tests"; - } - else - testPath = ptestPath; - - return testPath; -} - void userDefinedTest(string testTypeFlag, std::function<void(json_spirit::mValue&, bool)> doTests) { for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i) |