diff options
-rw-r--r-- | templates/base/agl-base.jinja2 | 3 | ||||
-rw-r--r-- | templates/tests/veth.jinja2 | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/templates/base/agl-base.jinja2 b/templates/base/agl-base.jinja2 index 592970c..346de32 100644 --- a/templates/base/agl-base.jinja2 +++ b/templates/base/agl-base.jinja2 @@ -41,6 +41,9 @@ actions: {%- block boot %} {% endblock %} {%- block tests %} +{%- if rootfs_type == "nbd" %} +{% include "tests/veth.jinja2" %} +{%- endif %} {%-for test_template in test_templates %} {% include test_template %} {%- endfor %} diff --git a/templates/tests/veth.jinja2 b/templates/tests/veth.jinja2 new file mode 100644 index 0000000..4968492 --- /dev/null +++ b/templates/tests/veth.jinja2 @@ -0,0 +1,8 @@ +- test: + timeout: + minutes: 4 + definitions: + - repository: https://git.automotivelinux.org/src/qa-testdefinitions + from: git + path: test-suites/short-smoke/network-veth.yaml + name: network-veth |