Skip to content

Commit 53b6e2c

Browse files
committedJun 10, 2021
8267448: Add "ulimit -a" to environment.html
Reviewed-by: cjplummer
1 parent 5b8c51f commit 53b6e2c

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed
 

‎test/failure_handler/src/share/conf/linux.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -62,6 +62,7 @@ environment=\
6262
users.current users.logged users.last \
6363
disk \
6464
env \
65+
ulimit \
6566
system.dmesg system.sysctl \
6667
process.top process.ps \
6768
memory.free memory.vmstat.default memory.vmstat.statistics \
@@ -83,6 +84,10 @@ disk.args=-h
8384

8485
env.app=env
8586

87+
ulimit.app=bash
88+
ulimit.args=-c\0ulimit -a
89+
ulimit.args.delimiter=\0
90+
8691
system.dmesg.app=dmesg
8792
system.sysctl.app=sysctl
8893
system.sysctl.args=-a

‎test/failure_handler/src/share/conf/mac.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -71,6 +71,7 @@ environment=\
7171
users.current users.logged users.last \
7272
disk \
7373
env \
74+
ulimit \
7475
system.dmesg system.sysctl \
7576
process.ps process.top \
7677
memory.vmstat \
@@ -91,6 +92,10 @@ disk.args=-h
9192

9293
env.app=env
9394

95+
ulimit.app=bash
96+
ulimit.args=-c\0ulimit -a
97+
ulimit.args.delimiter=\0
98+
9499
system.dmesg.app=dmesg
95100
system.sysctl.app=sysctl
96101
system.sysctl.args=-a

‎test/failure_handler/src/share/conf/windows.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -66,6 +66,7 @@ environment=\
6666
users.current users.logged \
6767
disk \
6868
env \
69+
ulimit \
6970
system.events.system system.events.application system.os \
7071
process.top process.ps process.tasklist \
7172
memory.free memory.vmstat.default memory.vmstat.statistics \
@@ -84,6 +85,10 @@ disk.args=-h
8485

8586
env.app=env
8687

88+
ulimit.app=bash
89+
ulimit.args=-c\0ulimit -a
90+
ulimit.args.delimiter=\0
91+
8792
system.events.app=powershell
8893
system.events.delimiter=\0
8994
system.events.system.args=-NoLogo\0-Command\0Get-EventLog System -After (Get-Date).AddDays(-1) | Format-List

0 commit comments

Comments
 (0)
Please sign in to comment.