fix bug in driver name check for DAOS.

Signed-off-by: Mohamad Chaarawi <mohamad.chaarawi@intel.com>
master
Mohamad Chaarawi 2018-09-12 22:53:42 +00:00
parent 2668363fb1
commit 2f713e947d
1 changed files with 1 additions and 1 deletions

View File

@ -921,7 +921,7 @@ static void RemoveFile(char *testFileName, int filePerProc, IOR_param_t * test)
}
} else {
if ((rank == 0) && (backend->access(testFileName, F_OK, test) == 0 ||
strcasecmp(test->api, "DAOS"))) {
strcasecmp(test->api, "DAOS") == 0)) {
backend->delete(testFileName, test);
}
}