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

Side by Side Diff: bootstat_test.h

Issue 5500001: Eliminate the dependency on kernel pseudo-files when running unit tests (Closed) Base URL: http://git.chromium.org/git/bootstat.git@master
Patch Set: Update in response to review comments Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « bootstat_log.c ('k') | log_unit_tests.cc » ('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 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // API for C and C++ bindings for unit tests for the Chromium OS
6 // 'bootstat' facility. This interface is meant to be used by unit
7 // test code only, and is not intended to be exported for general
8 // use.
9
10 #ifndef BOOTSTAT_TEST_H_
11 #define BOOTSTAT_TEST_H_
12
13 #if defined(__cplusplus)
14 extern "C" {
15 #endif
16
17 extern void bootstat_set_output_directory(const char*);
18 extern void bootstat_set_uptime_file_name(const char*);
19 extern void bootstat_set_disk_file_name(const char*);
20
21 #if defined(__cplusplus)
22 }
23 #endif
24 #endif // BOOTSTAT_TEST_H_
OLDNEW
« no previous file with comments | « bootstat_log.c ('k') | log_unit_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698