| // Copyright 2019 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| package graphics |
| |
| import ( |
| "context" |
| "path/filepath" |
| |
| "chromiumos/tast/local/gtest" |
| "chromiumos/tast/testing" |
| ) |
| |
| func init() { |
| testing.AddTest(&testing.Test{ |
| Func: GBM, |
| Desc: "Exercises the GBM (Graphics Buffer Management) implementation via built-in tests", |
| Contacts: []string{ |
| "marcheu@chromium.org", |
| "hidehiko@chromium.org", // Tast port author. |
| }, |
| SoftwareDeps: []string{"no_qemu"}, |
| Attr: []string{"group:mainline", "informational"}, |
| Fixture: "gpuWatchDog", |
| }) |
| } |
| |
| func GBM(ctx context.Context, s *testing.State) { |
| const exec = "/usr/local/libexec/tast/helpers/local/cros/graphics.GBM.gbmtest" |
| |
| list, err := gtest.ListTests(ctx, exec) |
| if err != nil { |
| s.Fatal("Failed to list gtest: ", err) |
| } |
| logdir := filepath.Join(s.OutDir(), "gtest") |
| for _, testcase := range list { |
| s.Log("Running ", testcase) |
| if _, err := gtest.New(exec, |
| gtest.Logfile(filepath.Join(logdir, testcase+".log")), |
| gtest.Filter(testcase), |
| ).Run(ctx); err != nil { |
| s.Errorf("%s failed: %v", testcase, err) |
| } |
| } |
| } |