aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2017-11-12 12:23:01 +0000
committerMarco Poletti <poletti.marco@gmail.com>2017-11-12 12:23:01 +0000
commit59fe3a2f625b74acf44bbf027f00d505f17d31cb (patch)
treeafa7361ae828c5e4df5f0208cd9cb58f1ecf2681 /tests
parent680c75a48efe159a3fe93230f9c52088901debd1 (diff)
downloadgoogle-fruit-59fe3a2f625b74acf44bbf027f00d505f17d31cb.tar.gz
A few more fixes to make Fruit work under MSVC 2015 and 2017 in Appveyor.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test_install.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_install.py b/tests/test_install.py
index aa29d0c..2901da1 100755
--- a/tests/test_install.py
+++ b/tests/test_install.py
@@ -757,7 +757,8 @@ def test_install_with_args_error_not_hashable():
+ '|error: call to implicitly-deleted default constructor of .std::hash<Arg>.'
+ '|error: invalid use of incomplete type .struct std::hash<Arg>.'
+ '|error: implicit instantiation of undefined template .std::(__1::)?hash<Arg>.'
- + '|error C2338: The C\+\+ Standard doesn.t provide a hash for this type.',
+ + '|error C2338: The C\+\+ Standard doesn.t provide a hash for this type.'
+ + '|error C2064: term does not evaluate to a function taking 1 arguments',
COMMON_DEFINITIONS,
source)
@@ -786,7 +787,8 @@ def test_install_with_args_error_not_hashable_with_conversion():
+ '|error: call to implicitly-deleted default constructor of .std::hash<Arg>.'
+ '|error: invalid use of incomplete type .struct std::hash<Arg>.'
+ '|error: implicit instantiation of undefined template .std::(__1::)?hash<Arg>.'
- + '|error C2338: The C\+\+ Standard doesn.t provide a hash for this type.',
+ + '|error C2338: The C\+\+ Standard doesn.t provide a hash for this type.'
+ + '|error C2064: term does not evaluate to a function taking 1 arguments',
COMMON_DEFINITIONS,
source)