mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
af3bd44fd6
For testing hypervisor independent XML handling. Right now it's just populated with an example test case.
15 lines
393 B
Bash
Executable File
15 lines
393 B
Bash
Executable File
#!/bin/sh
|
|
|
|
: ${srcdir=$(dirname $0)}
|
|
. $srcdir/test-lib.sh
|
|
. $abs_srcdir/schematestutils.sh
|
|
|
|
DIRS=""
|
|
DIRS="$DIRS domainschemadata qemuxml2argvdata sexpr2xmldata"
|
|
DIRS="$DIRS xmconfigdata xml2sexprdata qemuxml2xmloutdata"
|
|
DIRS="$DIRS lxcxml2xmldata lxcxml2xmloutdata"
|
|
DIRS="$DIRS bhyvexml2argvdata genericxml2xmlindata genericxml2xmloutdata"
|
|
SCHEMA="domain.rng"
|
|
|
|
check_schema "$DIRS" "$SCHEMA"
|