aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-07-16 19:49:24 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-07-22 18:39:36 +0800
commitd103af5dd479a7d2ce914e3b43d21506597032b4 (patch)
tree5100e85fee45733878b398f96894de9a17f5d027 /cmd
parented1d2f858e009477a67689dc31d3fd41921b261e (diff)
downloaddexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar.gz
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar.bz2
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar.lz
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar.xz
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.tar.zst
dexon-d103af5dd479a7d2ce914e3b43d21506597032b4.zip
Disassociate test directory from test name
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethtest/main.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go
index 0d6286407..93c3eec7b 100644
--- a/cmd/ethtest/main.go
+++ b/cmd/ethtest/main.go
@@ -36,6 +36,7 @@ var (
defaultTest = "all"
defaultDir = "."
allTests = []string{"BlockTests", "StateTests", "TransactionTests", "VMTests", "RLPTests"}
+ testDirMapping = map[string]string{"BlockTests": "BlockchainTests"}
skipTests = []string{}
TestFlag = cli.StringFlag{
@@ -135,8 +136,13 @@ func runSuite(test, file string) {
var err error
var files []string
if test == defaultTest {
- files, err = getFiles(filepath.Join(file, curTest))
-
+ // check if we have an explicit directory mapping for the test
+ if _, ok := testDirMapping[curTest]; ok {
+ files, err = getFiles(filepath.Join(file, testDirMapping[curTest]))
+ } else {
+ // otherwise assume test name
+ files, err = getFiles(filepath.Join(file, curTest))
+ }
} else {
files, err = getFiles(file)
}