msc: fix missing 'repeat' in as_optional_cc_rel()

We do activate() this altstep in several testcases, so that it's
kinda "running in background".  In reality, the defaults in TTCN-3
are just a syntax suggar, and the following code:

```
var default foo := activate(as_foo_bar());
alt {
[] PORT1.receive(tr_Msg1) { repeat; }
[] PORT1.receive(tr_Msg2) { setverdict(pass); }
}
PORT2.receive(tr_Msg3);
```

actually evaluates to:

```
alt {
[] PORT1.receive(tr_Msg1) { repeat; }
[] PORT1.receive(tr_Msg2) { setverdict(pass); }
[] as_foo_bar();
}

alt {
[] PORT2.receive(tr_Msg3);
[] as_foo_bar();
}
```

If as_foo_bar() contains no 'repeat' statement, then whenever it
triggers it would efficiently cancel (unblock) the current alt
statement, resulting in weird behavior due to messages not being
dequeued from ports as expected.  And this is exactly what we
saw happening in OS#6414.

Change-Id: I0143b4d33b1ebe4cce99c09018540524c4626eec
Related: OS#6414
1 file changed
tree: 93f90ffe9712d3c6ab3f76fdd69e473207164333
  1. .github/
  2. asn-test/
  3. bin/
  4. bsc/
  5. bsc-nat/
  6. bts/
  7. cbc/
  8. ccid/
  9. COMMON/
  10. deps/
  11. dia2gsup/
  12. doc/
  13. epdg/
  14. fr/
  15. fr-net/
  16. gbproxy/
  17. ggsn_tests/
  18. hlr/
  19. hnbgw/
  20. hnodeb/
  21. hss/
  22. lapdm/
  23. library/
  24. mgw/
  25. mme/
  26. msc/
  27. ns/
  28. pcap-client/
  29. pcu/
  30. pgw/
  31. remsim/
  32. ROHC_CNL113426_LATEST/
  33. sccp/
  34. SCCP_Test/
  35. selftest/
  36. sgsn/
  37. simtrace/
  38. sip/
  39. smlc/
  40. stp/
  41. sysinfo/
  42. upf/
  43. .checkpatch.conf
  44. .gitignore
  45. .gitreview
  46. Common.cfg
  47. compare-results.py
  48. gen_links.sh.inc
  49. log_merge.sh
  50. Makefile
  51. mask_expected_results.sh
  52. README.md
  53. regen-makefile.sh
  54. rmlinks.sh
  55. start-testsuite.sh
  56. ttcn3-dumpcap-start.sh
  57. ttcn3-dumpcap-stop.sh
  58. ttcn3-tcpdump-start.sh
  59. ttcn3-tcpdump-stop.sh
  60. update_expected_results_from_jenkins.sh
README.md

Osmocom TTCN-3 Test Suites

This repository contains a collection of test suites developed within the Osmocom (Open Source Mobile Communications) project. The test suites are developed in the TTCN-3 programming language, compiled/executed by the Eclipse TITAN compiler and runtime.

Those test suites mostly are performing functional testing of cellular network elements, from 2G, 3G, 4G to 5G. The individual test-suites are in sub-directories, while some shared library code is in library.

Continuous Integration

The individual tests suites are executed against different versions of the respective IUT (Implementation Under Test) by the Osmocom jenkins.

See the list of all TTCN-3 jenkins jobs for more details

Further reading

Some more information about those test suites can be found at https://osmocom.org/projects/cellular-infrastructure/wiki/Titan_TTCN3_Testsuites.