Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(859)

Unified Diff: tests/RTConfRegistryTest.cpp

Issue 2212473002: SkRTConf: eliminate (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: `git grep SK_CONF` now returns nothing Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/PathOpsSkpClipTest.cpp ('k') | tests/RuntimeConfigTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/RTConfRegistryTest.cpp
diff --git a/tests/RTConfRegistryTest.cpp b/tests/RTConfRegistryTest.cpp
deleted file mode 100644
index be019f70b418507a3df49c7b30f806c33c9c35bc..0000000000000000000000000000000000000000
--- a/tests/RTConfRegistryTest.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Copyright 2013 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "SkRTConf.h"
-#include "SkOSEnvironment.h"
-#include "Test.h"
-
-// Friended proxy for SkRTConfRegistry::parse()
-template <typename T>
-bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) {
- return reg->parse(key, value);
-}
-
-DEF_TEST(SkRTConfRegistry, reporter) {
- SkRTConfRegistry reg;
-
- sk_setenv("skia_nonexistent_item", "132");
- int result = 0;
- test_rt_conf_parse(&reg, "nonexistent.item", &result);
- REPORTER_ASSERT(reporter, result == 132);
-}
« no previous file with comments | « tests/PathOpsSkpClipTest.cpp ('k') | tests/RuntimeConfigTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698