Changeset 1449d83 for src/tests


Ignore:
Timestamp:
Jan 31, 2018, 11:33:01 AM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
0394c31
Parents:
633a642
Message:

Updated longrun tests which where out of date

Location:
src/tests/preempt_longrun
Files:
11 edited

Legend:

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

    r633a642 r1449d83  
    1919preempt=1_000ul
    2020
    21 REPEAT = ${abs_top_srcdir}/tools/repeat -s
     21REPEAT = ${abs_top_srcdir}/tools/repeat
    2222
    2323BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DPREEMPTION_RATE=${preempt}
     
    3737        ${AM_V_GEN}${CC} ${CFLAGS} ${<} -o ${@}
    3838
    39 %.run : %
    40         @ time ${REPEAT} $(repeats) timeout ${max_time} ./${<}
     39%.run : % ${REPEAT}
     40        @ time ${REPEAT} -r out.log -i -s $(repeats) timeout ${max_time} ./${<}
    4141        @ rm ${<}
    4242        @ echo -e "${<}: SUCCESS\n"
     43
     44${REPEAT}:
     45        @+make -C ${abs_top_srcdir}/tools/
  • src/tests/preempt_longrun/Makefile.in

    r633a642 r1449d83  
    451451max_time = 600
    452452preempt = 1_000ul
    453 REPEAT = ${abs_top_srcdir}/tools/repeat -s
     453REPEAT = ${abs_top_srcdir}/tools/repeat
    454454BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -debug -O2 -DPREEMPTION_RATE=${preempt}
    455455TESTS = block create disjoint enter enter3 processor stack wait yield
     
    874874        ${AM_V_GEN}${CC} ${CFLAGS} ${<} -o ${@}
    875875
    876 %.run : %
    877         @ time ${REPEAT} $(repeats) timeout ${max_time} ./${<}
     876%.run : % ${REPEAT}
     877        @ time ${REPEAT} -r out.log -i -s $(repeats) timeout ${max_time} ./${<}
    878878        @ rm ${<}
    879879        @ echo -e "${<}: SUCCESS\n"
     880
     881${REPEAT}:
     882        @+make -C ${abs_top_srcdir}/tools/
    880883
    881884# Tell versions [3.59,3.63) of GNU make to not export all variables.
  • src/tests/preempt_longrun/block.c

    r633a642 r1449d83  
    1 ../sched-int-block.c
     1../concurrent/signal/block.c
  • src/tests/preempt_longrun/create.c

    r633a642 r1449d83  
    1414thread worker_t {};
    1515
    16 void main(worker_t * this) {}
     16void main(worker_t & this) {}
    1717
    1818int main(int argc, char* argv[]) {
  • src/tests/preempt_longrun/disjoint.c

    r633a642 r1449d83  
    1 ../sched-int-disjoint.c
     1../concurrent/signal/disjoint.c
  • src/tests/preempt_longrun/enter.c

    r633a642 r1449d83  
    1717mon_t mon;
    1818
    19 void foo( mon_t * mutex this ) {}
     19void foo( mon_t & mutex this ) {}
    2020
    2121thread worker_t {};
    2222
    23 void main( worker_t * this ) {
     23void main( worker_t & this ) {
    2424        for( unsigned long i = 0; i < N; i++ ) {
    25                 foo( &mon );
     25                foo( mon );
    2626        }
    2727}
  • src/tests/preempt_longrun/enter3.c

    r633a642 r1449d83  
    1717mon_t mon1, mon2, mon3;
    1818
    19 void foo( mon_t * mutex a, mon_t * mutex b, mon_t * mutex c ) {}
     19void foo( mon_t & mutex a, mon_t & mutex b, mon_t & mutex c ) {}
    2020
    2121thread worker_t {};
    2222
    23 void main( worker_t * this ) {
     23void main( worker_t & this ) {
    2424        for( unsigned long i = 0; i < N; i++ ) {
    25                 foo( &mon1, &mon2, &mon3 );
     25                foo( mon1, mon2, mon3 );
    2626        }
    2727}
  • src/tests/preempt_longrun/processor.c

    r633a642 r1449d83  
    1414thread worker_t {};
    1515
    16 void main(worker_t * this) {}
     16void main(worker_t & this) {}
    1717
    1818int main(int argc, char* argv[]) {
  • src/tests/preempt_longrun/stack.c

    r633a642 r1449d83  
    1414thread worker_t {};
    1515
    16 void main(worker_t * this) {
     16void main(worker_t & this) {
    1717        volatile long long p = 5_021_609ul;
    1818        volatile long long a = 326_417ul;
  • src/tests/preempt_longrun/wait.c

    r633a642 r1449d83  
    1 ../sched-int-wait.c
     1../concurrent/signal/wait.c
  • src/tests/preempt_longrun/yield.c

    r633a642 r1449d83  
    1414thread worker_t {};
    1515
    16 void main(worker_t * this) {
     16void main(worker_t & this) {
    1717        for(int i = 0; i < N; i++) {
    1818                yield();
Note: See TracChangeset for help on using the changeset viewer.