summaryrefslogtreecommitdiff
path: root/dhall/build.rs
diff options
context:
space:
mode:
authorNadrieril2020-04-05 22:56:45 +0100
committerNadrieril2020-04-05 22:56:45 +0100
commit12b81d55e1343fc30138d1a13cd48fa2e05744df (patch)
treeb99dadebeab8094c129cc5d872cfd561f9aa78f3 /dhall/build.rs
parentfc965361346461fbd52bb132caa874778d9fe913 (diff)
Fix import bug
Diffstat (limited to 'dhall/build.rs')
-rw-r--r--dhall/build.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index ec31192..784ce93 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -330,12 +330,7 @@ fn generate_tests() -> std::io::Result<()> {
module_name: "type_inference_success",
directory: "type-inference/success/",
variant: "TypeInferenceSuccess",
- exclude_path: Rc::new(|path: &str| {
- false
- // Too slow, but also not all features implemented
- // For now needs support for hashed imports
- || path == "prelude"
- }),
+ too_slow_path: Rc::new(|path: &str| path == "prelude"),
output_type: Some(FileType::Text),
..default_feature.clone()
},