Further disable roc_repl_expect on Windows

This commit is contained in:
Brian Carroll 2022-08-26 08:29:48 +01:00
parent 4a4c7b7a11
commit 7caca140b0
No known key found for this signature in database
GPG key ID: 9CF4E3BF9C4722C7

View file

@ -11,11 +11,15 @@ use roc_repl_eval::{
use roc_target::TargetInfo;
use roc_types::subs::{Subs, Variable};
#[cfg(not(windows))]
mod app;
#[cfg(not(windows))]
pub mod run;
#[cfg(not(windows))]
use app::{ExpectMemory, ExpectReplApp};
#[cfg(not(windows))]
#[allow(clippy::too_many_arguments)]
pub fn get_values<'a>(
target_info: TargetInfo,
@ -75,6 +79,7 @@ pub fn get_values<'a>(
Ok((app.offset, result))
}
#[cfg(not(windows))]
#[cfg(test)]
mod test {
use indoc::indoc;