Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arg0d committed Jan 3, 2025
1 parent 280460c commit 368d634
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,8 @@ assert(getMaybeUniffiOneTypes(ts: [UniffiOneType(sval: "hello"), nil]) == [Uniff
print("AAAAAAAAAAAAAAAAAAAAAAA 6")
fflush(stdout)

var counter = DispatchGroup()
let semaphore = DispatchSemaphore(value: 0)
print("AAAAAAAAAAAAAAAAAAAAAAA 6.1")
counter.enter()
print("AAAAAAAAAAAAAAAAAAAAAAA 6.2")
Task {
print("BBBBBBBBBBBBBBBBBBBB 1")
Expand All @@ -66,11 +65,11 @@ Task {
assert(uniffiOneType.sval == "hello")
print("BBBBBBBBBBBBBBBBBBBB 5")

counter.leave()
semaphore.signal()
print("BBBBBBBBBBBBBBBBBBBB 6")
}
print("AAAAAAAAAAAAAAAAAAAAAAA 6.3")
counter.wait()
semaphore.wait()
print("AAAAAAAAAAAAAAAAAAAAAAA 6.4")

print("AAAAAAAAAAAAAAAAAAAAAAA 7")
Expand Down

0 comments on commit 368d634

Please sign in to comment.