aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/ansible/roles/testrunner
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-06 05:55:47 +0800
committerFelix Lange <fjl@twurst.com>2016-10-06 21:36:21 +0800
commit1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4 (patch)
tree0d8d9cd20dc8584599209cbce1cffae0b0e0516d /tests/files/ansible/roles/testrunner
parent2acb9a6ea7ddab541122ede96f2275598ae36931 (diff)
downloadgo-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.gz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.bz2
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.lz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.xz
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.tar.zst
go-tangerine-1b7b2ba2163c7b2b2acc0c4f107951ad873cd8a4.zip
tests: update test files from github.com/ethereum/tests @ 45bc1d21d3c1
Two new tests are skipped because they're buggy. Making some newer random state tests work required implementing the 'compressed return value encoding'.
Diffstat (limited to 'tests/files/ansible/roles/testrunner')
-rwxr-xr-xtests/files/ansible/roles/testrunner/tasks/main.yml34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/files/ansible/roles/testrunner/tasks/main.yml b/tests/files/ansible/roles/testrunner/tasks/main.yml
deleted file mode 100755
index 41c195f24..000000000
--- a/tests/files/ansible/roles/testrunner/tasks/main.yml
+++ /dev/null
@@ -1,34 +0,0 @@
----
-- name: update C++ client
- docker_image:
- path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-cppjit
- name: ethereum/cppjit-testrunner
- state: build
- async: 1200
- poll: 5
-
-- name: update Go client
- docker_image:
- path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-go
- name: ethereum/go-testrunner
- state: build
- async: 1200
- poll: 5
-
-- name: update Python client
- docker_image:
- path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-python
- name: ethereum/python-testrunner
- state: build
- async: 1200
- poll: 5
-
-- name: Run infinite tests
- shell: seq {{ ansible_processor_vcpus }} | parallel --max-args=0 /home/{{ ansible_ssh_user }}/git/ansible/test-files/testrunner.sh
- # run for two months
- async: "{{ 60 * 60 * 24 * 30 * 2 }}"
- poll: 0
- register: log_runner
-
-- name: verify previous task
- async_status: jid={{ log_runner.ansible_job_id }}