Browse Source

Merge pull request #1695 from imapp-pl/pr/testeth

testeth: Handle command line options for user defined tests
cl-refactor
Gav Wood 10 years ago
parent
commit
8ab3db13ba
  1. 2
      test/TestHelper.cpp

2
test/TestHelper.cpp

@ -539,6 +539,8 @@ void checkCallCreates(eth::Transactions _resultCallCreates, eth::Transactions _e
void userDefinedTest(string testTypeFlag, std::function<void(json_spirit::mValue&, bool)> doTests)
{
Options::get(); // parse command line options, e.g. to enable JIT
for (int i = 1; i < boost::unit_test::framework::master_test_suite().argc; ++i)
{
string arg = boost::unit_test::framework::master_test_suite().argv[i];

Loading…
Cancel
Save