diff --git a/v2/robotmk/src/bin/agent.rs b/v2/robotmk/src/bin/agent.rs index 301d68f6..f6df9a9a 100644 --- a/v2/robotmk/src/bin/agent.rs +++ b/v2/robotmk/src/bin/agent.rs @@ -57,7 +57,7 @@ fn report_config_content(content: String) { fn print_sections(sections: &[Section], stdout: &mut impl io::Write) { // TODO: Test this function. for section in sections.iter() { - let mut with_header = format!("<<<{}>>>\n{}\n", section.name, section.content); + let mut with_header = format!("<<<{}:sep(0)>>>\n{}\n", section.name, section.content); if let Host::Piggyback(host) = §ion.host { with_header = format!("<<<<{}>>>>\n{}<<<<>>>>\n", host, with_header); } @@ -67,7 +67,7 @@ fn print_sections(sections: &[Section], stdout: &mut impl io::Write) { fn main() { let arguments = Args::parse(); - println!("<<>>"); + println!("<<>>"); let config_path = match determine_config_path(arguments.config_path) { Ok(p) => p, Err(e) => { diff --git a/v2/robotmk/src/bin/scheduler/results.rs b/v2/robotmk/src/bin/scheduler/results.rs index 22d8faaa..c72b6de9 100644 --- a/v2/robotmk/src/bin/scheduler/results.rs +++ b/v2/robotmk/src/bin/scheduler/results.rs @@ -18,7 +18,7 @@ pub struct RCCSetupFailures { impl WriteSection for RCCSetupFailures { fn name() -> &'static str { - "rcc_setup_failures" + "robotmk_rcc_setup_failures" } } @@ -32,7 +32,7 @@ pub struct BuildStates<'a>(&'a HashMap); impl WriteSection for BuildStates<'_> { fn name() -> &'static str { - "environment_build_states" + "robotmk_environment_build_states" } } @@ -80,7 +80,7 @@ pub struct SuiteExecutionReport { impl WritePiggybackSection for SuiteExecutionReport { fn name() -> &'static str { - "suite_execution_report" + "robotmk_suite_execution_report" } }