mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 21:18:24 +08:00
fix: sporadic in software tags test
Related-To: NEO-9272 Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
10a97548c2
commit
c160e6ff93
@@ -208,7 +208,11 @@ SWTagBXML::SWTagBXML() {
|
||||
str = ss.str();
|
||||
|
||||
if (DebugManager.flags.DumpSWTagsBXML.get()) {
|
||||
writeDataToFile("swtagsbxml_dump.xml", str.c_str(), str.size());
|
||||
FILE *fp = NEO::IoFunctions::fopenPtr("swtagsbxml_dump.xml", "wb");
|
||||
if (fp) {
|
||||
NEO::IoFunctions::fwritePtr(str.c_str(), sizeof(char), str.size(), fp);
|
||||
NEO::IoFunctions::fclosePtr(fp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user