[graphite] Remove CapsTest

Bug: skia:12466
Change-Id: Ibb99647cf151fb45901aee340d60914611c2ba75
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/461096
Auto-Submit: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
This commit is contained in:
Jim Van Verth 2021-10-19 12:58:33 -04:00 committed by SkCQ
parent f3f2e75820
commit a2645f2f5f
2 changed files with 0 additions and 20 deletions

View File

@ -327,7 +327,6 @@ metal_tests_sources = [
]
graphite_tests_sources = [
"$_tests/graphite/CapsTest.cpp",
"$_tests/graphite/CommandBufferTest.cpp",
"$_tests/graphite/MaskTest.cpp",
"$_tests/graphite/RectTest.cpp",

View File

@ -1,19 +0,0 @@
/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "tests/Test.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/Gpu.h"
DEF_GRAPHITE_TEST_FOR_CONTEXTS(CapsTest, reporter, context) {
// TODO: Jim takes this over
auto caps = context->priv().gpu()->caps();
REPORTER_ASSERT(reporter, caps);
}