sbsv2/raptor/test/cluster/headtest.sh
author jjkang
Fri, 25 Jun 2010 19:56:45 +0800
changeset 604 b33dd54aaa52
parent 602 3145852acc89
permissions -rw-r--r--
add cpptoolsplat
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
602
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     1
#!/bin/sh
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     2
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     3
# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     4
# All rights reserved.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     5
# This component and the accompanying materials are made available
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     6
# under the terms of the License "Eclipse Public License v1.0"
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     7
# which accompanies this distribution, and is available
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     8
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     9
#
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    10
# Initial Contributors:
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    11
# Nokia Corporation - initial contribution.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    12
#
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    13
# Contributors:
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    14
#
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    15
# Description:
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    16
#
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    17
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    18
# Test all nodes in a cluster
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    19
# arguments are the list of nodes.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    20
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    21
NODELIST="$@"
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    22
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    23
(
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    24
echo "Date and time check:"
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    25
echo "    The numbers following each hostname are the date and time in seconds"
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    26
echo "    They should all be the same otherwise make errors may occur during builds."
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    27
echo "    "`hostname`' '`date +%s`
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    28
for i in $NODELIST; do
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    29
	ssh $i 'echo "    "`hostname`' '`date +%s`'&
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    30
done
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    31
)
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    32
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    33
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    34
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    35
for i in $NODELIST; do
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    36
	ssh $i "NODELIST=\"$NODELIST\" $SBS_HOME/test/cluster/nodetest.sh"
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    37
done
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    38
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    39