mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-15 21:23:57 +00:00
Merge remote-tracking branch 'origin/main' into expect-print-values
This commit is contained in:
commit
13d0b75bc1
124 changed files with 5745 additions and 2274 deletions
|
|
@ -840,12 +840,24 @@ mod cli_run {
|
|||
let file_name = cli_testing_dir("benchmarks").join(roc_filename);
|
||||
|
||||
// TODO fix QuicksortApp and then remove this!
|
||||
if roc_filename == "QuicksortApp.roc" {
|
||||
eprintln!(
|
||||
match roc_filename {
|
||||
"QuicksortApp.roc" => {
|
||||
eprintln!(
|
||||
"WARNING: skipping testing benchmark {} because the test is broken right now!",
|
||||
roc_filename
|
||||
);
|
||||
return;
|
||||
return;
|
||||
}
|
||||
"TestAStar.roc" => {
|
||||
if cfg!(feature = "wasm32-cli-run") {
|
||||
eprintln!(
|
||||
"WARNING: skipping testing benchmark {} because it currently does not work on wasm32 due to dictionaries.",
|
||||
roc_filename
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
_ => {}
|
||||
}
|
||||
|
||||
#[cfg(all(not(feature = "wasm32-cli-run"), not(feature = "i386-cli-run")))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue