Skip to content

Commit 93fc804

Browse files
committed
check: Run the rlimit_core check on *BSD
1 parent c40ec08 commit 93fc804

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/check-sanitycheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def inner():
3535
return decorator
3636

3737

38-
@only_on(('linux', 'darwin'))
38+
@only_on(('linux', 'darwin', 'freebsd', 'openbsd'))
3939
def check_rlimit_core():
4040
soft, hard = resource.getrlimit(resource.RLIMIT_CORE)
4141
if soft > 0:

0 commit comments

Comments
 (0)