aboutsummaryrefslogtreecommitdiffstats
path: root/test/TestHelper.cpp
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-08-06 17:37:52 +0800
committerchriseth <c@ethdev.com>2016-08-12 21:11:30 +0800
commit1bc0320811ef2b213bda0629b702bffae5e2f925 (patch)
treee3b2eaaa5eed840569d0ccf8445e85de05e258b8 /test/TestHelper.cpp
parent0d894a6832d21ba68f0f3d2fea66c8f4efc45815 (diff)
downloaddexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar.gz
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar.bz2
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar.lz
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar.xz
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.tar.zst
dexon-solidity-1bc0320811ef2b213bda0629b702bffae5e2f925.zip
Cleanup of test suite init.
Diffstat (limited to 'test/TestHelper.cpp')
-rw-r--r--test/TestHelper.cpp34
1 files changed, 14 insertions, 20 deletions
diff --git a/test/TestHelper.cpp b/test/TestHelper.cpp
index a704ab17..bfc5b54c 100644
--- a/test/TestHelper.cpp
+++ b/test/TestHelper.cpp
@@ -24,28 +24,22 @@
using namespace std;
using namespace dev::test;
-Options::Options(int argc, char** argv)
+Options const& Options::get()
{
- tArgc = 0;
- tArgv = new char*[argc];
- for (auto i = 0; i < argc; i++)
- {
- string arg = argv[i];
- if (arg == "--ipc" && i + 1 < argc)
+ static Options instance;
+ return instance;
+}
+
+Options::Options()
+{
+ auto const& suite = boost::unit_test::framework::master_test_suite();
+ for (auto i = 0; i < suite.argc; i++)
+ if (string(suite.argv[i]) == "--ipc" && i + 1 < suite.argc)
{
- ipcPath = argv[i + 1];
+ ipcPath = suite.argv[i + 1];
i++;
}
- else
- {
- tArgv[i] = argv[i];
- tArgc++;
- }
- }
+ if (ipcPath.empty())
+ if (auto path = getenv("ETH_TEST_IPC"))
+ ipcPath = path;
}
-
-Options const& Options::get(int argc, char** argv)
-{
- static Options instance(argc, argv);
- return instance;
-} \ No newline at end of file