source: src/tests/preempt_longrun/yield.c @ d35e796

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since d35e796 was 7bdcac1, checked in by Thierry Delisle <tdelisle@…>, 6 years ago

Added the option to make longrun tests run until failure

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