summaryrefslogtreecommitdiff
path: root/dhall/build.rs
diff options
context:
space:
mode:
authorNadrieril Feneanar2020-03-04 22:41:41 +0000
committerGitHub2020-03-04 22:41:41 +0000
commit2ca97e97f1718141d826a78ab3da8197b2d55c69 (patch)
tree906e09e2686356c91a3a2ea4c373ad99827c7c13 /dhall/build.rs
parent5f720252a00bf2a45fef7f4c0855b79bd3932600 (diff)
parentd5874d9dcedc15eaccb942cc8f45f26b2335ed2d (diff)
Merge pull request #133 from basile-henry/record-projection-by-expression
Record projection by expression
Diffstat (limited to '')
-rw-r--r--dhall/build.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/dhall/build.rs b/dhall/build.rs
index 3ac2901..d9bceeb 100644
--- a/dhall/build.rs
+++ b/dhall/build.rs
@@ -281,13 +281,6 @@ fn generate_tests() -> std::io::Result<()> {
path == "simple/integerToDouble"
// Too slow
|| path == "remoteSystems"
- // TODO: projection by expression
- || path == "unit/RecordProjectionByTypeEmpty"
- || path == "unit/RecordProjectionByTypeNonEmpty"
- || path == "unit/RecordProjectionByTypeNormalizeProjection"
- || path == "unit/RecordProjectionByTypeWithinFieldSelection"
- || path == "unit/RecursiveRecordMergeWithinFieldSelection1"
- || path == "unit/NestedRecordProjectionByType"
// TODO: fix Double/show
|| path == "prelude/JSON/number/1"
// TODO: doesn't typecheck
@@ -298,8 +291,8 @@ fn generate_tests() -> std::io::Result<()> {
|| path == "simplifications/rightBiasedMergeWithinRecordProjectionWithinFieldSelection1"
|| path == "simplifications/rightBiasedMergeWithinRecursiveRecordMergeWithinFieldselection"
|| path == "simplifications/issue661"
- || path == "unit/RecordProjectionWithinFieldSelection"
|| path == "unit/RecursiveRecordMergeWithinFieldSelection0"
+ || path == "unit/RecursiveRecordMergeWithinFieldSelection1"
|| path == "unit/RecursiveRecordMergeWithinFieldSelection2"
|| path == "unit/RecursiveRecordMergeWithinFieldSelection3"
}),