We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e78e6ca + 20c7c55 commit ad2360cCopy full SHA for ad2360c
tests/functional/repl.sh
@@ -25,6 +25,13 @@ import $testDir/undefined-variable.nix
25
26
TODO_NixOS
27
28
+# FIXME: repl tests fail on systems with stack limits
29
+stack_ulimit="$(ulimit -Hs)"
30
+stack_required="$((64 * 1024 * 1024))"
31
+if [[ "$stack_ulimit" != "unlimited" ]]; then
32
+ ((stack_ulimit < stack_required)) && skipTest "repl tests cannot run on systems with stack size <$stack_required ($stack_ulimit)"
33
+fi
34
+
35
testRepl () {
36
local nixArgs
37
nixArgs=("$@")
0 commit comments