We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba74fb commit b315dd4Copy full SHA for b315dd4
1 file changed
src/cache/models.rs
@@ -379,6 +379,14 @@ impl std::fmt::Display for VerifyResult {
379
&"\nExpected:".after_spaces(6),
380
self.expected_output[0],
381
)?,
382
+ // Memory Exceeded
383
+ 12 => write!(
384
+ f,
385
+ "\n{}\n\n{}{}\n",
386
+ &self.status.status_msg.yellow().bold(),
387
+ &"Last case:".after_spaces(5).dimmed(),
388
+ &self.data_input.replace("\n", "↩ "),
389
+ )?,
390
// Output Timeout Exceeded
391
//
392
// TODO: 13 and 14 might have some different,
0 commit comments