Skip to content
Open
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
2 changes: 1 addition & 1 deletion testing/python3/DcgmGroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def RunSpecificTest(self, testName):
runDiagInfo = dcgm_structs.c_dcgmRunDiag_v10()
runDiagInfo.version = dcgm_structs.dcgmRunDiag_version10
for i in range(len(testName)):
runDiagInfo.testNames[0][i] = testName[i]
runDiagInfo.testNames[i] = testName[i]
runDiagInfo.groupId = self._groupId
runDiagInfo.validate = dcgm_structs.DCGM_POLICY_VALID_NONE
response = dcgm_agent.dcgmActionValidate_v2(self._dcgmHandle.handle, runDiagInfo)
Expand Down