You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been working on a simple UDP server for a game I'm making, simple repro source code is added. Running odin test . causes Assertion Failure: global_error_collector.curr_error_value_set.load() == true`.
Operating System & Odin Version:
Please paste odin report output:
Odin: dev-2024-03:eb61cf604
OS: Windows 11 Home Basic (version: 23H2), build 22631.3296
CPU: 12th Gen Intel(R) Core(TM) i5-12500H
RAM: 16109 MiB
Backend: LLVM 17.0.1
Expected Behavior
Please describe the behavior you are expecting
Running odin test . on the provided code snippet below should cause Assertion Failure: global_error_collector.curr_error_value_set.load() == true
Current Behavior
What is the current behavior?
Running odin test . should cause Assertion Failure: global_error_collector.curr_error_value_set.load() == true
Steps to Reproduce
Small code subset that reproduces assertion trigger.
Run odin test . on this package.
Now changing to returning &server.client_endpoints[client_idx], true instead of ^server.client_endpoints[client_idx], true does not trigger the assertion.
Context
I've been working on a simple UDP server for a game I'm making, simple repro source code is added. Running
odin test .
causesAssertion Failure:
global_error_collector.curr_error_value_set.load() == true`.odin report
output:Odin: dev-2024-03:eb61cf604
OS: Windows 11 Home Basic (version: 23H2), build 22631.3296
CPU: 12th Gen Intel(R) Core(TM) i5-12500H
RAM: 16109 MiB
Backend: LLVM 17.0.1
Expected Behavior
Please describe the behavior you are expecting
Running
odin test .
on the provided code snippet below should causeAssertion Failure: global_error_collector.curr_error_value_set.load() == true
Current Behavior
What is the current behavior?
Running
odin test .
should causeAssertion Failure: global_error_collector.curr_error_value_set.load() == true
Steps to Reproduce
Small code subset that reproduces assertion trigger.
Run
odin test .
on this package.Now changing to returning
&server.client_endpoints[client_idx], true
instead of^server.client_endpoints[client_idx], true
does not trigger the assertion.The text was updated successfully, but these errors were encountered: