-
Notifications
You must be signed in to change notification settings - Fork 23
/
testLab.h
42 lines (33 loc) · 989 Bytes
/
testLab.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once
#include <stddef.h>
#include <stdio.h>
typedef struct {
int (*Feeder)(void);
int (*Checker)(void);
} TLabTest;
TLabTest GetLabTest(int testIdx);
int GetTestCount(void);
const char* GetTesterName(void);
int GetTestTimeout(void);
size_t GetTestMemoryLimit(void);
int HaveGarbageAtTheEnd(FILE* out);
extern const char Pass[];
extern const char Fail[];
const char* ScanUintUint(FILE* out, unsigned* a, unsigned* b);
const char* ScanIntInt(FILE* out, int* a, int* b);
const char* ScanInt(FILE* out, int* a);
const char* ScanChars(FILE* out, size_t bufferSize, char* buffer);
size_t GetLabPointerSize(void);
unsigned RoundUptoThousand(unsigned int n);
#define MIN_PROCESS_RSS_BYTES (1024*1024*sizeof(void*)/2)
#ifdef _WIN32
// Helpers for Windows
#include <windows.h>
#else
// Helpers and compatibility for Linux
#include <strings.h>
#define _strnicmp(a, b, c) strncasecmp((a), (b), (c))
#include <stdint.h>
typedef uint32_t DWORD;
DWORD GetTickCount(void);
#endif