aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_l2xc.py
AgeCommit message (Expand)AuthorFilesLines
2019-04-11Tests: Refactor tearDown show command logging, add lifecycle markers.Paul Vinciguerra1-2/+3
2019-04-10Tests Cleanup: Fix missing calls to setUpClass/tearDownClass.Paul Vinciguerra1-0/+4
2019-03-07Tests: Refactor payload_to_info()Paul Vinciguerra1-1/+1
2016-12-23make test: improve handling of packet capturesKlement Sekera1-6/+2
2016-12-05make test: fix missing log/packet messagesKlement Sekera1-3/+2
2016-11-11Add single-loop test variant to L2BD and L2XC testsJan1-65/+119
2016-11-11Add IRB testMatej Klotton1-2/+2
2016-10-31add vpp debugging support to test frameworkKlement Sekera1-7/+5
2016-10-26refactor test frameworkKlement Sekera1-170/+106
2016-10-03test: new test infrastructureDamjan Marion1-0/+243
a id='n7' href='#n7'>7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
---
# file: roles/cleanup/tasks/main.yaml
# purpose: Structured per server cleanup tasks.
# - main:
#     - tg:
#         - Run tasks on TG servers only.
#         - Cleanup processes (T-Rex).
#     - sut:
#         - Run tasks on SUT servers only.
#         - Cleanup file leftovers (logs).
#         - Cleanup packages (VPP, Honeycomb).
#         - Cleanup processes (qemu, l3fwd, testpmd, docker, kubernetes)
#         - Cleanup interfaces.
#     - vpp_device
#         - Run tasks on vpp_device servers only.
#         - Reset SRIOV
#         - Docker image cleanup
#     - nomad
#         - Docker image cleanup

- name: tg specific
  include_tasks: tg.yaml
  when: "'tg' in group_names"
  tags:
    - cleanup

- name: sut specific
  include_tasks: sut.yaml
  when: "'sut' in group_names"
  tags:
    - cleanup

- name: vpp_device specific
  include_tasks: vpp_device.yaml
  when: "'vpp_device' in group_names"
  tags:
    - cleanup

- name: nomad specific
  include_tasks: nomad.yaml
  when: "'nomad' in group_names"
  tags:
    - cleanup