Changeset 139936 in webkit


Ignore:
Timestamp:
Jan 16, 2013 4:48:14 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

start-queue.sh does not pass remaining parameters correctly
https://bugs.webkit.org/show_bug.cgi?id=107054

Patch by Alan Cutter <alancutter@chromium.org> on 2013-01-16
Reviewed by Adam Barth.

start-queue.sh now passes all remaining params to the webkit-patch command.
Previously only one additional queue parameter could be sent.

  • EWSTools/start-queue.sh:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139924 r139936  
     12013-01-16  Alan Cutter  <alancutter@chromium.org>
     2
     3        start-queue.sh does not pass remaining parameters correctly
     4        https://bugs.webkit.org/show_bug.cgi?id=107054
     5
     6        Reviewed by Adam Barth.
     7
     8        start-queue.sh now passes all remaining params to the webkit-patch command.
     9        Previously only one additional queue parameter could be sent.
     10
     11        * EWSTools/start-queue.sh:
     12
    1132013-01-16  Xueqing Huang  <huangxueqing@baidu.com>
    214
  • trunk/Tools/EWSTools/start-queue.sh

    r139552 r139936  
    2828# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2929
    30 # The GCE VM image we're using only has bash v4.1.5
    31 if test $# -lt 3 -o $# -gt 4; then
     30if [[ $# -lt 3 ]]; then
    3231    echo "Usage: start-queue-loop.sh QUEUE_NAME BOT_ID RESET_AFTER_ITERATION [QUEUE_PARAMS]"
    3332    exit 1
     
    3736BOT_ID=$2
    3837RESET_AFTER_ITERATION=$3
    39 QUEUE_PARAMS=$4
     38shift 3
     39QUEUE_PARAMS="$@"
    4040
    4141cd /mnt/git/webkit-$QUEUE_NAME
Note: See TracChangeset for help on using the changeset viewer.