(
walltime_args: &exec_harness::walltime::WalltimeExecutionArgs,
command: &[String],
)
| 339 | } |
| 340 | |
| 341 | fn wrap_with_exec_harness( |
| 342 | walltime_args: &exec_harness::walltime::WalltimeExecutionArgs, |
| 343 | command: &[String], |
| 344 | ) -> String { |
| 345 | shell_words::join( |
| 346 | std::iter::once(crate::executor::orchestrator::EXEC_HARNESS_COMMAND) |
| 347 | .chain(walltime_args.to_cli_args().iter().map(|s| s.as_str())) |
| 348 | .chain(command.iter().map(|s| s.as_str())), |
| 349 | ) |
| 350 | } |
| 351 | |
| 352 | // Ensure that the walltime executor works with the exec-harness |
| 353 | #[apply(exec_harness_test_cases)] |
no test coverage detected