source: src/tests/preempt_longrun/yield.c@ 704d11e

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr no_list persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 704d11e was 7bdcac1, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Added the option to make longrun tests run until failure

  • Property mode set to 100644
File size: 586 bytes
Line 
1#include <kernel>
2#include <thread>
3#include <time>
4
5#include "long_tests.h"
6
7#ifndef PREEMPTION_RATE
8#error PREEMPTION_RATE not defined in makefile
9#endif
10
11Duration default_preemption() {
12 return PREEMPTION_RATE;
13}
14
15#ifdef TEST_LONG
16static const unsigned long N = 9_750_000ul;
17#else
18static const unsigned long N = 325_000ul;
19#endif
20
21thread worker_t {};
22
23void main(worker_t & this) {
24 for(int i = 0; TEST(i < N); i++) {
25 yield();
26 KICK_WATCHDOG;
27 }
28}
29
30extern "C" {
31static worker_t * workers;
32}
33
34int main(int argc, char* argv[]) {
35 processor p;
36 {
37 worker_t w[7];
38 workers = w;
39 }
40}
Note: See TracBrowser for help on using the repository browser.