blob: 8199c0369564f5f3a6671035f35c12baebf85aea [file] [log] [blame]
Louis Huemiller87dd9e92010-08-30 17:15:49 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18#ifndef _TESTUTIL_H_
19#define _TESTUTIL_H_
20
21#include <stdint.h>
22#include <stdio.h>
23#include <sys/time.h>
24
Louis Huemillerd2447fd2010-10-14 17:52:13 -070025__BEGIN_DECLS
Louis Huemiller87dd9e92010-08-30 17:15:49 -070026
27// Time Utilities
Louis Huemiller87dd9e92010-08-30 17:15:49 -070028struct timespec double2ts(double amt);
Louis Huemillerd2447fd2010-10-14 17:52:13 -070029struct timeval double2tv(double amt);
30double ts2double(const struct timespec *val);
31double tv2double(const struct timeval *val);
32struct timespec tsDelta(const struct timespec *first,
33 const struct timespec *second);
Louis Huemiller87dd9e92010-08-30 17:15:49 -070034struct timeval tvDelta(const struct timeval *first,
35 const struct timeval *second);
Louis Huemillerd2447fd2010-10-14 17:52:13 -070036
Louis Huemiller87dd9e92010-08-30 17:15:49 -070037void delay(float amt);
38
39// Pseudo Random Utilities
40int testRandBool(void);
41
42// Testcase Output
43void testSetLogCatTag(const char *tag);
44const char *testGetLogCatTag(void);
45void testPrint(FILE *stream, const char *fmt, ...);
46#define testPrintI(...) do { \
47 testPrint(stdout, __VA_ARGS__); \
48 } while (0)
49#define testPrintE(...) do { \
50 testPrint(stderr, __VA_ARGS__); \
51 } while (0)
52
Louis Huemillerd2447fd2010-10-14 17:52:13 -070053__END_DECLS
Louis Huemiller87dd9e92010-08-30 17:15:49 -070054
55#endif