#!/bin/sh1# SPDX-License-Identifier: GPL-2.0-or-later23###############################################################################4#5# Copyright © International Business Machines Corp., 20096#7# DESCRIPTION8# Run all tests under the functional, performance, and stress directories.9# Format and summarize the results.10#11# AUTHOR12# Darren Hart <[email protected]>13#14# HISTORY15# 2009-Nov-9: Initial version by Darren Hart <[email protected]>16#17###############################################################################1819# Test for a color capable shell and pass the result to the subdir scripts20USE_COLOR=021tput setf 7 || tput setaf 722if [ $? -eq 0 ]; then23USE_COLOR=124tput sgr025fi26export USE_COLOR2728(cd functional; ./run.sh)293031