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
516362bc
Commit
516362bc
authored
9 years ago
by
Taylor Gerring
Browse files
Options
Downloads
Patches
Plain Diff
Allow specifying single depth directory
parent
30444db0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmd/ethtest/main.go
+67
-37
67 additions, 37 deletions
cmd/ethtest/main.go
with
67 additions
and
37 deletions
cmd/ethtest/main.go
+
67
−
37
View file @
516362bc
...
...
@@ -22,62 +22,92 @@
package
main
import
(
"io/ioutil"
"os"
"github.com/ethereum/go-ethereum/logger/glog"
"github.com/ethereum/go-ethereum/tests"
)
func
getFiles
(
path
string
)
([]
string
,
error
)
{
var
files
[]
string
f
,
err
:=
os
.
Open
(
path
)
if
err
!=
nil
{
return
nil
,
err
}
defer
f
.
Close
()
fi
,
err
:=
f
.
Stat
()
if
err
!=
nil
{
return
nil
,
err
}
switch
mode
:=
fi
.
Mode
();
{
case
mode
.
IsDir
()
:
fi
,
_
:=
ioutil
.
ReadDir
(
path
)
files
=
make
([]
string
,
len
(
fi
))
for
i
,
v
:=
range
fi
{
// only go 1 depth and leave directory entires blank
if
!
v
.
IsDir
()
{
files
[
i
]
=
path
+
v
.
Name
()
}
}
case
mode
.
IsRegular
()
:
files
=
make
([]
string
,
1
)
files
[
0
]
=
path
}
return
files
,
nil
}
func
main
()
{
glog
.
SetToStderr
(
true
)
var
continueOnError
bool
=
false
// vm.Debug = true
if
len
(
os
.
Args
)
<
2
{
glog
.
Exit
(
"Must specify test type"
)
}
test
:=
os
.
Args
[
1
]
testtype
:=
os
.
Args
[
1
]
var
pattern
string
if
len
(
os
.
Args
)
>
2
{
pattern
=
os
.
Args
[
2
]
}
// var code int
switch
test
{
case
"vm"
,
"VMTests"
:
if
len
(
os
.
Args
)
>
2
{
if
err
:=
tests
.
RunVmTest
(
os
.
Args
[
2
]);
err
!=
nil
{
glog
.
Errorln
(
err
)
}
}
else
{
glog
.
Exit
(
"Must supply file argument"
)
}
case
"state"
,
"StateTest"
:
if
len
(
os
.
Args
)
>
2
{
if
err
:=
tests
.
RunStateTest
(
os
.
Args
[
2
]);
err
!=
nil
{
glog
.
Errorln
(
err
)
}
// code = RunVmTest(strings.NewReader(os.Args[2]))
}
else
{
glog
.
Exit
(
"Must supply file argument"
)
// code = RunVmTest(os.Stdin)
files
,
err
:=
getFiles
(
pattern
)
if
err
!=
nil
{
glog
.
Fatal
(
err
)
}
for
_
,
testfile
:=
range
files
{
// Skip blank entries
if
len
(
testfile
)
==
0
{
continue
}
case
"tx"
,
"TransactionTests"
:
if
len
(
os
.
Args
)
>
2
{
if
err
:=
tests
.
RunTransactionTests
(
os
.
Args
[
2
]);
err
!=
nil
{
glog
.
Errorln
(
err
)
}
}
else
{
glog
.
Exit
(
"Must supply file argument"
)
// TODO allow io.Reader to be passed so Stdin can be piped
// RunVmTest(strings.NewReader(os.Args[2]))
// RunVmTest(os.Stdin)
var
err
error
switch
testtype
{
case
"vm"
,
"VMTests"
:
err
=
tests
.
RunVmTest
(
testfile
)
case
"state"
,
"StateTest"
:
err
=
tests
.
RunStateTest
(
testfile
)
case
"tx"
,
"TransactionTests"
:
err
=
tests
.
RunTransactionTests
(
testfile
)
case
"bc"
,
"BlockChainTest"
:
err
=
tests
.
RunBlockTest
(
testfile
)
default
:
glog
.
Fatalln
(
"Invalid test type specified"
)
}
case
"bc"
,
"BlockChainTest"
:
if
len
(
os
.
Args
)
>
2
{
if
err
:=
tests
.
RunBlockTest
(
os
.
Args
[
2
]);
err
!=
nil
{
if
err
!=
nil
{
if
continueOnError
{
glog
.
Errorln
(
err
)
}
else
{
glog
.
Fatalln
(
err
)
}
}
else
{
glog
.
Exit
(
"Must supply file argument"
)
}
default
:
glog
.
Exit
(
"Invalid test type specified"
)
}
// os.Exit(code)
}
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