Changeset d96f7c4 for tests/concurrency/actors/executor.cfa
- Timestamp:
- Jan 17, 2025, 3:46:34 PM (2 months ago)
- Branches:
- master
- Children:
- df56e25
- Parents:
- 3b340d68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified tests/concurrency/actors/executor.cfa ¶
r3b340d68 rd96f7c4 41 41 if ( strcmp( argv[6], "d" ) != 0 ) { // default ? 42 42 BufSize = ato( argv[6] ); 43 if ( BufSize < 0 ) fallthr udefault;43 if ( BufSize < 0 ) fallthrough default; 44 44 } // if 45 45 case 6: 46 46 if ( strcmp( argv[5], "d" ) != 0 ) { // default ? 47 47 Batch = ato( argv[5] ); 48 if ( Batch < 1 ) fallthr udefault;48 if ( Batch < 1 ) fallthrough default; 49 49 } // if 50 50 case 5: 51 51 if ( strcmp( argv[4], "d" ) != 0 ) { // default ? 52 52 Processors = ato( argv[4] ); 53 if ( Processors < 1 ) fallthr udefault;53 if ( Processors < 1 ) fallthrough default; 54 54 } // if 55 55 case 4: 56 56 if ( strcmp( argv[3], "d" ) != 0 ) { // default ? 57 57 Rounds = ato( argv[3] ); 58 if ( Rounds < 1 ) fallthr udefault;58 if ( Rounds < 1 ) fallthrough default; 59 59 } // if 60 60 case 3: 61 61 if ( strcmp( argv[2], "d" ) != 0 ) { // default ? 62 62 Set = ato( argv[2] ); 63 if ( Set < 1 ) fallthr udefault;63 if ( Set < 1 ) fallthrough default; 64 64 } // if 65 65 case 2: 66 66 if ( strcmp( argv[1], "d" ) != 0 ) { // default ? 67 67 Actors = ato( argv[1] ); 68 if ( Actors < 1 || Actors <= Set || Actors % Set != 0 ) fallthr udefault;68 if ( Actors < 1 || Actors <= Set || Actors % Set != 0 ) fallthrough default; 69 69 } // if 70 70 case 1: // use defaults
Note: See TracChangeset
for help on using the changeset viewer.