We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dfc230d + 6d9f8b6 commit ce61b89Copy full SHA for ce61b89
test/runtests.jl
@@ -303,9 +303,9 @@ end
303
@test p !== a
304
@test p == a
305
end
306
- ThreadingUtilities.store!(pointer(xu), pg, offset)
307
- @test @inferred(ThreadingUtilities.load(pointer(xu), typeof(pg), offset)) ===
308
- (offset + sizeof(UInt), greet)
+ new_offset = ThreadingUtilities.store!(pointer(xu), pg, offset)
+ @test @inferred(ThreadingUtilities.load(pointer(xu), typeof(pg), offset)) ==
+ (new_offset, greet)
309
ThreadingUtilities.store!(pointer(xu), ph, offset)
310
@test @inferred(ThreadingUtilities.load(pointer(xu), typeof(ph), offset)) ===
311
(offset + sizeof(UInt), greet[1])
0 commit comments