Expand description
Assert a command (built with program and args) stdout string is less than or equal to another.
Pseudocode:
(program1 + args1 ⇒ command ⇒ stdout ⇒ string) ≤ (program2 + args2 ⇒ command ⇒ stdout ⇒ string)
§Example
let a_program = "bin/printf-stdout";
let a_args = ["%s", "hello"];
let b_program = "bin/printf-stdout";
let b_args = ["%s%s%s%s%s", "h", "u", "l", "l", "o"];
assert_program_args_stdout_le!(&a_program, &a_args, &b_program, &b_args);