Skip to content

Commit 860819e

Browse files
committed
[Comgr] Adding missing error check to mangled names test
Change-Id: I371e8045a4cac47c89bd6fda7ad397de7f808d31
1 parent 84f6de5 commit 860819e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

amd/comgr/test/mangled_names_test.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,10 @@ int main(int argc, char *argv[]) {
245245
Status = amd_comgr_action_data_get_data(DataSetExec,
246246
AMD_COMGR_DATA_KIND_EXECUTABLE,
247247
0, &DataExec);
248+
checkError(Status, "amd_comgr_action_data_get_data");
248249

249250
Status = amd_comgr_populate_mangled_names(DataExec, &numNames);
251+
checkError(Status, "amd_comgr_populate_mangled_names");
250252

251253
if (numNames != 4) {
252254
printf("amd_populate_mangled_names Failed: "

0 commit comments

Comments
 (0)