mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-01 12:33:12 +08:00
Return proper result for BB tests
Signed-off-by: Kamil Diedrich <kamil.diedrich@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
21ef249961
commit
1d52a72809
@@ -105,5 +105,5 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
SUCCESS_OR_TERMINATE(zeContextDestroy(context));
|
||||
std::cout << "\nZello Copy Fence Results validation " << (outputValidationSuccessful ? "PASSED" : "FAILED") << "\n";
|
||||
return 0;
|
||||
return (outputValidationSuccessful ? 0 : 1);
|
||||
}
|
||||
|
||||
@@ -124,5 +124,5 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
SUCCESS_OR_TERMINATE(zeContextDestroy(context));
|
||||
std::cout << "\nZello Copy Image Results validation " << (outputValidationSuccessful ? "PASSED" : "FAILED") << "\n";
|
||||
return 0;
|
||||
return (outputValidationSuccessful ? 0 : 1);
|
||||
}
|
||||
|
||||
@@ -559,5 +559,5 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
SUCCESS_OR_TERMINATE(zeContextDestroy(context));
|
||||
std::cout << "\nZello Copy Only Results validation " << (outputValidationSuccessful ? "PASSED" : "FAILED") << "\n";
|
||||
return 0;
|
||||
return (outputValidationSuccessful ? 0 : 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user