mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
Further disable roc_repl_expect on Windows
This commit is contained in:
parent
4a4c7b7a11
commit
7caca140b0
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue