We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
discard """ file: "t7758.nim" exitcode: 0 """ import asyncdispatch proc task() {.async.} = await sleepAsync(1000) when isMainModule: var counter = 0 var f = task() while not f.finished: inc(counter) poll() doAssert counter == 2
it happened in this PR #8682 which is (IMO) unrelated to the failure https://travis-ci.org/nim-lang/Nim/jobs/419901855
PASS: timplicititems.nim C (10.99310398 secs) PASS: t5888.nim C (11.55188513 secs) FAIL: t7758.nim C Test "tests/async/t7758.nim" in category "async" Failure: reExitcodesDiffer Expected: exitcode: 0 Gotten: exitcode: 1 Output: t7758.nim(17) t7758 system.nim(3759) failedAssertImpl system.nim(3752) raiseAssert system.nim(2805) sysFatal Error: unhandled exception: counter == 2 [AssertionError] PASS: tcollections_to_string.nim C (24.46789384 secs)
that seems like a bug could be lurking somewhere?
The text was updated successfully, but these errors were encountered:
select
effe2fd
No branches or pull requests
it happened in this PR #8682 which is (IMO) unrelated to the failure
https://travis-ci.org/nim-lang/Nim/jobs/419901855
PASS: timplicititems.nim C (10.99310398 secs)
PASS: t5888.nim C (11.55188513 secs)
FAIL: t7758.nim C
Test "tests/async/t7758.nim" in category "async"
Failure: reExitcodesDiffer
Expected:
exitcode: 0
Gotten:
exitcode: 1
Output:
t7758.nim(17) t7758
system.nim(3759) failedAssertImpl
system.nim(3752) raiseAssert
system.nim(2805) sysFatal
Error: unhandled exception: counter == 2 [AssertionError]
PASS: tcollections_to_string.nim C (24.46789384 secs)
that seems like a bug could be lurking somewhere?
The text was updated successfully, but these errors were encountered: