Linux Audio

Check our new training course

Loading...
v6.2
 1#!/bin/sh
 2# SPDX-License-Identifier: GPL-2.0-or-later
 3
 4###############################################################################
 5#
 6#   Copyright © International Business Machines  Corp., 2009
 7#
 
 
 
 
 
 8# DESCRIPTION
 9#      Run all tests under the functional, performance, and stress directories.
10#      Format and summarize the results.
11#
12# AUTHOR
13#      Darren Hart <dvhart@linux.intel.com>
14#
15# HISTORY
16#      2009-Nov-9: Initial version by Darren Hart <dvhart@linux.intel.com>
17#
18###############################################################################
19
20# Test for a color capable shell and pass the result to the subdir scripts
21USE_COLOR=0
22tput setf 7 || tput setaf 7
23if [ $? -eq 0 ]; then
24    USE_COLOR=1
25    tput sgr0
26fi
27export USE_COLOR
28
29(cd functional; ./run.sh)
v4.6
 1#!/bin/sh
 
 2
 3###############################################################################
 4#
 5#   Copyright © International Business Machines  Corp., 2009
 6#
 7#   This program is free software;  you can redistribute it and/or modify
 8#   it under the terms of the GNU General Public License as published by
 9#   the Free Software Foundation; either version 2 of the License, or
10#   (at your option) any later version.
11#
12# DESCRIPTION
13#      Run all tests under the functional, performance, and stress directories.
14#      Format and summarize the results.
15#
16# AUTHOR
17#      Darren Hart <dvhart@linux.intel.com>
18#
19# HISTORY
20#      2009-Nov-9: Initial version by Darren Hart <dvhart@linux.intel.com>
21#
22###############################################################################
23
24# Test for a color capable shell and pass the result to the subdir scripts
25USE_COLOR=0
26tput setf 7
27if [ $? -eq 0 ]; then
28    USE_COLOR=1
29    tput sgr0
30fi
31export USE_COLOR
32
33(cd functional; ./run.sh)