Changeset 949339b for tests


Ignore:
Timestamp:
Sep 27, 2021, 2:09:55 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum, stuck-waitfor-destruct
Children:
cc287800
Parents:
4e28d2e9 (diff), 056cbdb (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
tests
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r4e28d2e9 r949339b  
    7575        pybin/tools.py \
    7676        long_tests.hfa \
     77        .in/parseconfig-all.txt \
     78        .in/parseconfig-errors.txt \
     79        .in/parseconfig-missing.txt \
    7780        io/.in/io.data \
    7881        io/.in/many_read.data \
     
    8285        concurrent/clib_tls.c \
    8386        exceptions/with-threads.hfa \
    84         exceptions/except-io.hfa
     87        exceptions/except-io.hfa \
     88        unified_locking/mutex_test.hfa
    8589
    8690dist-hook:
  • tests/concurrent/mutexstmt/locks.cfa

    r4e28d2e9 r949339b  
    44const unsigned int num_times = 10000;
    55
    6 owner_lock m1, m2, m3, m4, m5;
     6single_acquisition_lock m1, m2, m3, m4, m5;
    77
    88thread T_Mutex {};
     
    6565        printf("Start Test: single lock mutual exclusion\n");
    6666        {
    67                 T_Mutex t[1];
     67                T_Mutex t[10];
    6868        }
    6969        printf("End Test: single lock mutual exclusion\n");
Note: See TracChangeset for help on using the changeset viewer.