From 146264c6ae057d6418b8c1063526183254b245ba Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Fri, 27 Mar 2015 16:54:46 -0700 Subject: [PATCH] check: Name the sentinal variable more sanely --- src/etc/check-sanitycheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/etc/check-sanitycheck.py b/src/etc/check-sanitycheck.py index cb34fa20531f..5822cc0259fe 100644 --- a/src/etc/check-sanitycheck.py +++ b/src/etc/check-sanitycheck.py @@ -39,7 +39,7 @@ def only_on(platforms): def check_rlimit_core(): soft, hard = resource.getrlimit(resource.RLIMIT_CORE) if soft > 0: - error_unless_permitted('ALLOW_NONZERO_ULIMIT', + error_unless_permitted('ALLOW_NONZERO_RLIMIT_CORE', ("The rust test suite will segfault many rustc's in the debuginfo phase.\n" "set ALLOW_NONZERO_ULIMIT to ignore this warning\n"))