blob: d4bb80231b86219a1658d8953eeb1eca705e5a49 [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 (
18 "bytes"
David Benjamin5f237bc2015-02-11 17:14:15 -050019 "encoding/json"
David Benjamin491b9212015-02-11 14:18:45 -050020 "flag"
21 "fmt"
22 "os"
23 "os/exec"
24 "path"
David Benjamin0b635c52015-05-15 19:08:49 -040025 "strconv"
David Benjamin491b9212015-02-11 14:18:45 -050026 "strings"
Steven Valdez32223942016-03-02 11:53:07 -050027 "sync"
David Benjamin0b635c52015-05-15 19:08:49 -040028 "syscall"
David Benjamin5f237bc2015-02-11 17:14:15 -050029 "time"
David Benjamin491b9212015-02-11 14:18:45 -050030)
31
32// TODO(davidben): Link tests with the malloc shim and port -malloc-test to this runner.
33
34var (
David Benjamin0b635c52015-05-15 19:08:49 -040035 useValgrind = flag.Bool("valgrind", false, "If true, run code under valgrind")
Steven Valdezab14a4a2016-02-29 16:58:26 -050036 useCallgrind = flag.Bool("callgrind", false, "If true, run code under valgrind to generate callgrind traces.")
David Benjamin0b635c52015-05-15 19:08:49 -040037 useGDB = flag.Bool("gdb", false, "If true, run BoringSSL code under gdb")
Adam Langleye212f272017-02-03 08:52:21 -080038 useSDE = flag.Bool("sde", false, "If true, run BoringSSL code under Intel's SDE for each supported chip")
David Benjamin0b635c52015-05-15 19:08:49 -040039 buildDir = flag.String("build-dir", "build", "The build directory to run the tests from.")
Steven Valdez32223942016-03-02 11:53:07 -050040 numWorkers = flag.Int("num-workers", 1, "Runs the given number of workers when testing.")
David Benjamin0b635c52015-05-15 19:08:49 -040041 jsonOutput = flag.String("json-output", "", "The file to output JSON results to.")
42 mallocTest = flag.Int64("malloc-test", -1, "If non-negative, run each test with each malloc in turn failing from the given number onwards.")
43 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 Benjamin491b9212015-02-11 14:18:45 -050044)
45
Adam Langleye212f272017-02-03 08:52:21 -080046type test struct {
47 args []string
48 // cpu, if not empty, contains an Intel CPU code to simulate. Run
49 // `sde64 -help` to get a list of these codes.
50 cpu string
51}
David Benjamin491b9212015-02-11 14:18:45 -050052
Steven Valdez32223942016-03-02 11:53:07 -050053type result struct {
54 Test test
55 Passed bool
56 Error error
57}
58
David Benjamin5f237bc2015-02-11 17:14:15 -050059// testOutput is a representation of Chromium's JSON test result format. See
60// https://www.chromium.org/developers/the-json-test-results-format
61type testOutput struct {
62 Version int `json:"version"`
63 Interrupted bool `json:"interrupted"`
64 PathDelimiter string `json:"path_delimiter"`
65 SecondsSinceEpoch float64 `json:"seconds_since_epoch"`
66 NumFailuresByType map[string]int `json:"num_failures_by_type"`
67 Tests map[string]testResult `json:"tests"`
68}
69
70type testResult struct {
David Benjamin7ead6052015-04-04 03:57:26 -040071 Actual string `json:"actual"`
72 Expected string `json:"expected"`
73 IsUnexpected bool `json:"is_unexpected"`
David Benjamin5f237bc2015-02-11 17:14:15 -050074}
75
Adam Langleye212f272017-02-03 08:52:21 -080076// sdeCPUs contains a list of CPU code that we run all tests under when *useSDE
77// is true.
78var sdeCPUs = []string{
79 "p4p", // Pentium4 Prescott
80 "mrm", // Merom
81 "pnr", // Penryn
82 "nhm", // Nehalem
83 "wsm", // Westmere
84 "snb", // Sandy Bridge
85 "ivb", // Ivy Bridge
86 "hsw", // Haswell
87 "bdw", // Broadwell
88 "skx", // Skylake Server
89 "skl", // Skylake Client
90 "cnl", // Cannonlake
91 "knl", // Knights Landing
92 "slt", // Saltwell
93 "slm", // Silvermont
94 "glm", // Goldmont
95}
96
David Benjamin5f237bc2015-02-11 17:14:15 -050097func newTestOutput() *testOutput {
98 return &testOutput{
99 Version: 3,
100 PathDelimiter: ".",
101 SecondsSinceEpoch: float64(time.Now().UnixNano()) / float64(time.Second/time.Nanosecond),
102 NumFailuresByType: make(map[string]int),
103 Tests: make(map[string]testResult),
104 }
105}
106
107func (t *testOutput) addResult(name, result string) {
108 if _, found := t.Tests[name]; found {
109 panic(name)
110 }
David Benjamin7ead6052015-04-04 03:57:26 -0400111 t.Tests[name] = testResult{
112 Actual: result,
113 Expected: "PASS",
114 IsUnexpected: result != "PASS",
115 }
David Benjamin5f237bc2015-02-11 17:14:15 -0500116 t.NumFailuresByType[result]++
117}
118
119func (t *testOutput) writeTo(name string) error {
120 file, err := os.Create(name)
121 if err != nil {
122 return err
123 }
124 defer file.Close()
125 out, err := json.MarshalIndent(t, "", " ")
126 if err != nil {
127 return err
128 }
129 _, err = file.Write(out)
130 return err
131}
132
David Benjamin491b9212015-02-11 14:18:45 -0500133func valgrindOf(dbAttach bool, path string, args ...string) *exec.Cmd {
David Benjamind2ba8892016-09-20 19:41:04 -0400134 valgrindArgs := []string{"--error-exitcode=99", "--track-origins=yes", "--leak-check=full", "--quiet"}
David Benjamin491b9212015-02-11 14:18:45 -0500135 if dbAttach {
136 valgrindArgs = append(valgrindArgs, "--db-attach=yes", "--db-command=xterm -e gdb -nw %f %p")
137 }
138 valgrindArgs = append(valgrindArgs, path)
139 valgrindArgs = append(valgrindArgs, args...)
140
141 return exec.Command("valgrind", valgrindArgs...)
142}
143
Steven Valdezab14a4a2016-02-29 16:58:26 -0500144func callgrindOf(path string, args ...string) *exec.Cmd {
145 valgrindArgs := []string{"-q", "--tool=callgrind", "--dump-instr=yes", "--collect-jumps=yes", "--callgrind-out-file=" + *buildDir + "/callgrind/callgrind.out.%p"}
146 valgrindArgs = append(valgrindArgs, path)
147 valgrindArgs = append(valgrindArgs, args...)
148
149 return exec.Command("valgrind", valgrindArgs...)
150}
151
David Benjamin0b635c52015-05-15 19:08:49 -0400152func gdbOf(path string, args ...string) *exec.Cmd {
153 xtermArgs := []string{"-e", "gdb", "--args"}
154 xtermArgs = append(xtermArgs, path)
155 xtermArgs = append(xtermArgs, args...)
156
157 return exec.Command("xterm", xtermArgs...)
158}
159
Adam Langleye212f272017-02-03 08:52:21 -0800160func sdeOf(cpu, path string, args ...string) *exec.Cmd {
161 sdeArgs := []string{"-" + cpu, "--", path}
162 sdeArgs = append(sdeArgs, args...)
163 return exec.Command("sde", sdeArgs...)
164}
165
David Benjamin0b635c52015-05-15 19:08:49 -0400166type moreMallocsError struct{}
167
168func (moreMallocsError) Error() string {
169 return "child process did not exhaust all allocation calls"
170}
171
172var errMoreMallocs = moreMallocsError{}
173
174func runTestOnce(test test, mallocNumToFail int64) (passed bool, err error) {
Adam Langleye212f272017-02-03 08:52:21 -0800175 prog := path.Join(*buildDir, test.args[0])
176 args := test.args[1:]
David Benjamin491b9212015-02-11 14:18:45 -0500177 var cmd *exec.Cmd
178 if *useValgrind {
179 cmd = valgrindOf(false, prog, args...)
Steven Valdezab14a4a2016-02-29 16:58:26 -0500180 } else if *useCallgrind {
181 cmd = callgrindOf(prog, args...)
David Benjamin0b635c52015-05-15 19:08:49 -0400182 } else if *useGDB {
183 cmd = gdbOf(prog, args...)
Adam Langleye212f272017-02-03 08:52:21 -0800184 } else if *useSDE {
185 cmd = sdeOf(test.cpu, prog, args...)
David Benjamin491b9212015-02-11 14:18:45 -0500186 } else {
187 cmd = exec.Command(prog, args...)
188 }
189 var stdoutBuf bytes.Buffer
David Benjamin0b635c52015-05-15 19:08:49 -0400190 var stderrBuf bytes.Buffer
David Benjamin491b9212015-02-11 14:18:45 -0500191 cmd.Stdout = &stdoutBuf
David Benjamin0b635c52015-05-15 19:08:49 -0400192 cmd.Stderr = &stderrBuf
193 if mallocNumToFail >= 0 {
194 cmd.Env = os.Environ()
195 cmd.Env = append(cmd.Env, "MALLOC_NUMBER_TO_FAIL="+strconv.FormatInt(mallocNumToFail, 10))
196 if *mallocTestDebug {
197 cmd.Env = append(cmd.Env, "MALLOC_ABORT_ON_FAIL=1")
198 }
199 cmd.Env = append(cmd.Env, "_MALLOC_CHECK=1")
200 }
David Benjamin491b9212015-02-11 14:18:45 -0500201
202 if err := cmd.Start(); err != nil {
203 return false, err
204 }
205 if err := cmd.Wait(); err != nil {
David Benjamin0b635c52015-05-15 19:08:49 -0400206 if exitError, ok := err.(*exec.ExitError); ok {
207 if exitError.Sys().(syscall.WaitStatus).ExitStatus() == 88 {
208 return false, errMoreMallocs
209 }
210 }
211 fmt.Print(string(stderrBuf.Bytes()))
David Benjamin491b9212015-02-11 14:18:45 -0500212 return false, err
213 }
David Benjamin0b635c52015-05-15 19:08:49 -0400214 fmt.Print(string(stderrBuf.Bytes()))
David Benjamin491b9212015-02-11 14:18:45 -0500215
216 // Account for Windows line-endings.
217 stdout := bytes.Replace(stdoutBuf.Bytes(), []byte("\r\n"), []byte("\n"), -1)
218
219 if bytes.HasSuffix(stdout, []byte("PASS\n")) &&
220 (len(stdout) == 5 || stdout[len(stdout)-6] == '\n') {
221 return true, nil
222 }
David Benjamin96628432017-01-19 19:05:47 -0500223
224 // Also accept a googletest-style pass line. This is left here in
225 // transition until the tests are all converted and this script made
226 // unnecessary.
227 if bytes.Contains(stdout, []byte("\n[ PASSED ]")) {
228 return true, nil
229 }
230
David Benjamin491b9212015-02-11 14:18:45 -0500231 return false, nil
232}
233
David Benjamin0b635c52015-05-15 19:08:49 -0400234func runTest(test test) (bool, error) {
235 if *mallocTest < 0 {
236 return runTestOnce(test, -1)
237 }
238
239 for mallocNumToFail := int64(*mallocTest); ; mallocNumToFail++ {
240 if passed, err := runTestOnce(test, mallocNumToFail); err != errMoreMallocs {
241 if err != nil {
242 err = fmt.Errorf("at malloc %d: %s", mallocNumToFail, err)
243 }
244 return passed, err
245 }
246 }
247}
248
David Benjamin5c694e32015-05-11 15:58:08 -0400249// shortTestName returns the short name of a test. Except for evp_test, it
250// assumes that any argument which ends in .txt is a path to a data file and not
251// relevant to the test's uniqueness.
David Benjamin5f237bc2015-02-11 17:14:15 -0500252func shortTestName(test test) string {
253 var args []string
Adam Langleye212f272017-02-03 08:52:21 -0800254 for _, arg := range test.args {
255 if test.args[0] == "crypto/evp/evp_test" || !strings.HasSuffix(arg, ".txt") {
David Benjamin5f237bc2015-02-11 17:14:15 -0500256 args = append(args, arg)
257 }
258 }
Adam Langleye212f272017-02-03 08:52:21 -0800259 return strings.Join(args, " ") + test.cpuMsg()
David Benjamin5f237bc2015-02-11 17:14:15 -0500260}
261
Adam Langley117da412015-06-10 17:32:25 -0700262// setWorkingDirectory walks up directories as needed until the current working
263// directory is the top of a BoringSSL checkout.
264func setWorkingDirectory() {
265 for i := 0; i < 64; i++ {
David Benjamin95aaf4a2015-09-03 12:09:36 -0400266 if _, err := os.Stat("BUILDING.md"); err == nil {
Adam Langley117da412015-06-10 17:32:25 -0700267 return
268 }
269 os.Chdir("..")
270 }
271
David Benjamin95aaf4a2015-09-03 12:09:36 -0400272 panic("Couldn't find BUILDING.md in a parent directory!")
Adam Langley117da412015-06-10 17:32:25 -0700273}
274
275func parseTestConfig(filename string) ([]test, error) {
276 in, err := os.Open(filename)
277 if err != nil {
278 return nil, err
279 }
280 defer in.Close()
281
282 decoder := json.NewDecoder(in)
Adam Langleye212f272017-02-03 08:52:21 -0800283 var testArgs [][]string
284 if err := decoder.Decode(&testArgs); err != nil {
Adam Langley117da412015-06-10 17:32:25 -0700285 return nil, err
286 }
Adam Langleye212f272017-02-03 08:52:21 -0800287
288 var result []test
289 for _, args := range testArgs {
290 result = append(result, test{args: args})
291 }
Adam Langley117da412015-06-10 17:32:25 -0700292 return result, nil
293}
294
Steven Valdez32223942016-03-02 11:53:07 -0500295func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
296 defer done.Done()
297 for test := range tests {
298 passed, err := runTest(test)
299 results <- result{test, passed, err}
300 }
301}
302
Adam Langleye212f272017-02-03 08:52:21 -0800303func (t test) cpuMsg() string {
304 if len(t.cpu) == 0 {
305 return ""
306 }
307
308 return fmt.Sprintf(" (for CPU %q)", t.cpu)
309}
310
David Benjamin491b9212015-02-11 14:18:45 -0500311func main() {
312 flag.Parse()
Adam Langley117da412015-06-10 17:32:25 -0700313 setWorkingDirectory()
314
Steven Valdez32223942016-03-02 11:53:07 -0500315 testCases, err := parseTestConfig("util/all_tests.json")
Adam Langley117da412015-06-10 17:32:25 -0700316 if err != nil {
317 fmt.Printf("Failed to parse input: %s\n", err)
318 os.Exit(1)
319 }
David Benjamin491b9212015-02-11 14:18:45 -0500320
Steven Valdez32223942016-03-02 11:53:07 -0500321 var wg sync.WaitGroup
322 tests := make(chan test, *numWorkers)
David Benjamin8b9e7802016-03-02 18:23:21 -0500323 results := make(chan result, *numWorkers)
Steven Valdez32223942016-03-02 11:53:07 -0500324
325 for i := 0; i < *numWorkers; i++ {
David Benjamin8b9e7802016-03-02 18:23:21 -0500326 wg.Add(1)
Steven Valdez32223942016-03-02 11:53:07 -0500327 go worker(tests, results, &wg)
328 }
329
Steven Valdez32223942016-03-02 11:53:07 -0500330 go func() {
David Benjamin8b9e7802016-03-02 18:23:21 -0500331 for _, test := range testCases {
Adam Langleye212f272017-02-03 08:52:21 -0800332 if *useSDE {
333 for _, cpu := range sdeCPUs {
334 testForCPU := test
335 testForCPU.cpu = cpu
336 tests <- testForCPU
337 }
338 } else {
339 tests <- test
340 }
David Benjamin8b9e7802016-03-02 18:23:21 -0500341 }
342 close(tests)
343
Steven Valdez32223942016-03-02 11:53:07 -0500344 wg.Wait()
345 close(results)
346 }()
347
David Benjamin5f237bc2015-02-11 17:14:15 -0500348 testOutput := newTestOutput()
David Benjamin491b9212015-02-11 14:18:45 -0500349 var failed []test
Steven Valdez32223942016-03-02 11:53:07 -0500350 for testResult := range results {
351 test := testResult.Test
Adam Langleye212f272017-02-03 08:52:21 -0800352 args := test.args
David Benjamin5f237bc2015-02-11 17:14:15 -0500353
Adam Langleye212f272017-02-03 08:52:21 -0800354 fmt.Printf("%s%s\n", strings.Join(args, " "), test.cpuMsg())
David Benjamin5f237bc2015-02-11 17:14:15 -0500355 name := shortTestName(test)
Steven Valdez32223942016-03-02 11:53:07 -0500356 if testResult.Error != nil {
Adam Langleye212f272017-02-03 08:52:21 -0800357 fmt.Printf("%s failed to complete: %s\n", args[0], testResult.Error)
David Benjamin491b9212015-02-11 14:18:45 -0500358 failed = append(failed, test)
David Benjamin5f237bc2015-02-11 17:14:15 -0500359 testOutput.addResult(name, "CRASHED")
Steven Valdez32223942016-03-02 11:53:07 -0500360 } else if !testResult.Passed {
Adam Langleye212f272017-02-03 08:52:21 -0800361 fmt.Printf("%s failed to print PASS on the last line.\n", args[0])
David Benjamin491b9212015-02-11 14:18:45 -0500362 failed = append(failed, test)
David Benjamin5f237bc2015-02-11 17:14:15 -0500363 testOutput.addResult(name, "FAIL")
364 } else {
365 testOutput.addResult(name, "PASS")
David Benjamin491b9212015-02-11 14:18:45 -0500366 }
367 }
368
David Benjamin5f237bc2015-02-11 17:14:15 -0500369 if *jsonOutput != "" {
370 if err := testOutput.writeTo(*jsonOutput); err != nil {
371 fmt.Fprintf(os.Stderr, "Error: %s\n", err)
372 }
373 }
David Benjamin2ab7a862015-04-04 17:02:18 -0400374
375 if len(failed) > 0 {
David Benjamin8b9e7802016-03-02 18:23:21 -0500376 fmt.Printf("\n%d of %d tests failed:\n", len(failed), len(testCases))
David Benjamin2ab7a862015-04-04 17:02:18 -0400377 for _, test := range failed {
Adam Langleye212f272017-02-03 08:52:21 -0800378 fmt.Printf("\t%s%s\n", strings.Join(test.args, ""), test.cpuMsg())
David Benjamin2ab7a862015-04-04 17:02:18 -0400379 }
380 os.Exit(1)
381 }
382
383 fmt.Printf("\nAll tests passed!\n")
David Benjamin491b9212015-02-11 14:18:45 -0500384}