Changeset 66812dd for tests/concurrent
- Timestamp:
- Sep 27, 2020, 10:00:39 PM (2 years ago)
- Branches:
- arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0a19c51
- Parents:
- bd47f35
- Location:
- tests/concurrent
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/concurrent/.expect/cluster.txt
rbd47f35 r66812dd 1 done -
tests/concurrent/cluster.cfa
rbd47f35 r66812dd 32 32 } 33 33 } 34 return 0;34 printf( "done\n" ); // non-empty .expect file 35 35 } -
tests/concurrent/examples/.expect/datingService.txt
rbd47f35 r66812dd 1 done -
tests/concurrent/examples/datingService.cfa
rbd47f35 r66812dd 10 10 // Created On : Mon Oct 30 12:56:20 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Jun 21 11:32:34 201913 // Update Count : 3812 // Last Modified On : Sun Sep 27 15:42:25 2020 13 // Update Count : 40 14 14 // 15 15 … … 108 108 if ( girlck[ boyck[i] ] != boyck[ girlck[i] ] ) abort(); 109 109 } // for 110 111 printf( "done\n" ); // non-empty .expect file 110 112 } // main 111 113 -
tests/concurrent/futures/.expect/basic.txt
rbd47f35 r66812dd 1 done -
tests/concurrent/futures/basic.cfa
rbd47f35 r66812dd 91 91 } 92 92 } 93 printf( "done\n" ); // non-empty .expect file 94 93 95 } -
tests/concurrent/park/.expect/force_preempt.txt
rbd47f35 r66812dd 1 done -
tests/concurrent/park/.expect/start_parked.txt
rbd47f35 r66812dd 1 done -
tests/concurrent/park/force_preempt.cfa
rbd47f35 r66812dd 57 57 Waiter waiters[5]; 58 58 } 59 printf( "done\n" ); // non-empty .expect file 59 60 } -
tests/concurrent/park/start_parked.cfa
rbd47f35 r66812dd 3 3 thread Parker {}; 4 4 void main( Parker & ) { 5 5 park( __cfaabi_dbg_ctx ); 6 6 } 7 7 8 8 int main() { 9 for(1000) { 10 Parker parker; 11 unpark( parker __cfaabi_dbg_ctx2 ); 12 } 9 for(1000) { 10 Parker parker; 11 unpark( parker __cfaabi_dbg_ctx2 ); 12 } 13 printf( "done\n" ); // non-empty .expect file 13 14 }
Note: See TracChangeset
for help on using the changeset viewer.