good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
bor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open
bor
Commits
7ca7938d
Commit
7ca7938d
authored
10 years ago
by
Jeffrey Wilcke
Browse files
Options
Downloads
Patches
Plain Diff
Removed old installer script
parent
f55e39cf
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ethvm/vm_test.go
+3
-4
3 additions, 4 deletions
ethvm/vm_test.go
install.sh
+0
-57
0 additions, 57 deletions
install.sh
with
3 additions
and
61 deletions
ethvm/vm_test.go
+
3
−
4
View file @
7ca7938d
...
...
@@ -64,7 +64,7 @@ func TestDebugVm(t *testing.T) {
}
if
ret
[
len
(
ret
)
-
1
]
!=
9
{
t
.
Errorf
(
"Expected VM to return
1
, got"
,
ret
,
"instead."
)
t
.
Errorf
(
"Expected VM to return
9
, got"
,
ret
,
"instead."
)
}
}
...
...
@@ -76,7 +76,7 @@ func TestVm(t *testing.T) {
}
if
ret
[
len
(
ret
)
-
1
]
!=
9
{
t
.
Errorf
(
"Expected VM to return
1
, got"
,
ret
,
"instead."
)
t
.
Errorf
(
"Expected VM to return
9
, got"
,
ret
,
"instead."
)
}
}
...
...
@@ -106,8 +106,7 @@ func RunCode(mutCode string, typ Type) []byte {
log
.
Fatal
(
err
)
}
// Pipe output to /dev/null
ethlog
.
AddLogSystem
(
ethlog
.
NewStdLogSystem
(
os
.
Stdout
,
log
.
LstdFlags
,
ethlog
.
LogLevel
(
4
)))
ethlog
.
AddLogSystem
(
ethlog
.
NewStdLogSystem
(
os
.
Stdout
,
log
.
LstdFlags
,
ethlog
.
LogLevel
(
3
)))
ethutil
.
ReadConfig
(
".ethtest"
,
"/tmp/ethtest"
,
""
)
...
...
This diff is collapsed.
Click to expand it.
install.sh
deleted
100755 → 0
+
0
−
57
View file @
f55e39cf
#!/bin/sh
if
[
"
$1
"
==
""
]
;
then
echo
"Usage
$0
executable branch ethereum develop"
echo
"executable ethereum or ethereal"
echo
"branch develop or master"
exit
fi
exe
=
$1
branch
=
$2
# Test if go is installed
command
-v
go
>
/dev/null 2>&1
||
{
echo
>
&2
"Unable to find 'go'. This script requires go."
;
exit
1
;
}
# Test if $GOPATH is set
if
[
"
$GOPATH
"
==
""
]
;
then
echo
"
\$
GOPATH not set"
exit
fi
echo
"go get -u -d github.com/ethereum/go-ethereum/
$exe
"
go get
-v
-u
-d
github.com/ethereum/go-ethereum/
$exe
if
[
$?
!=
0
]
;
then
echo
"go get failed"
exit
fi
echo
"serpent-go"
cd
$GOPATH
/src/github.com/obscuren/serpent-go
echo
"init submodule"
git submodule init
git submodule update
echo
"eth-go"
cd
$GOPATH
/src/github.com/ethereum/eth-go
git checkout
$branch
echo
"go-ethereum"
cd
$GOPATH
/src/github.com/ethereum/go-ethereum/
$exe
git checkout
$branch
if
[
"
$exe
"
==
"ethereal"
]
;
then
echo
"Building ethereal GUI. Assuming Qt is installed. If this step"
echo
"fails; please refer to: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go)"
else
echo
"Building ethereum CLI."
fi
go
install
if
[
$?
==
0
]
;
then
echo
"go install failed"
exit
fi
echo
"done. Please run
$exe
:-)"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment