Bernard Normier
Bernard Normier
The clang-tidy diagnostics does not match your generated code snippet.
There was the same failure on Ubuntu in my PR build.
Fixed by #2120 in C#. Fixed by #2123 in C++.
``` ice % rg hashInit js/src/Ice/Reference.js 45: this._hashInitialized = false; 265: if (this._hashInitialized) { 285: this._hashInitialized = true; 990: if (!this._hashInitialized) { js/src/Ice/IPEndpointI.js 77: this._hashCode = this.hashInit(5381); 170: hashInit(h) {...
Any other detail to reproduce this failure? The binding test succeeds and runs fast for me in the same environment. ``` *** [1/1 loop=197] Running csharp/Ice/binding tests *** [ running...
You need --all to reproduce it: ``` *** [1/1] Running csharp/Ice/binding tests *** [ running client/server test - 01/26/24 15:08:31 ] - Config: ssl,mx testing binding with single endpoint... ok...
The issue is caused by: https://github.com/zeroc-ice/ice/blob/ac98b4fcb9979f0709f1524fde28937cc521fe3d/scripts/tests/Ice/binding.py#L17 Without the setrlimit, it works fine. Despite the comment, it's not clear to me why we set this limit.
I'll give it a try.
I tried and it doesn't work. The capture of a lambda must be copyable, even if we never copy it. So either we somehow pass this InputStream as a parameter...
> > I tried and it doesn't work. The capture of a lambda must be copyable, even if we never copy it. > > I works when you use a...