aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2016-11-22 18:07:23 +0800
committerYoichi Hirai <i@yoichihirai.com>2016-11-24 00:38:41 +0800
commit2faaddca05549ecf3e716ec83faeffde6e8d4c2f (patch)
tree349820685dc3caa7301a28e5e12d520cf59b3596 /test
parentcace51fc470f2ff75e52637e10aa5100f3ca5be6 (diff)
downloaddexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar.gz
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar.bz2
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar.lz
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar.xz
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.tar.zst
dexon-solidity-2faaddca05549ecf3e716ec83faeffde6e8d4c2f.zip
interface: fix the substring search
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/SolidityNameAndTypeResolution.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/libsolidity/SolidityNameAndTypeResolution.cpp b/test/libsolidity/SolidityNameAndTypeResolution.cpp
index 57ee86d6..0022dfb2 100644
--- a/test/libsolidity/SolidityNameAndTypeResolution.cpp
+++ b/test/libsolidity/SolidityNameAndTypeResolution.cpp
@@ -165,7 +165,7 @@ do \
{ \
Error err = expectError((text), (warning)); \
BOOST_CHECK(err.type() == (Error::Type::typ)); \
- BOOST_CHECK(err.regex_search({substring})); \
+ BOOST_CHECK(err.searchForSubstring(substring)); \
} while(0)
// [checkError(text, type, substring)] asserts that the compilation down to typechecking
@@ -4104,7 +4104,7 @@ BOOST_AUTO_TEST_CASE(warn_nonpresent_pragma)
auto sourceAndError = parseAnalyseAndReturnError(text, true, false);
BOOST_REQUIRE(!!sourceAndError.second);
BOOST_REQUIRE(!!sourceAndError.first);
- BOOST_CHECK(sourceAndError.second->regex_search("Source file does not specify required compiler version!"));
+ BOOST_CHECK(sourceAndError.second->searchForSubstring("Source file does not specify required compiler version!"));
}
BOOST_AUTO_TEST_CASE(unsatisfied_version)