Kaynağa Gözat

Make all_tests.go output cleaner.

It's a little hard to read with all those command-lines flying by. Only
print out full commands for failing tests.

Change-Id: I35f2febf7686dbc1ab428fe5d06afee2afa8bcaf
Reviewed-on: https://boringssl-review.googlesource.com/20905
Commit-Queue: Steven Valdez <svaldez@google.com>
Reviewed-by: Steven Valdez <svaldez@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
kris/onging/CECPQ3_patch15
David Benjamin 7 yıl önce
committed by CQ bot account: commit-bot@chromium.org
ebeveyn
işleme
ced6e76661
1 değiştirilmiş dosya ile 29 ekleme ve 19 silme
  1. +29
    -19
      util/all_tests.go

+ 29
- 19
util/all_tests.go Dosyayı Görüntüle

@@ -48,7 +48,8 @@ var (
)

type test struct {
args []string
args []string
shard, numShards int
// cpu, if not empty, contains an Intel CPU code to simulate. Run
// `sde64 -help` to get a list of these codes.
cpu string
@@ -259,19 +260,6 @@ func runTest(test test) (bool, error) {
}
}

// shortTestName returns the short name of a test. Except for evp_test and
// cipher_test, it assumes that any argument which ends in .txt is a path to a
// data file and not relevant to the test's uniqueness.
func shortTestName(test test) string {
var args []string
for _, arg := range test.args {
if test.args[0] == "crypto/evp/evp_test" || test.args[0] == "crypto/cipher_extra/cipher_test" || test.args[0] == "crypto/cipher_extra/aead_test" || !strings.HasSuffix(arg, ".txt") || strings.HasPrefix(arg, "--gtest_filter=") {
args = append(args, arg)
}
}
return strings.Join(args, " ") + test.cpuMsg()
}

// setWorkingDirectory walks up directories as needed until the current working
// directory is the top of a BoringSSL checkout.
func setWorkingDirectory() {
@@ -313,6 +301,22 @@ func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
}
}

func (t test) shortName() string {
return t.args[0] + t.shardMsg() + t.cpuMsg()
}

func (t test) longName() string {
return strings.Join(t.args, " ") + t.cpuMsg()
}

func (t test) shardMsg() string {
if t.numShards == 0 {
return ""
}

return fmt.Sprintf(" [shard %d/%d]", t.shard+1, t.numShards)
}

func (t test) cpuMsg() string {
if len(t.cpu) == 0 {
return ""
@@ -389,9 +393,14 @@ func (t test) getGTestShards() ([]test, error) {
}
shard := t
shard.args = []string{shard.args[0], "--gtest_filter=" + strings.Join(shuffled[i:i+n], ":")}
shard.shard = len(shards)
shards = append(shards, shard)
}

for i := range shards {
shards[i].numShards = len(shards)
}

return shards, nil
}

@@ -447,18 +456,19 @@ func main() {
test := testResult.Test
args := test.args

fmt.Printf("%s%s\n", strings.Join(args, " "), test.cpuMsg())
name := shortTestName(test)
if testResult.Error != nil {
fmt.Printf("%s\n", test.longName())
fmt.Printf("%s failed to complete: %s\n", args[0], testResult.Error)
failed = append(failed, test)
testOutput.addResult(name, "CRASHED")
testOutput.addResult(test.longName(), "CRASHED")
} else if !testResult.Passed {
fmt.Printf("%s\n", test.longName())
fmt.Printf("%s failed to print PASS on the last line.\n", args[0])
failed = append(failed, test)
testOutput.addResult(name, "FAIL")
testOutput.addResult(test.longName(), "FAIL")
} else {
testOutput.addResult(name, "PASS")
fmt.Printf("%s\n", test.shortName())
testOutput.addResult(test.longName(), "PASS")
}
}



Yükleniyor…
İptal
Kaydet