| Index: third_party/grpc/tools/dockerfile/test/cxx_squeeze_x64/Dockerfile
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py b/third_party/grpc/tools/dockerfile/test/cxx_squeeze_x64/Dockerfile
|
| similarity index 53%
|
| copy from third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| copy to third_party/grpc/tools/dockerfile/test/cxx_squeeze_x64/Dockerfile
|
| index 1b02d66267e294ce83977dac64f075981705647c..b7f95aaa8d98a6a3f6f6bc18238fd72c01b2be8c 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/websocket/close_wsh.py
|
| +++ b/third_party/grpc/tools/dockerfile/test/cxx_squeeze_x64/Dockerfile
|
| @@ -1,4 +1,4 @@
|
| -# Copyright 2011, Google Inc.
|
| +# Copyright 2016, Google Inc.
|
| # All rights reserved.
|
| #
|
| # Redistribution and use in source and binary forms, with or without
|
| @@ -27,27 +27,62 @@
|
| # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| +FROM debian:squeeze
|
|
|
| -import logging
|
| -_GOODBYE_MESSAGE = u'Goodbye'
|
| +# Install Git and basic packages.
|
| +RUN apt-get update && apt-get install -y \
|
| + autoconf \
|
| + autotools-dev \
|
| + build-essential \
|
| + bzip2 \
|
| + ccache \
|
| + curl \
|
| + gcc \
|
| + gcc-multilib \
|
| + git \
|
| + gyp \
|
| + lcov \
|
| + libc6 \
|
| + libc6-dbg \
|
| + libc6-dev \
|
| + libgtest-dev \
|
| + libtool \
|
| + make \
|
| + perl \
|
| + strace \
|
| + python-dev \
|
| + python-setuptools \
|
| + python-yaml \
|
| + telnet \
|
| + unzip \
|
| + wget \
|
| + zip && apt-get clean
|
|
|
| +#================
|
| +# Build profiling
|
| +RUN apt-get update && apt-get install -y time && apt-get clean
|
|
|
| -def web_socket_do_extra_handshake(request):
|
| - pass # Always accept.
|
|
|
| +# libgflags-dev is not available on squeezy
|
| +RUN apt-get update && apt-get -y install libgtest-dev libc++-dev clang && apt-get clean
|
|
|
| -def web_socket_transfer_data(request):
|
| - while True:
|
| - line = request.ws_stream.receive_message()
|
| - if line is None:
|
| - return
|
| - if isinstance(line, unicode):
|
| - request.ws_stream.send_message(line, binary=False)
|
| - if line == _GOODBYE_MESSAGE:
|
| - return
|
| - else:
|
| - request.ws_stream.send_message(line, binary=True)
|
| +RUN apt-get update && apt-get -y install python-pip && apt-get clean
|
| +RUN pip install argparse
|
|
|
| +RUN wget http://openssl.org/source/openssl-1.0.2f.tar.gz
|
|
|
| -def web_socket_passive_closing_handshake(request):
|
| - return request.ws_close_code, request.ws_close_reason
|
| +ENV POST_GIT_STEP tools/dockerfile/test/cxx_squeeze_x64/post-git-setup.sh
|
| +
|
| +# Prepare ccache
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/gcc
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/g++
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/cc
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/c++
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/clang
|
| +RUN ln -s /usr/bin/ccache /usr/local/bin/clang++
|
| +
|
| +
|
| +RUN mkdir /var/local/jenkins
|
| +
|
| +# Define the default command.
|
| +CMD ["bash"]
|
|
|