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

Side by Side Diff: tests/RTConfRegistryTest.cpp

Issue 2215433003: Revert of SkRTConf: reduce functionality to what we use, increase simplicity (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « tests/PathOpsSkpClipTest.cpp ('k') | tests/RuntimeConfigTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #include "SkRTConf.h"
9 #include "SkOSEnvironment.h"
10 #include "Test.h"
11
12 // Friended proxy for SkRTConfRegistry::parse()
13 template <typename T>
14 bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) {
15 return reg->parse(key, value);
16 }
17
18 DEF_TEST(SkRTConfRegistry, reporter) {
19 SkRTConfRegistry reg;
20
21 sk_setenv("skia_nonexistent_item", "132");
22 int result = 0;
23 test_rt_conf_parse(&reg, "nonexistent.item", &result);
24 REPORTER_ASSERT(reporter, result == 132);
25 }
OLDNEW
« 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