summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Wicki <patrick.wicki@siemens.com>2023-08-25 16:51:48 +0200
committerBruce Ashfield <bruce.ashfield@gmail.com>2023-08-27 13:25:09 +0000
commitdbffe9f4c230076e0e722caab64d6243412549ef (patch)
treeaf9f9f9c28a917d1b871a47c67c2483523f04ad5
parent898d0e9c3bff97ccdfc1682135c1be1c66a3ba82 (diff)
downloadmeta-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-ptest7
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
3NETAVARK=/usr/libexec/podman/netavark bats ./test/ 3shopt -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.
8NETAVARK=/usr/libexec/podman/netavark bats test/!(*-plugin.bats)