aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/pstack_testrunner
blob: 4d4d5105d5a0b2a4033f261d97041e7e76d37b8a (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

ps auxww | grep "./testrunner" | grep -v grep | while read username pid restofline; do
	if pstack $pid; then :; else
		echo "Failed to run 'pstack $pid'"
		exit 1
	fi
done