summaryrefslogtreecommitdiff
path: root/dhall/build.rs
diff options
context:
space:
mode:
authorNadrieril2020-02-09 18:35:16 +0000
committerNadrieril2020-02-09 19:58:28 +0000
commit02cacfd0360a0acea959c5a9b6d1b7fb0241db81 (patch)
tree60843db65ccac0d69c27e5d3bb5f23f0e35837e1 /dhall/build.rs
parent5d0f37d89f23512c2676b1f2d0235f25269c53ab (diff)
Remove distinction between failure and error tests
Diffstat (limited to 'dhall/build.rs')
-rw-r--r--dhall/build.rs28
1 files changed, 0 insertions, 28 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index 67f11e2..552966b 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -267,22 +267,6 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "customHeadersUsingBoundVariable"
}),
input_type: FileType::Text,
- output_type: None,
- },
- TestFeature {
- module_name: "import_error",
- directory: "import/failure/",
- variant: "ImportError",
- path_filter: Box::new(|path: &str| {
- false
- || path == "alternativeEnv"
- || path == "alternativeEnvMissing"
- || path == "hashMismatch"
- || path == "missing"
- || path == "referentiallyInsane"
- || path == "customHeadersUsingBoundVariable"
- }),
- input_type: FileType::Text,
output_type: Some(FileType::UI),
},
TestFeature {
@@ -355,18 +339,6 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/MergeHandlerFreeVar"
}),
input_type: FileType::Text,
- output_type: None,
- },
- TestFeature {
- module_name: "type_error",
- directory: "type-inference/failure/",
- variant: "TypeError",
- path_filter: Box::new(|path: &str| {
- false
- // TODO: enable free variable checking
- || path == "unit/MergeHandlerFreeVar"
- }),
- input_type: FileType::Text,
output_type: Some(FileType::UI),
},
];