- Timestamp:
- Sep 27, 2021, 2:09:55 PM (4 years ago)
- 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. - Location:
- tests
- Files:
-
- 11 added
- 2 edited
-
.expect/parseconfig.txt (added)
-
.in/parseconfig-all.txt (added)
-
.in/parseconfig-errors.txt (added)
-
.in/parseconfig-missing.txt (added)
-
Makefile.am (modified) (2 diffs)
-
collections/.expect/string-api-coverage.txt (added)
-
collections/.expect/string-gc.txt (added)
-
collections/.expect/string-overwrite.txt (added)
-
collections/string-api-coverage.cfa (added)
-
collections/string-gc.cfa (added)
-
collections/string-overwrite.cfa (added)
-
concurrent/mutexstmt/locks.cfa (modified) (2 diffs)
-
parseconfig.cfa (added)
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
r4e28d2e9 r949339b 75 75 pybin/tools.py \ 76 76 long_tests.hfa \ 77 .in/parseconfig-all.txt \ 78 .in/parseconfig-errors.txt \ 79 .in/parseconfig-missing.txt \ 77 80 io/.in/io.data \ 78 81 io/.in/many_read.data \ … … 82 85 concurrent/clib_tls.c \ 83 86 exceptions/with-threads.hfa \ 84 exceptions/except-io.hfa 87 exceptions/except-io.hfa \ 88 unified_locking/mutex_test.hfa 85 89 86 90 dist-hook: -
tests/concurrent/mutexstmt/locks.cfa
r4e28d2e9 r949339b 4 4 const unsigned int num_times = 10000; 5 5 6 owner_lock m1, m2, m3, m4, m5;6 single_acquisition_lock m1, m2, m3, m4, m5; 7 7 8 8 thread T_Mutex {}; … … 65 65 printf("Start Test: single lock mutual exclusion\n"); 66 66 { 67 T_Mutex t[1 ];67 T_Mutex t[10]; 68 68 } 69 69 printf("End Test: single lock mutual exclusion\n");
Note:
See TracChangeset
for help on using the changeset viewer.