xref: /src/tools/test/stress2/misc/sysctl4.sh (revision 8a272653d9fbd9fc37691c9aad6a05089b4ecb4d)
18a272653SPeter Holm#!/bin/sh
28a272653SPeter Holm
38a272653SPeter Holm#
48a272653SPeter Holm# Copyright (c) 2017 Dell EMC Isilon
58a272653SPeter Holm# All rights reserved.
68a272653SPeter Holm#
78a272653SPeter Holm# Redistribution and use in source and binary forms, with or without
88a272653SPeter Holm# modification, are permitted provided that the following conditions
98a272653SPeter Holm# are met:
108a272653SPeter Holm# 1. Redistributions of source code must retain the above copyright
118a272653SPeter Holm#    notice, this list of conditions and the following disclaimer.
128a272653SPeter Holm# 2. Redistributions in binary form must reproduce the above copyright
138a272653SPeter Holm#    notice, this list of conditions and the following disclaimer in the
148a272653SPeter Holm#    documentation and/or other materials provided with the distribution.
158a272653SPeter Holm#
168a272653SPeter Holm# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
178a272653SPeter Holm# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
188a272653SPeter Holm# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
198a272653SPeter Holm# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
208a272653SPeter Holm# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
218a272653SPeter Holm# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
228a272653SPeter Holm# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
238a272653SPeter Holm# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
248a272653SPeter Holm# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
258a272653SPeter Holm# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
268a272653SPeter Holm# SUCH DAMAGE.
278a272653SPeter Holm#
288a272653SPeter Holm
298a272653SPeter Holm# Test with short lived threads.
308a272653SPeter Holm
318a272653SPeter Holm. ../default.cfg
328a272653SPeter Holm
338a272653SPeter Holm(cd ../testcases/thr2; ./thr2 -t 1h -i 20 -l 100 > /dev/null 2>&1) &
348a272653SPeter Holmpid=$!
358a272653SPeter Holm
368a272653SPeter Holm[ -n "`sysctl -i kern.proc.all_stacks`" ] && all_stacks=1 # Custom OID
378a272653SPeter Holmstart=`date +%s`
388a272653SPeter Holmwhile [ $((`date +%s` - start)) -lt 180 ]; do
398a272653SPeter Holm        pids=""
408a272653SPeter Holm        for j in `jot 3`; do
418a272653SPeter Holm                if [ $all_stacks ]; then
428a272653SPeter Holm			sysctl kern.proc.all_stacks > /dev/null &
438a272653SPeter Holm		else
448a272653SPeter Holm			ps -lH > /dev/null &
458a272653SPeter Holm		fi
468a272653SPeter Holm                pids="$pids $!"
478a272653SPeter Holm        done
488a272653SPeter Holm        for j in $pids; do
498a272653SPeter Holm                wait $j
508a272653SPeter Holm        done
518a272653SPeter Holmdone
528a272653SPeter Holmkill $pid
538a272653SPeter Holmpkill thr2
548a272653SPeter Holmexit 0
55