test: add zello_scratch to global_bindless test

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
This commit is contained in:
Mateusz Hoppe 2024-06-05 15:13:11 +00:00 committed by Compute-Runtime-Automation
parent 51ec39fc55
commit ca3ba93e73
1 changed files with 9 additions and 0 deletions

View File

@ -65,5 +65,14 @@ int main(int argc, char *argv[], char **envp) {
execve(argv2[0], argv2, const_cast<char **>(allEnv.data()));
path = getRunPath(argv[0]);
path += fSeparator;
path += "zello_scratch";
argv2[0] = const_cast<char *>(path.c_str());
std::cout << "\nRunning " << argv2[0] << " with UseExternalAllocatorForSshAndDsh=1 UseBindlessMode=1..." << std::endl;
execve(argv2[0], argv2, const_cast<char **>(allEnv.data()));
return -1;
}