diff options
author | Patrick Wicki <patrick.wicki@siemens.com> | 2023-08-25 16:51:48 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-08-27 13:25:09 +0000 |
commit | dbffe9f4c230076e0e722caab64d6243412549ef (patch) | |
tree | af9f9f9c28a917d1b871a47c67c2483523f04ad5 | |
parent | 898d0e9c3bff97ccdfc1682135c1be1c66a3ba82 (diff) | |
download | meta-virtualization-dbffe9f4c230076e0e722caab64d6243412549ef.tar.gz |
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>
-rw-r--r-- | recipes-containers/netavark/files/run-ptest | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes-containers/netavark/files/run-ptest b/recipes-containers/netavark/files/run-ptest index 41a37dce..7e017ae2 100644 --- a/recipes-containers/netavark/files/run-ptest +++ b/recipes-containers/netavark/files/run-ptest | |||
@@ -1,3 +1,8 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | NETAVARK=/usr/libexec/podman/netavark bats ./test/ | 3 | shopt -s extglob |
4 | |||
5 | # Skip the plugin tests because those example plugins are built only while | ||
6 | # running cargo test and for this to work as a ptest they would need to be cross | ||
7 | # compiled and installed as part of the ptest. | ||
8 | NETAVARK=/usr/libexec/podman/netavark bats test/!(*-plugin.bats) | ||