Attention is currently required from: jolly, laforge.
3 comments:
File msc/MSC_Tests_ASCI.ttcn:
type integer ASCI_TEST;
const ASCI_TEST ASCI_TEST_NO_CALLREF := 1;
const ASCI_TEST ASCI_TEST_SETUP_REFUSE := 2;
const ASCI_TEST ASCI_TEST_ASSIGN_FAIL := 3;
const ASCI_TEST ASCI_TEST_COMPLETE_VGCS := 4;
const ASCI_TEST ASCI_TEST_COMPLETE_VBS := 5;
I think this could/should go into an enum, not an integer?
Looks like it's done this way because the `BSC_ConnHdlr_Coord_PT` can only deliver charstrings and integers (added by preceding patch). I propose to add a new port definition, dedicated/specific to this module, which would allow sending/receiving enumerate types (also specific to this module).
Patch Set #1, Line 58: type component asci_CT extends MTC_CT {
Just a friendly note (not critical): it's better to mark module-local types, altsteps, and functions as such (using the `private` keyword). This improves the compilation time, especially if some other module imports something from this one. And generally good for readability.
Patch Set #1, Line 65: const charstring COORD_SETUP := "SETUP";
you don't really need to do this with charstring. […]
full ack
To view, visit change 33979. To unsubscribe, or for help writing mail filters, visit settings.