Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Add chain upgrade system tests#501

Draft
pinosu wants to merge 1 commit into
upgrade_wasmd_33from
system_tests_upgrade
Draft

Add chain upgrade system tests#501
pinosu wants to merge 1 commit into
upgrade_wasmd_33from
system_tests_upgrade

Conversation

@pinosu
Copy link
Copy Markdown
Contributor

@pinosu pinosu commented Aug 23, 2023

No description provided.

@pinosu pinosu changed the title Start system tests implementation Add chain upgrade system tests Aug 23, 2023
Comment thread testing/system.go
Comment on lines +541 to +555
go func() {
_ = cmd.Wait()
s.pidsLock.Lock()
defer s.pidsLock.Unlock()
if len(s.pids) == 0 {
return
}
newPids := make([]int, 0, len(s.pids)-1)
for _, p := range s.pids {
if p != cmd.Process.Pid {
newPids = append(newPids, p)
}
}
s.pids = newPids
}()

Check notice

Code scanning / CodeQL

Spawning a Go routine

Spawning a Go routine may be a possible source of non-determinism
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants