diff options
author | Gav Wood <g@ethdev.com> | 2015-03-28 02:34:07 +0800 |
---|---|---|
committer | Gav Wood <g@ethdev.com> | 2015-03-28 02:34:07 +0800 |
commit | 8ec03f1291b880c8b36c5b22dca39177a4d0da21 (patch) | |
tree | ddba0e3c192956ccce5828357ea411ff1f2f0bd3 /TestHelper.cpp | |
parent | d2b54075023f6ebe41cf9d18b1a136c30501a68e (diff) | |
parent | 9a032ef39fba817c965f3850aacafecb8f89cf7a (diff) | |
download | dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar.gz dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar.bz2 dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar.lz dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar.xz dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.tar.zst dexon-solidity-8ec03f1291b880c8b36c5b22dca39177a4d0da21.zip |
Merge pull request #1410 from debris/1351_tests
split #1351, tests
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 b29c5dc3..7dc00149 100644 --- a/TestHelper.cpp +++ b/TestHelper.cpp @@ -374,22 +374,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) |