Skip to content
Merged
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
10 changes: 9 additions & 1 deletion tests/e2e/nvidia-container-toolkit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,15 @@ var _ = Describe("docker", Ordered, ContinueOnFailure, func() {
Expect(chain[3]).To(HaveSuffix(hostDriverVersion))
Expect(chain[4]).To(HaveSuffix(hostDriverVersion))
}
Expect(symlinks).To(And(HaveKey("libcuda.so"), HaveKey("libnvidia-ml.so")))
Expect(symlinks).To(And(
HaveKey("libcuda.so"),
HaveKey("libnvcuvid.so"),
))

// The libnvidia-ml.so symlink was removed in the 560 driver branch.
if hostDriverMajor < "560" {
Expect(symlinks).To(HaveKey("libnvidia-ml.so"))
}
})
})

Expand Down