Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
fffd9810
Commit
fffd9810
authored
Jan 14, 2015
by
sveneh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uses docker in tesrunner
parent
9326d0a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
Vagrantfile
ansible/Vagrantfile
+2
-1
testrunner.sh
ansible/test-files/testrunner.sh
+2
-2
No files found.
ansible/Vagrantfile
View file @
fffd9810
...
...
@@ -60,7 +60,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# see http://askubuntu.com/questions/238040/how-do-i-fix-name-service-for-vagrant-client
vb
.
customize
[
"modifyvm"
,
:id
,
"--natdnshostresolver1"
,
"on"
]
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
"1024"
]
# cpp client needs a lot of RAM to build
vb
.
customize
[
"modifyvm"
,
:id
,
"--memory"
,
"2048"
]
end
#
...
...
ansible/test-files/testrunner.sh
View file @
fffd9810
...
...
@@ -4,7 +4,7 @@
#cd ~/software/Ethereum/pyethereum (python has local dependencies so only works from within the directory)
while
[
1
]
do
TEST
=
"
$(
~/software/Ethereum/cpp-ethereum/build/test/createRandomTest
)
"
TEST
=
"
$(
docker run
--rm
cpp
)
"
# echo "$TEST"
# test pyethereum
...
...
@@ -13,7 +13,7 @@ do
#RESULT_PYTHON=$?
# test go
OUTPUT_GO
=
"
$(
ethtest
"
$TEST
"
)
"
OUTPUT_GO
=
"
$(
docker run
--rm
go
"
$TEST
"
)
"
RESULT_GO
=
$?
# test cpp-jit
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment