From c9293f2f2370e16af239f711b56245cf70c29970 Mon Sep 17 00:00:00 2001 From: chriseth Date: Wed, 23 Nov 2016 15:14:25 +0100 Subject: Enable the optimizer for test runs. --- test/TestHelper.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/TestHelper.cpp') diff --git a/test/TestHelper.cpp b/test/TestHelper.cpp index 0b6904bf..d670ebff 100644 --- a/test/TestHelper.cpp +++ b/test/TestHelper.cpp @@ -39,6 +39,9 @@ Options::Options() ipcPath = suite.argv[i + 1]; i++; } + else if (string(suite.argv[i]) == "--optimize") + optimize = true; + if (ipcPath.empty()) if (auto path = getenv("ETH_TEST_IPC")) ipcPath = path; -- cgit