Changeset 46e6e47


Ignore:
Timestamp:
Jun 3, 2023, 1:41:22 PM (10 months ago)
Author:
caparsons <caparson@…>
Branches:
ast-experimental, master
Children:
0794365
Parents:
bebfc2e
Message:

refactored test to reflect new naming

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/concurrency/actors/poison.cfa

    rbebfc2e r46e6e47  
    1818        Server s[10];
    1919        for ( i; 10 ) {
    20             s[i] << FinishedMsg;
     20            s[i] << finished_msg;
    2121        }
    2222        stop_actor_system();
     
    2929            Server * s = alloc();
    3030            (*s){};
    31             (*s) << DeleteMsg;
     31            (*s) << delete_msg;
    3232        }
    3333        stop_actor_system();
     
    3939        Server s[10];
    4040        for ( i; 10 )
    41             s[i] << DestroyMsg;
     41            s[i] << destroy_msg;
    4242        stop_actor_system();
    4343        for ( i; 10 )
Note: See TracChangeset for help on using the changeset viewer.