mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +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_target::TargetInfo;
|
||||||
use roc_types::subs::{Subs, Variable};
|
use roc_types::subs::{Subs, Variable};
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
mod app;
|
mod app;
|
||||||
|
#[cfg(not(windows))]
|
||||||
pub mod run;
|
pub mod run;
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
use app::{ExpectMemory, ExpectReplApp};
|
use app::{ExpectMemory, ExpectReplApp};
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
#[allow(clippy::too_many_arguments)]
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub fn get_values<'a>(
|
pub fn get_values<'a>(
|
||||||
target_info: TargetInfo,
|
target_info: TargetInfo,
|
||||||
|
@ -75,6 +79,7 @@ pub fn get_values<'a>(
|
||||||
Ok((app.offset, result))
|
Ok((app.offset, result))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(not(windows))]
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use indoc::indoc;
|
use indoc::indoc;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue