Updated tests
This commit is contained in:
44
tests/files/ansible/test-files/docker-cppjit/Dockerfile
Normal file
44
tests/files/ansible/test-files/docker-cppjit/Dockerfile
Normal file
@@ -0,0 +1,44 @@
|
||||
# adjusted from https://github.com/ethereum/cpp-ethereum/blob/develop/docker/Dockerfile
|
||||
FROM ubuntu:14.04
|
||||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
RUN apt-get update
|
||||
RUN apt-get upgrade -y
|
||||
|
||||
# Ethereum dependencies
|
||||
RUN apt-get install -qy build-essential g++-4.8 git cmake libboost-all-dev libcurl4-openssl-dev wget
|
||||
RUN apt-get install -qy automake unzip libgmp-dev libtool libleveldb-dev yasm libminiupnpc-dev libreadline-dev scons
|
||||
RUN apt-get install -qy libjsoncpp-dev libargtable2-dev
|
||||
|
||||
# NCurses based GUI (not optional though for a succesful compilation, see https://github.com/ethereum/cpp-ethereum/issues/452 )
|
||||
RUN apt-get install -qy libncurses5-dev
|
||||
|
||||
# Qt-based GUI
|
||||
# RUN apt-get install -qy qtbase5-dev qt5-default qtdeclarative5-dev libqt5webkit5-dev
|
||||
|
||||
RUN sudo apt-get -y install software-properties-common
|
||||
|
||||
# LLVM-3.5
|
||||
RUN wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add -
|
||||
RUN echo "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.5 main\ndeb-src http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.5 main" > /etc/apt/sources.list.d/llvm-trusty.list
|
||||
RUN apt-get update
|
||||
RUN apt-get install -qy llvm-3.5 libedit-dev
|
||||
|
||||
# Fix llvm-3.5 cmake paths
|
||||
RUN mkdir -p /usr/lib/llvm-3.5/share/llvm && ln -s /usr/share/llvm-3.5/cmake /usr/lib/llvm-3.5/share/llvm/cmake
|
||||
|
||||
|
||||
# Ethereum PPA
|
||||
RUN apt-get install -qy software-properties-common
|
||||
RUN add-apt-repository ppa:ethereum/ethereum
|
||||
RUN apt-get update
|
||||
RUN apt-get install -qy libcryptopp-dev libjson-rpc-cpp-dev
|
||||
|
||||
# Build Ethereum (HEADLESS)
|
||||
RUN git clone --depth=1 --branch develop https://github.com/ethereum/cpp-ethereum
|
||||
RUN mkdir -p cpp-ethereum/build
|
||||
RUN cd cpp-ethereum/build && cmake .. -DCMAKE_BUILD_TYPE=Release -DHEADLESS=1 -DEVMJIT=1 && make -j $(cat /proc/cpuinfo | grep processor | wc -l) && make install
|
||||
RUN ldconfig
|
||||
|
||||
ENTRYPOINT ["/cpp-ethereum/build/test/checkRandomTest"]
|
||||
|
14
tests/files/ansible/test-files/docker-python/Dockerfile
Normal file
14
tests/files/ansible/test-files/docker-python/Dockerfile
Normal file
@@ -0,0 +1,14 @@
|
||||
FROM sveneh/pyethereum-base
|
||||
|
||||
RUN git clone --branch master https://github.com/ethereum/pyethereum.git
|
||||
|
||||
RUN cd pyethereum && curl https://bootstrap.pypa.io/bootstrap-buildout.py | python
|
||||
|
||||
RUN cd pyethereum && bin/buildout
|
||||
|
||||
#default port for incoming requests
|
||||
EXPOSE 30303
|
||||
|
||||
WORKDIR /pyethereum/bin
|
||||
|
||||
ENTRYPOINT ["./python", "../tests/test_vm.py"]
|
@@ -2,55 +2,54 @@
|
||||
|
||||
# create random virtual machine test
|
||||
#cd ~/software/Ethereum/pyethereum (python has local dependencies so only works from within the directory)
|
||||
cd ~
|
||||
while [ 1 ]
|
||||
do
|
||||
TEST="$(docker run --rm cpp)"
|
||||
TEST="$(docker run --rm --entrypoint="/cpp-ethereum/build/test/createRandomTest" cppjit)"
|
||||
# echo "$TEST"
|
||||
|
||||
# test pyethereum
|
||||
|
||||
#OUTPUT_PYTHON="$(python ./tests/test_vm.py "$TEST")"
|
||||
#RESULT_PYTHON=$?
|
||||
# test pyethereum
|
||||
#OUTPUT_PYTHON="$(python ./tests/test_vm.py "$TEST")"
|
||||
#RESULT_PYTHON=$?
|
||||
|
||||
# test go
|
||||
OUTPUT_GO="$(docker run --rm go "$TEST")"
|
||||
RESULT_GO=$?
|
||||
|
||||
OUTPUT_GO="$(docker run --rm go "$TEST")"
|
||||
RESULT_GO=$?
|
||||
|
||||
# test cpp-jit
|
||||
#OUTPUT_CPPJIT="$(~/software/Ethereum/cpp-ethereum/build/test/checkRandomTest "$TEST")"
|
||||
#RESULT_CPPJIT=$?
|
||||
OUTPUT_CPPJIT="$(docker run --rm cppjit "$TEST")"
|
||||
RESULT_CPPJIT=$?
|
||||
|
||||
# go fails
|
||||
if [ "$RESULT_GO" -ne 0 ]; then
|
||||
echo Failed:
|
||||
echo Output_GO:
|
||||
echo $OUTPUT_GO
|
||||
echo Test:
|
||||
echo "$TEST"
|
||||
echo "$TEST" > FailedTest.json
|
||||
mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")GO.json # replace with scp to central server
|
||||
fi
|
||||
# go fails
|
||||
if [ "$RESULT_GO" -ne 0 ]; then
|
||||
echo Failed:
|
||||
echo Output_GO:
|
||||
echo $OUTPUT_GO
|
||||
echo Test:
|
||||
echo "$TEST"
|
||||
echo "$TEST" > FailedTest.json
|
||||
mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")GO.json # replace with scp to central server
|
||||
fi
|
||||
|
||||
# python fails
|
||||
#if [ "$RESULT_PYTHON" -ne 0 ]; then
|
||||
# echo Failed:
|
||||
# echo Output_PYTHON:
|
||||
# echo $OUTPUT_PYTHON
|
||||
# echo Test:
|
||||
# echo "$TEST"
|
||||
# echo "$TEST" > FailedTest.json
|
||||
# mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")PYTHON.json
|
||||
#fi
|
||||
# python fails
|
||||
#if [ "$RESULT_PYTHON" -ne 0 ]; then
|
||||
# echo Failed:
|
||||
# echo Output_PYTHON:
|
||||
# echo $OUTPUT_PYTHON
|
||||
# echo Test:
|
||||
# echo "$TEST"
|
||||
# echo "$TEST" > FailedTest.json
|
||||
# mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")PYTHON.json
|
||||
#fi
|
||||
|
||||
# cppjit fails
|
||||
#if [ "$RESULT_CPPJIT" -ne 0 ]; then
|
||||
# echo Failed:
|
||||
# echo Output_CPPJIT:
|
||||
# echo $OUTPUT_CPPJIT
|
||||
# echo Test:
|
||||
# echo "$TEST"
|
||||
# echo "$TEST" > FailedTest.json
|
||||
# mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")CPPJIT.json
|
||||
#fi
|
||||
# cppjit fails
|
||||
if [ "$RESULT_CPPJIT" -ne 0 ]; then
|
||||
echo Failed:
|
||||
echo Output_CPPJIT:
|
||||
echo $OUTPUT_CPPJIT
|
||||
echo Test:
|
||||
echo "$TEST"
|
||||
echo "$TEST" > FailedTest.json
|
||||
mv FailedTest.json $(date -d "today" +"%Y%m%d%H%M")CPPJIT.json
|
||||
fi
|
||||
done
|
||||
|
||||
|
Reference in New Issue
Block a user