Add test for QuicksortApp

This commit is contained in:
Richard Feldman 2021-07-26 22:38:02 -04:00
parent 87f3803e56
commit d2ca4bd30a
2 changed files with 8 additions and 0 deletions

View File

@ -13,3 +13,4 @@ rbtree-del
rbtree-ck
test-astar
test-base64
quicksortapp

View File

@ -355,6 +355,13 @@ mod cli_run {
expected_ending: "",
use_valgrind: true,
},
quicksort_app => Example {
filename: "QuicksortApp.roc",
executable_filename: "quicksortapp",
stdin: &[],
expected_ending: "todo put the correct quicksort answer here",
use_valgrind: true,
},
}
fn check_for_tests(examples_dir: &str, all_examples: &mut HashMap<&str, Example<'_>>) {