summaryrefslogtreecommitdiff
path: root/dhall/build.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dhall/build.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index c95a26d..8992f22 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -339,6 +339,8 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/CompletionWithWrongDefaultType"
|| path == "unit/CompletionWithWrongFieldName"
|| path == "unit/CompletionWithWrongOverridenType"
+ // TODO: enable free variable checking
+ || path == "unit/MergeHandlerFreeVar"
}),
input_type: FileType::Text,
output_type: None,
@@ -367,6 +369,8 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "unit/CompletionWithWrongDefaultType"
|| path == "unit/CompletionWithWrongFieldName"
|| path == "unit/CompletionWithWrongOverridenType"
+ // TODO: enable free variable checking
+ || path == "unit/MergeHandlerFreeVar"
}),
input_type: FileType::Text,
output_type: None,
@@ -383,8 +387,8 @@ fn generate_tests() -> std::io::Result<()> {
fn convert_abnf_to_pest() -> std::io::Result<()> {
let out_dir = env::var("OUT_DIR").unwrap();
- let abnf_path = "src/dhall.abnf";
- let visibility_path = "src/dhall.pest.visibility";
+ let abnf_path = "src/syntax/text/dhall.abnf";
+ let visibility_path = "src/syntax/text/dhall.pest.visibility";
let grammar_path = Path::new(&out_dir).join("dhall.pest");
println!("cargo:rerun-if-changed={}", abnf_path);
println!("cargo:rerun-if-changed={}", visibility_path);