Skip to content
Snippets Groups Projects
Commit 257a3fb5 authored by Christoph Borchert's avatar Christoph Borchert
Browse files

ecos_kernel_test: fix using wrong filename for serial output

Change-Id: I59ed61e2e4ee7ffe1a29390dd6ff0264406c3e7b
parent 442fa35c
No related branches found
No related tags found
No related merge requests found
......@@ -407,7 +407,7 @@ bool EcosKernelTestExperiment::performTrace(guest_address_t addr_entry, guest_ad
simulator.removeFlow(&sol);
ofstream of_serial(filename_serial(m_variant, m_benchmark).c_str(), ios::out|ios::binary);
if (!of.fail()) {
if (!of_serial.fail()) {
of_serial << sol.getOutput();
} else {
log << "failed to write " << filename_serial(m_variant, m_benchmark) << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment