Changes in / [4c03e63:88177cf]


Ignore:
Files:
4 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • src/tests/preempt_longrun/Makefile.am

    r4c03e63 r88177cf  
    2626CC = @CFA_BINDIR@/@CFA_NAME@
    2727
    28 TESTS = barge block create disjoint processor stack wait yield
     28TESTS = create stack yield
    2929
    3030.INTERMEDIATE: ${TESTS}
  • src/tests/preempt_longrun/Makefile.in

    r4c03e63 r88177cf  
    183183REPEAT = ${abs_top_srcdir}/tools/repeat -s
    184184BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DN=${N} -DPREEMPTION_RATE=${preempt}
    185 TESTS = barge block create disjoint processor stack wait yield
     185TESTS = create stack yield
    186186all: all-am
    187187
  • src/tests/sched-int-block.c

    r4c03e63 r88177cf  
    55#include <thread>
    66
    7 #ifndef N
    8 #define N 100_000
    9 #endif
     7static const unsigned N = 100_000;
    108
    119enum state_t { WAITED, SIGNAL, BARGE };
  • src/tests/sched-int-disjoint.c

    r4c03e63 r88177cf  
    44#include <thread>
    55
    6 #ifndef N
    76#define N 100_000
    8 #endif
    97
    108enum state_t { WAIT, SIGNAL, BARGE };
  • src/tests/sched-int-wait.c

    r4c03e63 r88177cf  
    55#include <thread>
    66
    7 #ifndef N
    8 #define N 10_000
    9 #endif
     7static const int N = 10_000;
    108
    119monitor global_t {};
  • tools/repeat

    r4c03e63 r88177cf  
    2020for (( i = 0; i < ITERATION; i ++ )); do
    2121        echo -ne "\r$i / $ITERATION"
    22         $@ > /dev/null &
     22        $@ &
    2323        child=$!
    2424        wait "$child"
Note: See TracChangeset for help on using the changeset viewer.