aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-03-14 17:45:01 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-03-14 17:45:01 +0800
commit1882c508c6d3ef46847ba23d06689ea17b01ccb5 (patch)
treea4a8c6e09083a5008ec07cd645ee5b3390f8cae9 /test
parent032ea9bc5ba0e0d46deb2620934500071f31e3de (diff)
downloaddexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar.gz
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar.bz2
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar.lz
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar.xz
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.tar.zst
dexon-solidity-1882c508c6d3ef46847ba23d06689ea17b01ccb5.zip
soltest: force the use of the --testpath option for soltest with an explicit error.
Diffstat (limited to 'test')
-rw-r--r--test/boostTest.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/boostTest.cpp b/test/boostTest.cpp
index e557ff95..8ad97db3 100644
--- a/test/boostTest.cpp
+++ b/test/boostTest.cpp
@@ -55,6 +55,10 @@ test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] )
{
master_test_suite_t& master = framework::master_test_suite();
master.p_name.value = "SolidityTests";
+ solAssert(
+ !dev::test::Options::get().testPath.empty(),
+ "No test path specified. The --testpath argument is required."
+ );
solAssert(dev::solidity::test::SyntaxTest::registerTests(
master,
dev::test::Options::get().testPath / "libsolidity",