testUtil.h revision a31faf1b7edb5c20d3a8949ba3ca767b4f0a4a7d
1/*
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
25__BEGIN_DECLS
26
27// Time Utilities
28struct timespec double2ts(double amt);
29struct 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);
34struct timeval tvDelta(const struct timeval *first,
35    const struct timeval *second);
36
37void testDelay(float amt);
38
39// Pseudo Random Utilities
40int testRandBool(void);
41unsigned int testRandMod(unsigned int mod);
42double testRandFract(void);
43
44// Testcase Output
45void testSetLogCatTag(const char *tag);
46const char *testGetLogCatTag(void);
47void testPrint(FILE *stream, const char *fmt, ...);
48#define testPrintI(...) do { \
49        testPrint(stdout, __VA_ARGS__); \
50    } while (0)
51#define testPrintE(...) do { \
52        testPrint(stderr, __VA_ARGS__); \
53    } while (0)
54
55// Hex Dump
56void testXDump(const void *buf, size_t size);
57void testXDumpSetIndent(uint8_t indent);
58uint8_t testXDumpGetIndent(void);
59void testXDumpSetOffset(uint64_t offset);
60uint64_t testXDumpGetOffset(void);
61
62__END_DECLS
63
64#endif
65