source: src/tests/preempt_longrun/processor.c @ 7bdcac1

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 7bdcac1 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: 566 bytes
RevLine 
[cc3e4d0]1#include <kernel>
2#include <thread>
[b9da9585]3#include <time>
[cd99ef1]4
[ea8b2f7]5#include <unistd.h>
6
[7bdcac1]7#include "long_tests.h"
8
[cc3e4d0]9#ifndef PREEMPTION_RATE
[b9da9585]10#error PREEMPTION_RATE not defined in makefile
[cc3e4d0]11#endif
12
[8ad6533]13Duration default_preemption() {
[cc3e4d0]14        return PREEMPTION_RATE;
15}
16
[85b1deb]17static const unsigned long N = 50_000ul;
[b9da9585]18
[cc3e4d0]19int main(int argc, char* argv[]) {
[e5d4e5c]20        processor * p[15];
21        for ( int pi = 0; pi < 15; pi++ ) {
22                p[pi] = new();
23        }
[7bdcac1]24        for ( int i = 0; TEST(i < N); i++) {
[e5d4e5c]25                int pi = i % 15;
26                delete( p[pi] );
27                p[pi] = new();
[7bdcac1]28                KICK_WATCHDOG;
[cc3e4d0]29        }
[863c413]30        for ( int pi = 0; pi < 15; pi++ ) {
31                delete( p[pi] );
32        }
[1449d83]33}
Note: See TracBrowser for help on using the repository browser.