source: tests/long_tests.hfa @ 1d72a11

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 1d72a11 was dc8511c, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

first attempt at updating suffixes for test programs

  • Property mode set to 100644
File size: 380 bytes
Line 
1#pragma once
2
3#include <unistd.h>
4
5#if   defined(TEST_FOREVER)
6
7static unsigned long long __kick_count = 0;
8#if !defined(__kick_rate)
9#define __kick_rate 5000ul
10#endif
11
12#define TEST(x) 1
13#define KICK_WATCHDOG do { __kick_count++; if(__kick_count > __kick_rate) { write(STDOUT_FILENO, ".", 1); __kick_count = 0; } } while(0)
14
15
16#else
17
18#define TEST(x) x
19#define KICK_WATCHDOG
20
21#endif
Note: See TracBrowser for help on using the repository browser.