Megatest

Check-in [16c73ccb25]
Login
Overview
Comment:Updated file limit to avoid runners dying
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.65
Files: files | file ages | folders
SHA1: 16c73ccb256348cf2de008746ea8d8a61c164173
User & Date: jmoon18 on 2019-01-07 11:54:11
Other Links: branch diff | manifest | tags
Context
2019-01-08
12:00
Updated process.scm to close process handles to prevent runaway number of open pipes check-in: 32331b404a user: jmoon18 tags: v1.65, v1.6518
2019-01-07
11:54
Updated file limit to avoid runners dying check-in: 16c73ccb25 user: jmoon18 tags: v1.65
2019-01-02
17:53
fixed compilation of megatest.scm missing ftail check-in: 8fddfd8f37 user: bjbarcla tags: v1.65
Changes

Modified wrappers/megatest from [35ce1ebbd5] to [b2fbc4db18].

13
14
15
16
17
18
19
20
21
22
23
24
#     but WITHOUT ANY WARRANTY; without even the implied warranty of
#     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#     GNU General Public License for more details.
# 
#     You should have received a copy of the GNU General Public License
#     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.

if [[ $(ulimit -a | grep 'open files' | awk '{print $4}') -gt 10000 ]];then ulimit -n 10000;fi
lsbr=$(lsb_release -sr)
source PREFIX/ARCHSTR/cfg.sh
exec PREFIX/mtest "$@"








|




13
14
15
16
17
18
19
20
21
22
23
24
#     but WITHOUT ANY WARRANTY; without even the implied warranty of
#     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#     GNU General Public License for more details.
# 
#     You should have received a copy of the GNU General Public License
#     along with Megatest.  If not, see <http://www.gnu.org/licenses/>.

if [[ $(ulimit -a | grep 'open files' | awk '{print $4}') -gt 20000 ]];then ulimit -n 20000;fi
lsbr=$(lsb_release -sr)
source PREFIX/ARCHSTR/cfg.sh
exec PREFIX/mtest "$@"