alaffin | 802d3e3 | 2000-08-23 20:04:23 +0000 | [diff] [blame] | 1 | #!/bin/sh |
iyermanoj | 1d9a963 | 2003-10-07 17:17:00 +0000 | [diff] [blame] | 2 | ################################################################################ |
| 3 | ## ## |
| 4 | ## Copyright (c) International Business Machines Corp., 2001 ## |
| 5 | ## ## |
| 6 | ## This program is free software; you can redistribute it and#or modify ## |
| 7 | ## it under the terms of the GNU General Public License as published by ## |
| 8 | ## the Free Software Foundation; either version 2 of the License, or ## |
| 9 | ## (at your option) any later version. ## |
| 10 | ## ## |
| 11 | ## This program is distributed in the hope that it will be useful, but ## |
| 12 | ## WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ## |
| 13 | ## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License ## |
| 14 | ## for more details. ## |
| 15 | ## ## |
| 16 | ## You should have received a copy of the GNU General Public License ## |
| 17 | ## along with this program; if not, write to the Free Software ## |
| 18 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ## |
| 19 | ## ## |
| 20 | ################################################################################ |
| 21 | # File: runalltests.sh |
| 22 | # |
plars | 4a120e8 | 2004-09-02 18:56:06 +0000 | [diff] [blame] | 23 | # Description: This script just calls runltp now, and is being phased out. |
| 24 | # If you rely on this script for automation reasons, please |
| 25 | # change your scripts soon |
robbiew | 2379611 | 2003-02-05 16:28:37 +0000 | [diff] [blame] | 26 | |
plars | 4a120e8 | 2004-09-02 18:56:06 +0000 | [diff] [blame] | 27 | cd `dirname $0` |
| 28 | echo -e "\033[5m" |
| 29 | echo "*******************************************************************" |
| 30 | echo "*******************************************************************" |
| 31 | echo "** **" |
| 32 | echo -e "** \033[0m The runalltests.sh script is being phased out soon. It will \033[5m**" |
| 33 | echo -e "** \033[0m be replaced with the scripts called 'runltp'. If you \033[5m **" |
| 34 | echo -e "** \033[0m currently rely on this script for automation scripts, you \033[5m **" |
| 35 | echo -e "** \033[0m should think about changing them NOW! \033[5m **" |
| 36 | echo "** **" |
| 37 | echo "*******************************************************************" |
| 38 | echo "*******************************************************************" |
| 39 | echo -e "\033[0m" |
| 40 | for i in 1 2 3 4 5 6 7 8 9 10 |
| 41 | do |
| 42 | echo -en "\a" |
| 43 | sleep 1 |
| 44 | done |
alaffin | 802d3e3 | 2000-08-23 20:04:23 +0000 | [diff] [blame] | 45 | |
plars | 4a120e8 | 2004-09-02 18:56:06 +0000 | [diff] [blame] | 46 | ./runltp $* |