mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Only consider files ending with .sol and not starting with ~ in syntax tests.
This commit is contained in:
@@ -205,6 +205,13 @@ test_case *make_test_case(
|
||||
}
|
||||
#endif
|
||||
|
||||
bool SyntaxTest::isTestFilename(boost::filesystem::path const& _filename)
|
||||
{
|
||||
return _filename.extension().string() == ".sol" &&
|
||||
!boost::starts_with(_filename.string(), "~") &&
|
||||
!boost::starts_with(_filename.string(), ".");
|
||||
}
|
||||
|
||||
int SyntaxTest::registerTests(
|
||||
boost::unit_test::test_suite& _suite,
|
||||
boost::filesystem::path const& _basepath,
|
||||
@@ -220,7 +227,8 @@ int SyntaxTest::registerTests(
|
||||
fs::directory_iterator(fullpath),
|
||||
fs::directory_iterator()
|
||||
))
|
||||
numTestsAdded += registerTests(*sub_suite, _basepath, _path / entry.path().filename());
|
||||
if (fs::is_directory(entry.path()) || isTestFilename(entry.path().filename()))
|
||||
numTestsAdded += registerTests(*sub_suite, _basepath, _path / entry.path().filename());
|
||||
_suite.add(sub_suite);
|
||||
}
|
||||
else
|
||||
|
||||
@@ -71,6 +71,7 @@ public:
|
||||
boost::filesystem::path const& _basepath,
|
||||
boost::filesystem::path const& _path
|
||||
);
|
||||
static bool isTestFilename(boost::filesystem::path const& _filename);
|
||||
private:
|
||||
bool matchesExpectations(ErrorList const& _errors) const;
|
||||
static std::string errorMessage(Error const& _e);
|
||||
|
||||
Reference in New Issue
Block a user