netavark: skip plugins in ptest

Skip the plugin tests that were introduced in 1.6.0 and lead to ptest
failure.

Signed-off-by: Patrick Wicki <patrick.wicki@siemens.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
This commit is contained in:
Patrick Wicki 2023-08-25 16:51:48 +02:00 committed by Bruce Ashfield
parent 898d0e9c3b
commit dbffe9f4c2

View File

@ -1,3 +1,8 @@
#!/bin/bash
NETAVARK=/usr/libexec/podman/netavark bats ./test/
shopt -s extglob
# Skip the plugin tests because those example plugins are built only while
# running cargo test and for this to work as a ptest they would need to be cross
# compiled and installed as part of the ptest.
NETAVARK=/usr/libexec/podman/netavark bats test/!(*-plugin.bats)