Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/system/alloc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,7 @@ proc rawDealloc(a: var MemRegion, p: pointer) =
#sysAssert(isAllocatedPtr(a, p), "rawDealloc: no allocated pointer")
sysAssert(allocInv(a), "rawDealloc: begin")
var c = pageAddr(p)
sysAssert(c != nil, "rawDealloc: begin")
if isSmallChunk(c):
# `p` is within a small chunk:
var c = cast[PSmallChunk](c)
Expand Down
1 change: 1 addition & 0 deletions testament/testament.nim
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ proc testSpecHelper(r: var TResults, test: var TTest, expected: TSpec,
else:
buf
if exitCode != expected.exitCode:
given.err = reExitcodesDiffer
r.addResult(test, target, extraOptions, "exitcode: " & $expected.exitCode,
"exitcode: " & $exitCode & "\n\nOutput:\n" &
bufB, reExitcodesDiffer)
Expand Down
1 change: 1 addition & 0 deletions tests/destructor/topttree.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
output: '''10.0
60.0
90.0
Expand Down
1 change: 1 addition & 0 deletions tests/misc/ttlsemulation.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
matrix: "-d:nimTtlsemulationCase1 --threads --tlsEmulation:on; -d:nimTtlsemulationCase2 --threads --tlsEmulation:off; -d:nimTtlsemulationCase3 --threads"
targets: "c cpp"
"""
Expand Down
1 change: 1 addition & 0 deletions tests/threads/t7172.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
output: '''
In doStuff()
In initProcess()
Expand Down
1 change: 1 addition & 0 deletions tests/threads/t8535.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
output: '''0
hello'''
"""
Expand Down
1 change: 1 addition & 0 deletions tests/threads/threadex.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
outputsub: "Just a simple text for test"
"""

Expand Down
2 changes: 1 addition & 1 deletion tests/threads/tjsthreads.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
discard """
targets: "c cpp js"
targets: "js"
matrix: "--threads:on"
"""

Expand Down
1 change: 1 addition & 0 deletions tests/threads/tmanyjoin.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
outputsub: "129"
"""

Expand Down
1 change: 1 addition & 0 deletions tests/threads/tonthreadcreation.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
matrix: "--mm:refc; --mm:orc --deepcopy:on"
output: '''some string here
dying some string here'''
Expand Down
1 change: 1 addition & 0 deletions tests/threads/tracy_allocator.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
output: '''true'''
"""

Expand Down
1 change: 1 addition & 0 deletions tests/threads/treusetvar.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
outputsub: "65"
"""

Expand Down
1 change: 1 addition & 0 deletions tests/threads/tthreadvars.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
discard """
disabled: i386
output: '''
10
1111
Expand Down