summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2019-03-20 00:44:27 +0100
committerNadrieril2019-03-20 00:44:27 +0100
commit640a36906361ef5ef98fb66fd37246f084739d25 (patch)
tree630a18bf8bfc7820c12e0144738878eca8ff6331 /dhall
parent3a967a0eef8b69f7fc8bbc7655945edbbe2b579e (diff)
Handle simple parsing cases with new macros
Diffstat (limited to 'dhall')
-rw-r--r--dhall/tests/common/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhall/tests/common/mod.rs b/dhall/tests/common/mod.rs
index 7ba64b0..2ee9724 100644
--- a/dhall/tests/common/mod.rs
+++ b/dhall/tests/common/mod.rs
@@ -32,7 +32,7 @@ macro_rules! make_spec_test {
// The parser stack overflows even on small files
// when compiled without optimizations
thread::Builder::new()
- .stack_size(4 * 1024 * 1024)
+ .stack_size(8 * 1024 * 1024)
.spawn(move || {
run_test($path, Feature::$type);
})