Right now, the exit code and reason is not checked correctly in cri-tools: https://github.com/kubernetes-sigs/cri-tools/blob/71d27b1f93a87ff9462479a4c5f3fc8572d4715a/pkg/validate/container_linux.go#L161-L165 ```go Expect(state.ExitCode, int32(137)) ``` should be ```go Expect(state.ExitCode).To(Equal(int32(137))) ``` This shadows the actual test result. We should check with the following combinations if everything works as expected: - runc and conmon - runc and conmon-rs - crun and conmon - crun and conmon-rs Reason for this issue is that I fixed this behavior in https://github.com/kubernetes-sigs/cri-tools/pull/1496 which introduced failing CI tests within this repository.