blob: 884da26b3843992e6353d5e3db5b1966d6cffcc4 [file] [log] [blame]
David Benjamin491b9212015-02-11 14:18:45 -05001/* Copyright (c) 2015, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15package main
16
17import (
David Benjamin3d14a152017-06-07 14:02:03 -040018 "bufio"
David Benjamin491b9212015-02-11 14:18:45 -050019 "bytes"
David Benjamin6ce93cc2018-10-31 14:48:23 -050020 "errors"
David Benjamin491b9212015-02-11 14:18:45 -050021 "flag"
22 "fmt"
David Benjamin3d14a152017-06-07 14:02:03 -040023 "math/rand"
David Benjamin491b9212015-02-11 14:18:45 -050024 "os"
25 "os/exec"
26 "path"
Adam Langley31fa5a42017-04-11 17:07:27 -070027 "runtime"
David Benjamin0b635c52015-05-15 19:08:49 -040028 "strconv"
David Benjamin491b9212015-02-11 14:18:45 -050029 "strings"
Steven Valdez32223942016-03-02 11:53:07 -050030 "sync"
David Benjamin0b635c52015-05-15 19:08:49 -040031 "syscall"
David Benjamince617102018-11-14 17:31:02 -060032
David Benjaminaadb4632020-01-16 18:25:37 -050033 "boringssl.googlesource.com/boringssl/util/testconfig"
David Benjamince617102018-11-14 17:31:02 -060034 "boringssl.googlesource.com/boringssl/util/testresult"
David Benjamin491b9212015-02-11 14:18:45 -050035)
36
37// TODO(davidben): Link tests with the malloc shim and port -malloc-test to this runner.
38
39var (
David Benjamin0b635c52015-05-15 19:08:49 -040040 useValgrind = flag.Bool("valgrind", false, "If true, run code under valgrind")
Steven Valdezab14a4a2016-02-29 16:58:26 -050041 useCallgrind = flag.Bool("callgrind", false, "If true, run code under valgrind to generate callgrind traces.")
David Benjamin0b635c52015-05-15 19:08:49 -040042 useGDB = flag.Bool("gdb", false, "If true, run BoringSSL code under gdb")
Adam Langleye212f272017-02-03 08:52:21 -080043 useSDE = flag.Bool("sde", false, "If true, run BoringSSL code under Intel's SDE for each supported chip")
David Benjamin799676c2017-05-10 16:56:02 -040044 sdePath = flag.String("sde-path", "sde", "The path to find the sde binary.")
David Benjamin0b635c52015-05-15 19:08:49 -040045 buildDir = flag.String("build-dir", "build", "The build directory to run the tests from.")
Adam Langley31fa5a42017-04-11 17:07:27 -070046 numWorkers = flag.Int("num-workers", runtime.NumCPU(), "Runs the given number of workers when testing.")
David Benjamin0b635c52015-05-15 19:08:49 -040047 jsonOutput = flag.String("json-output", "", "The file to output JSON results to.")
48 mallocTest = flag.Int64("malloc-test", -1, "If non-negative, run each test with each malloc in turn failing from the given number onwards.")
49 mallocTestDebug = flag.Bool("malloc-test-debug", false, "If true, ask each test to abort rather than fail a malloc. This can be used with a specific value for --malloc-test to identity the malloc failing that is causing problems.")
David Benjamin6ce93cc2018-10-31 14:48:23 -050050 simulateARMCPUs = flag.Bool("simulate-arm-cpus", simulateARMCPUsDefault(), "If true, runs tests simulating different ARM CPUs.")
David Benjamin491b9212015-02-11 14:18:45 -050051)
52
David Benjamin6ce93cc2018-10-31 14:48:23 -050053func simulateARMCPUsDefault() bool {
David Benjamine1148bd2020-01-16 18:58:14 -050054 return (runtime.GOOS == "linux" || runtime.GOOS == "android") && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64")
David Benjamin6ce93cc2018-10-31 14:48:23 -050055}
56
Adam Langleye212f272017-02-03 08:52:21 -080057type test struct {
David Benjaminaadb4632020-01-16 18:25:37 -050058 testconfig.Test
59
David Benjaminced6e762017-09-28 15:17:05 -040060 shard, numShards int
David Benjamin6ce93cc2018-10-31 14:48:23 -050061 // cpu, if not empty, contains a code to simulate. For SDE, run `sde64
62 // -help` to get a list of these codes. For ARM, see gtest_main.cc for
63 // the supported values.
Adam Langleye212f272017-02-03 08:52:21 -080064 cpu string
65}
David Benjamin491b9212015-02-11 14:18:45 -050066
Steven Valdez32223942016-03-02 11:53:07 -050067type result struct {
68 Test test
69 Passed bool
70 Error error
71}
72
Adam Langleye212f272017-02-03 08:52:21 -080073// sdeCPUs contains a list of CPU code that we run all tests under when *useSDE
74// is true.
75var sdeCPUs = []string{
76 "p4p", // Pentium4 Prescott
77 "mrm", // Merom
78 "pnr", // Penryn
79 "nhm", // Nehalem
80 "wsm", // Westmere
81 "snb", // Sandy Bridge
82 "ivb", // Ivy Bridge
83 "hsw", // Haswell
84 "bdw", // Broadwell
Adam Langleye212f272017-02-03 08:52:21 -080085 "slt", // Saltwell
86 "slm", // Silvermont
87 "glm", // Goldmont
Adam Langley41439432020-04-08 09:16:07 -070088 "glp", // Goldmont Plus
89 "tnt", // Tremont
90 "skl", // Skylake
91 "cnl", // Cannon Lake
92 "icl", // Ice Lake
93 "skx", // Skylake server
94 "clx", // Cascade Lake
95 "cpx", // Cooper Lake
96 "icx", // Ice Lake server
97 "knl", // Knights landing
98 "knm", // Knights mill
99 "tgl", // Tiger Lake
Adam Langleye212f272017-02-03 08:52:21 -0800100}
101
David Benjamin6ce93cc2018-10-31 14:48:23 -0500102var armCPUs = []string{
103 "none", // No support for any ARM extensions.
104 "neon", // Support for NEON.
105 "crypto", // Support for NEON and crypto extensions.
106}
107
David Benjamin491b9212015-02-11 14:18:45 -0500108func valgrindOf(dbAttach bool, path string, args ...string) *exec.Cmd {
David Benjamind2ba8892016-09-20 19:41:04 -0400109 valgrindArgs := []string{"--error-exitcode=99", "--track-origins=yes", "--leak-check=full", "--quiet"}
David Benjamin491b9212015-02-11 14:18:45 -0500110 if dbAttach {
111 valgrindArgs = append(valgrindArgs, "--db-attach=yes", "--db-command=xterm -e gdb -nw %f %p")
112 }
113 valgrindArgs = append(valgrindArgs, path)
114 valgrindArgs = append(valgrindArgs, args...)
115
116 return exec.Command("valgrind", valgrindArgs...)
117}
118
Steven Valdezab14a4a2016-02-29 16:58:26 -0500119func callgrindOf(path string, args ...string) *exec.Cmd {
120 valgrindArgs := []string{"-q", "--tool=callgrind", "--dump-instr=yes", "--collect-jumps=yes", "--callgrind-out-file=" + *buildDir + "/callgrind/callgrind.out.%p"}
121 valgrindArgs = append(valgrindArgs, path)
122 valgrindArgs = append(valgrindArgs, args...)
123
124 return exec.Command("valgrind", valgrindArgs...)
125}
126
David Benjamin0b635c52015-05-15 19:08:49 -0400127func gdbOf(path string, args ...string) *exec.Cmd {
128 xtermArgs := []string{"-e", "gdb", "--args"}
129 xtermArgs = append(xtermArgs, path)
130 xtermArgs = append(xtermArgs, args...)
131
132 return exec.Command("xterm", xtermArgs...)
133}
134
Adam Langleye212f272017-02-03 08:52:21 -0800135func sdeOf(cpu, path string, args ...string) *exec.Cmd {
David Benjaminc5304e42017-07-17 16:15:16 -0400136 sdeArgs := []string{"-" + cpu}
137 // The kernel's vdso code for gettimeofday sometimes uses the RDTSCP
138 // instruction. Although SDE has a -chip_check_vsyscall flag that
139 // excludes such code by default, it does not seem to work. Instead,
140 // pass the -chip_check_exe_only flag which retains test coverage when
141 // statically linked and excludes the vdso.
142 if cpu == "p4p" || cpu == "pnr" || cpu == "mrm" || cpu == "slt" {
143 sdeArgs = append(sdeArgs, "-chip_check_exe_only")
144 }
145 sdeArgs = append(sdeArgs, "--", path)
Adam Langleye212f272017-02-03 08:52:21 -0800146 sdeArgs = append(sdeArgs, args...)
David Benjamin799676c2017-05-10 16:56:02 -0400147 return exec.Command(*sdePath, sdeArgs...)
Adam Langleye212f272017-02-03 08:52:21 -0800148}
149
David Benjamin6ce93cc2018-10-31 14:48:23 -0500150var (
151 errMoreMallocs = errors.New("child process did not exhaust all allocation calls")
152 errTestSkipped = errors.New("test was skipped")
153)
David Benjamin0b635c52015-05-15 19:08:49 -0400154
155func runTestOnce(test test, mallocNumToFail int64) (passed bool, err error) {
David Benjaminaadb4632020-01-16 18:25:37 -0500156 prog := path.Join(*buildDir, test.Cmd[0])
157 args := append([]string{}, test.Cmd[1:]...)
David Benjamin6ce93cc2018-10-31 14:48:23 -0500158 if *simulateARMCPUs && test.cpu != "" {
Adam Langley7de94982019-10-17 09:15:37 -0700159 args = append(args, "--cpu="+test.cpu)
David Benjamin17d553d2018-12-21 17:58:36 -0600160 }
161 if *useSDE {
162 // SDE is neither compatible with the unwind tester nor automatically
163 // detected.
164 args = append(args, "--no_unwind_tests")
David Benjamin6ce93cc2018-10-31 14:48:23 -0500165 }
David Benjamin491b9212015-02-11 14:18:45 -0500166 var cmd *exec.Cmd
167 if *useValgrind {
168 cmd = valgrindOf(false, prog, args...)
Steven Valdezab14a4a2016-02-29 16:58:26 -0500169 } else if *useCallgrind {
170 cmd = callgrindOf(prog, args...)
David Benjamin0b635c52015-05-15 19:08:49 -0400171 } else if *useGDB {
172 cmd = gdbOf(prog, args...)
Adam Langleye212f272017-02-03 08:52:21 -0800173 } else if *useSDE {
174 cmd = sdeOf(test.cpu, prog, args...)
David Benjamin491b9212015-02-11 14:18:45 -0500175 } else {
176 cmd = exec.Command(prog, args...)
177 }
David Benjaminaadb4632020-01-16 18:25:37 -0500178 if test.Env != nil {
Adam Langley7de94982019-10-17 09:15:37 -0700179 cmd.Env = make([]string, len(os.Environ()))
180 copy(cmd.Env, os.Environ())
David Benjaminaadb4632020-01-16 18:25:37 -0500181 cmd.Env = append(cmd.Env, test.Env...)
Adam Langley7de94982019-10-17 09:15:37 -0700182 }
David Benjamin634b0e32017-02-04 11:14:57 -0500183 var outBuf bytes.Buffer
184 cmd.Stdout = &outBuf
185 cmd.Stderr = &outBuf
David Benjamin0b635c52015-05-15 19:08:49 -0400186 if mallocNumToFail >= 0 {
187 cmd.Env = os.Environ()
188 cmd.Env = append(cmd.Env, "MALLOC_NUMBER_TO_FAIL="+strconv.FormatInt(mallocNumToFail, 10))
189 if *mallocTestDebug {
190 cmd.Env = append(cmd.Env, "MALLOC_ABORT_ON_FAIL=1")
191 }
192 cmd.Env = append(cmd.Env, "_MALLOC_CHECK=1")
193 }
David Benjamin491b9212015-02-11 14:18:45 -0500194
195 if err := cmd.Start(); err != nil {
196 return false, err
197 }
198 if err := cmd.Wait(); err != nil {
David Benjamin0b635c52015-05-15 19:08:49 -0400199 if exitError, ok := err.(*exec.ExitError); ok {
David Benjamin6ce93cc2018-10-31 14:48:23 -0500200 switch exitError.Sys().(syscall.WaitStatus).ExitStatus() {
201 case 88:
David Benjamin0b635c52015-05-15 19:08:49 -0400202 return false, errMoreMallocs
David Benjamin6ce93cc2018-10-31 14:48:23 -0500203 case 89:
204 fmt.Print(string(outBuf.Bytes()))
205 return false, errTestSkipped
David Benjamin0b635c52015-05-15 19:08:49 -0400206 }
207 }
David Benjamin634b0e32017-02-04 11:14:57 -0500208 fmt.Print(string(outBuf.Bytes()))
David Benjamin491b9212015-02-11 14:18:45 -0500209 return false, err
210 }
211
212 // Account for Windows line-endings.
David Benjamin634b0e32017-02-04 11:14:57 -0500213 stdout := bytes.Replace(outBuf.Bytes(), []byte("\r\n"), []byte("\n"), -1)
David Benjamin491b9212015-02-11 14:18:45 -0500214
215 if bytes.HasSuffix(stdout, []byte("PASS\n")) &&
216 (len(stdout) == 5 || stdout[len(stdout)-6] == '\n') {
217 return true, nil
218 }
David Benjamin96628432017-01-19 19:05:47 -0500219
220 // Also accept a googletest-style pass line. This is left here in
221 // transition until the tests are all converted and this script made
222 // unnecessary.
223 if bytes.Contains(stdout, []byte("\n[ PASSED ]")) {
224 return true, nil
225 }
226
David Benjamin634b0e32017-02-04 11:14:57 -0500227 fmt.Print(string(outBuf.Bytes()))
David Benjamin491b9212015-02-11 14:18:45 -0500228 return false, nil
229}
230
David Benjamin0b635c52015-05-15 19:08:49 -0400231func runTest(test test) (bool, error) {
232 if *mallocTest < 0 {
233 return runTestOnce(test, -1)
234 }
235
236 for mallocNumToFail := int64(*mallocTest); ; mallocNumToFail++ {
237 if passed, err := runTestOnce(test, mallocNumToFail); err != errMoreMallocs {
238 if err != nil {
239 err = fmt.Errorf("at malloc %d: %s", mallocNumToFail, err)
240 }
241 return passed, err
242 }
243 }
244}
245
Adam Langley117da412015-06-10 17:32:25 -0700246// setWorkingDirectory walks up directories as needed until the current working
247// directory is the top of a BoringSSL checkout.
248func setWorkingDirectory() {
249 for i := 0; i < 64; i++ {
David Benjamin95aaf4a2015-09-03 12:09:36 -0400250 if _, err := os.Stat("BUILDING.md"); err == nil {
Adam Langley117da412015-06-10 17:32:25 -0700251 return
252 }
253 os.Chdir("..")
254 }
255
David Benjamin95aaf4a2015-09-03 12:09:36 -0400256 panic("Couldn't find BUILDING.md in a parent directory!")
Adam Langley117da412015-06-10 17:32:25 -0700257}
258
Steven Valdez32223942016-03-02 11:53:07 -0500259func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
260 defer done.Done()
261 for test := range tests {
262 passed, err := runTest(test)
263 results <- result{test, passed, err}
264 }
265}
266
David Benjaminced6e762017-09-28 15:17:05 -0400267func (t test) shortName() string {
David Benjaminaadb4632020-01-16 18:25:37 -0500268 return t.Cmd[0] + t.shardMsg() + t.cpuMsg() + t.envMsg()
Adam Langley7de94982019-10-17 09:15:37 -0700269}
270
271func SpaceIf(returnSpace bool) string {
272 if !returnSpace {
273 return ""
274 }
275 return " "
David Benjaminced6e762017-09-28 15:17:05 -0400276}
277
278func (t test) longName() string {
David Benjaminaadb4632020-01-16 18:25:37 -0500279 return strings.Join(t.Env, " ") + SpaceIf(len(t.Env) != 0) + strings.Join(t.Cmd, " ") + t.cpuMsg()
David Benjaminced6e762017-09-28 15:17:05 -0400280}
281
282func (t test) shardMsg() string {
283 if t.numShards == 0 {
284 return ""
285 }
286
287 return fmt.Sprintf(" [shard %d/%d]", t.shard+1, t.numShards)
288}
289
Adam Langleye212f272017-02-03 08:52:21 -0800290func (t test) cpuMsg() string {
291 if len(t.cpu) == 0 {
292 return ""
293 }
294
295 return fmt.Sprintf(" (for CPU %q)", t.cpu)
296}
297
Adam Langley7de94982019-10-17 09:15:37 -0700298func (t test) envMsg() string {
David Benjaminaadb4632020-01-16 18:25:37 -0500299 if len(t.Env) == 0 {
Adam Langley7de94982019-10-17 09:15:37 -0700300 return ""
301 }
302
303 return " (custom environment)"
304}
305
David Benjamin3d14a152017-06-07 14:02:03 -0400306func (t test) getGTestShards() ([]test, error) {
David Benjaminaadb4632020-01-16 18:25:37 -0500307 if *numWorkers == 1 || len(t.Cmd) != 1 {
David Benjamin3d14a152017-06-07 14:02:03 -0400308 return []test{t}, nil
309 }
310
311 // Only shard the three GTest-based tests.
David Benjaminaadb4632020-01-16 18:25:37 -0500312 if t.Cmd[0] != "crypto/crypto_test" && t.Cmd[0] != "ssl/ssl_test" && t.Cmd[0] != "decrepit/decrepit_test" {
David Benjamin3d14a152017-06-07 14:02:03 -0400313 return []test{t}, nil
314 }
315
David Benjaminaadb4632020-01-16 18:25:37 -0500316 prog := path.Join(*buildDir, t.Cmd[0])
David Benjamin3d14a152017-06-07 14:02:03 -0400317 cmd := exec.Command(prog, "--gtest_list_tests")
318 var stdout bytes.Buffer
319 cmd.Stdout = &stdout
320 if err := cmd.Start(); err != nil {
321 return nil, err
322 }
323 if err := cmd.Wait(); err != nil {
324 return nil, err
325 }
326
327 var group string
328 var tests []string
329 scanner := bufio.NewScanner(&stdout)
330 for scanner.Scan() {
331 line := scanner.Text()
332
333 // Remove the parameter comment and trailing space.
334 if idx := strings.Index(line, "#"); idx >= 0 {
335 line = line[:idx]
336 }
337 line = strings.TrimSpace(line)
338 if len(line) == 0 {
339 continue
340 }
341
342 if line[len(line)-1] == '.' {
343 group = line
344 continue
345 }
346
347 if len(group) == 0 {
348 return nil, fmt.Errorf("found test case %q without group", line)
349 }
350 tests = append(tests, group+line)
351 }
352
353 const testsPerShard = 20
354 if len(tests) <= testsPerShard {
355 return []test{t}, nil
356 }
357
358 // Slow tests which process large test vector files tend to be grouped
359 // together, so shuffle the order.
360 shuffled := make([]string, len(tests))
361 perm := rand.Perm(len(tests))
362 for i, j := range perm {
363 shuffled[i] = tests[j]
364 }
365
366 var shards []test
367 for i := 0; i < len(shuffled); i += testsPerShard {
368 n := len(shuffled) - i
369 if n > testsPerShard {
370 n = testsPerShard
371 }
372 shard := t
David Benjaminaadb4632020-01-16 18:25:37 -0500373 shard.Cmd = []string{shard.Cmd[0], "--gtest_filter=" + strings.Join(shuffled[i:i+n], ":")}
David Benjaminced6e762017-09-28 15:17:05 -0400374 shard.shard = len(shards)
David Benjamin3d14a152017-06-07 14:02:03 -0400375 shards = append(shards, shard)
376 }
377
David Benjaminced6e762017-09-28 15:17:05 -0400378 for i := range shards {
379 shards[i].numShards = len(shards)
380 }
381
David Benjamin3d14a152017-06-07 14:02:03 -0400382 return shards, nil
383}
384
David Benjamin491b9212015-02-11 14:18:45 -0500385func main() {
386 flag.Parse()
Adam Langley117da412015-06-10 17:32:25 -0700387 setWorkingDirectory()
388
David Benjaminaadb4632020-01-16 18:25:37 -0500389 testCases, err := testconfig.ParseTestConfig("util/all_tests.json")
Adam Langley117da412015-06-10 17:32:25 -0700390 if err != nil {
391 fmt.Printf("Failed to parse input: %s\n", err)
392 os.Exit(1)
393 }
David Benjamin491b9212015-02-11 14:18:45 -0500394
Steven Valdez32223942016-03-02 11:53:07 -0500395 var wg sync.WaitGroup
396 tests := make(chan test, *numWorkers)
David Benjamin8b9e7802016-03-02 18:23:21 -0500397 results := make(chan result, *numWorkers)
Steven Valdez32223942016-03-02 11:53:07 -0500398
399 for i := 0; i < *numWorkers; i++ {
David Benjamin8b9e7802016-03-02 18:23:21 -0500400 wg.Add(1)
Steven Valdez32223942016-03-02 11:53:07 -0500401 go worker(tests, results, &wg)
402 }
403
Steven Valdez32223942016-03-02 11:53:07 -0500404 go func() {
David Benjaminaadb4632020-01-16 18:25:37 -0500405 for _, baseTest := range testCases {
406 test := test{Test: baseTest}
Adam Langleye212f272017-02-03 08:52:21 -0800407 if *useSDE {
David Benjaminaadb4632020-01-16 18:25:37 -0500408 if test.SkipSDE {
409 continue
410 }
David Benjamin3d14a152017-06-07 14:02:03 -0400411 // SDE generates plenty of tasks and gets slower
412 // with additional sharding.
Adam Langleye212f272017-02-03 08:52:21 -0800413 for _, cpu := range sdeCPUs {
414 testForCPU := test
415 testForCPU.cpu = cpu
416 tests <- testForCPU
417 }
David Benjamin6ce93cc2018-10-31 14:48:23 -0500418 } else if *simulateARMCPUs {
419 // This mode is run instead of the default path,
420 // so also include the native flow.
421 tests <- test
422 for _, cpu := range armCPUs {
423 testForCPU := test
424 testForCPU.cpu = cpu
425 tests <- testForCPU
426 }
Adam Langleye212f272017-02-03 08:52:21 -0800427 } else {
David Benjamin3d14a152017-06-07 14:02:03 -0400428 shards, err := test.getGTestShards()
429 if err != nil {
430 fmt.Printf("Error listing tests: %s\n", err)
431 os.Exit(1)
432 }
433 for _, shard := range shards {
434 tests <- shard
435 }
Adam Langleye212f272017-02-03 08:52:21 -0800436 }
David Benjamin8b9e7802016-03-02 18:23:21 -0500437 }
438 close(tests)
439
Steven Valdez32223942016-03-02 11:53:07 -0500440 wg.Wait()
441 close(results)
442 }()
443
David Benjamince617102018-11-14 17:31:02 -0600444 testOutput := testresult.NewResults()
David Benjamin6ce93cc2018-10-31 14:48:23 -0500445 var failed, skipped []test
Steven Valdez32223942016-03-02 11:53:07 -0500446 for testResult := range results {
447 test := testResult.Test
David Benjaminaadb4632020-01-16 18:25:37 -0500448 args := test.Cmd
David Benjamin5f237bc2015-02-11 17:14:15 -0500449
David Benjamin6ce93cc2018-10-31 14:48:23 -0500450 if testResult.Error == errTestSkipped {
451 fmt.Printf("%s\n", test.longName())
452 fmt.Printf("%s was skipped\n", args[0])
453 skipped = append(skipped, test)
David Benjamince617102018-11-14 17:31:02 -0600454 testOutput.AddSkip(test.longName())
David Benjamin6ce93cc2018-10-31 14:48:23 -0500455 } else if testResult.Error != nil {
David Benjaminced6e762017-09-28 15:17:05 -0400456 fmt.Printf("%s\n", test.longName())
Adam Langleye212f272017-02-03 08:52:21 -0800457 fmt.Printf("%s failed to complete: %s\n", args[0], testResult.Error)
David Benjamin491b9212015-02-11 14:18:45 -0500458 failed = append(failed, test)
David Benjamince617102018-11-14 17:31:02 -0600459 testOutput.AddResult(test.longName(), "CRASH")
Steven Valdez32223942016-03-02 11:53:07 -0500460 } else if !testResult.Passed {
David Benjaminced6e762017-09-28 15:17:05 -0400461 fmt.Printf("%s\n", test.longName())
Adam Langleye212f272017-02-03 08:52:21 -0800462 fmt.Printf("%s failed to print PASS on the last line.\n", args[0])
David Benjamin491b9212015-02-11 14:18:45 -0500463 failed = append(failed, test)
David Benjamince617102018-11-14 17:31:02 -0600464 testOutput.AddResult(test.longName(), "FAIL")
David Benjamin5f237bc2015-02-11 17:14:15 -0500465 } else {
David Benjaminced6e762017-09-28 15:17:05 -0400466 fmt.Printf("%s\n", test.shortName())
David Benjamince617102018-11-14 17:31:02 -0600467 testOutput.AddResult(test.longName(), "PASS")
David Benjamin491b9212015-02-11 14:18:45 -0500468 }
469 }
470
David Benjamin5f237bc2015-02-11 17:14:15 -0500471 if *jsonOutput != "" {
David Benjamince617102018-11-14 17:31:02 -0600472 if err := testOutput.WriteToFile(*jsonOutput); err != nil {
David Benjamin5f237bc2015-02-11 17:14:15 -0500473 fmt.Fprintf(os.Stderr, "Error: %s\n", err)
474 }
475 }
David Benjamin2ab7a862015-04-04 17:02:18 -0400476
David Benjamin6ce93cc2018-10-31 14:48:23 -0500477 if len(skipped) > 0 {
478 fmt.Printf("\n%d of %d tests were skipped:\n", len(skipped), len(testCases))
479 for _, test := range skipped {
David Benjaminaadb4632020-01-16 18:25:37 -0500480 fmt.Printf("\t%s%s\n", strings.Join(test.Cmd, " "), test.cpuMsg())
David Benjamin6ce93cc2018-10-31 14:48:23 -0500481 }
482 }
483
David Benjamin2ab7a862015-04-04 17:02:18 -0400484 if len(failed) > 0 {
David Benjamin8b9e7802016-03-02 18:23:21 -0500485 fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(testCases))
David Benjamin2ab7a862015-04-04 17:02:18 -0400486 for _, test := range failed {
David Benjaminaadb4632020-01-16 18:25:37 -0500487 fmt.Printf("\t%s%s\n", strings.Join(test.Cmd, " "), test.cpuMsg())
David Benjamin2ab7a862015-04-04 17:02:18 -0400488 }
489 os.Exit(1)
490 }
491
492 fmt.Printf("\nAll tests passed!\n")
David Benjamin491b9212015-02-11 14:18:45 -0500493}