Skip to content

Commit

Permalink
Fix #929, print object ids in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jphickey committed Mar 31, 2021
1 parent c24bee1 commit 56cf1ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/file-api-test/file-api-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void TestCreatRemove(void)
/* try creating with file name too big, should fail */
status = OS_OpenCreate(&fd, longfilename, OS_FILE_FLAG_CREATE | OS_FILE_FLAG_TRUNCATE, OS_READ_WRITE);
UtAssert_True(status < OS_SUCCESS, "status after create file name too long = %d", (int)status);
UtAssert_True(!OS_ObjectIdDefined(fd), "fd == OS_OBJECT_ID_UNDEFINED");
UtAssert_True(!OS_ObjectIdDefined(fd), "fd(%lu) not defined",OS_ObjectIdToInteger(fd));

/* try removing with file name too big. Should Fail */
status = OS_remove(longfilename);
Expand Down Expand Up @@ -236,7 +236,7 @@ void TestOpenClose(void)
/* open a file that was never in the system */
status = OS_OpenCreate(&fd, "/drive0/FileNotHere", OS_FILE_FLAG_NONE, OS_READ_ONLY);
UtAssert_True(status < OS_SUCCESS, "status after open = %d", (int)status);
UtAssert_True(!OS_ObjectIdDefined(fd), "fd == OS_OBJECT_ID_UNDEFINED");
UtAssert_True(!OS_ObjectIdDefined(fd), "fd(%lu) not defined",OS_ObjectIdToInteger(fd));

/* try removing the file from the drive to end the function */
status = OS_remove(filename);
Expand Down

0 comments on commit 56cf1ec

Please sign in to comment.