test: add a test importing a file name starting with a period

This commit is contained in:
Yoichi Hirai 2017-01-03 18:16:33 +01:00
parent 41fe412389
commit 07f34e0023
No known key found for this signature in database
GPG Key ID: E7B75D080FCF7992

View File

@ -164,6 +164,14 @@ BOOST_AUTO_TEST_CASE(context_dependent_remappings)
BOOST_CHECK(c.compile());
}
BOOST_AUTO_TEST_CASE(filename_with_period)
{
CompilerStack c;
c.addSource("a/a.sol", "import \".b.sol\"; contract A is B {} pragma solidity >=0.0;");
c.addSource("a/.b.sol", "contract B {} pragma solidity >=0.0;");
BOOST_CHECK(!c.compile());
}
BOOST_AUTO_TEST_SUITE_END()
}