| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 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 | 2 * |
| 3 // found in the LICENSE file. | 3 * This program is free software; you can redistribute it and/or modify |
| 4 * it under the terms of the GNU General Public License version 2, as |
| 5 * published by the Free Software Foundation. |
| 6 * |
| 7 * This program is distributed in the hope that it will be useful, |
| 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 * GNU General Public License for more details. |
| 11 * |
| 12 * You should have received a copy of the GNU General Public License along |
| 13 * with this program; if not, write to the Free Software Foundation, Inc., |
| 14 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 15 */ |
| 4 | 16 |
| 5 #include <nih/test.h> | 17 #include <nih/test.h> |
| 6 | 18 |
| 7 #include <ctype.h> | 19 #include <ctype.h> |
| 8 #include <limits.h> | 20 #include <limits.h> |
| 9 | 21 |
| 10 #include <nih/error.h> | 22 #include <nih/error.h> |
| 11 #include <nih/file.h> | 23 #include <nih/file.h> |
| 12 | 24 |
| 13 #include "perf_log.h" | 25 #include "perf_log.h" |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 197 |
| 186 int | 198 int |
| 187 main (int argc, | 199 main (int argc, |
| 188 char *argv[]) | 200 char *argv[]) |
| 189 { | 201 { |
| 190 test_get_file_fields (); | 202 test_get_file_fields (); |
| 191 test_perf_log_message (); | 203 test_perf_log_message (); |
| 192 | 204 |
| 193 return 0; | 205 return 0; |
| 194 } | 206 } |
| OLD | NEW |