-
Notifications
You must be signed in to change notification settings - Fork 6
[test] update tags #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[test] update tags #146
Conversation
@@ -58,7 +57,7 @@ def test04_naming_of_ostringstream(self): | |||
# Check if the object created is equal in all three cases | |||
cl0 = cppyy.gbl.std.ostringstream | |||
cl1 = cppyy.gbl.std.basic_ostringstream['char'] | |||
cl1 = cppyy.gbl.std.basic_ostringstream['char', cppyy.gbl.std.char_traits['char'] , cppyy.gbl.std.allocator['char']] | |||
cl2 = cppyy.gbl.std.basic_ostringstream['char', cppyy.gbl.std.char_traits['char'] , cppyy.gbl.std.allocator['char']] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this has changed to cl2
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise it is a NameError
in line 63-64.
There was a typo previously.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that an issue upstream?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upstream does it slightly differently. But it is cl2
, https://github.com/wlav/cppyy/blob/48468034cae4f06a1d33c1c3f086c38a6e2e7c3a/test/test_streams.py#L71.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Not sure why the CI fails but feel free to take control and merge.
`test01_string_through_string_view` by compiler-research/CPyCppyy#91
I am merging this PR. As the failures are in emscripten, and cppyy does not support it. |
afa173f
into
compiler-research:master
fixed by compiler-research/cppyy-backend#139
Now that compiler-research/CppInterOp#580 is merged. I guess we should merge #145 before this PR.