1e3acc6f70
Try to start testpmd with two vdevs without hugepages. This is a really basic check, but better than nothing. Signed-off-by: David Marchand <david.marchand@redhat.com>
42 lines
904 B
Bash
Executable File
42 lines
904 B
Bash
Executable File
#!/bin/sh -xe
|
|
|
|
on_error() {
|
|
if [ $? = 0 ]; then
|
|
exit
|
|
fi
|
|
FILES_TO_PRINT="build/meson-logs/testlog.txt build/.ninja_log build/meson-logs/meson-log.txt"
|
|
|
|
for pr_file in $FILES_TO_PRINT; do
|
|
if [ -e "$pr_file" ]; then
|
|
cat "$pr_file"
|
|
fi
|
|
done
|
|
}
|
|
trap on_error EXIT
|
|
|
|
if [ "$AARCH64" = "1" ]; then
|
|
# convert the arch specifier
|
|
OPTS="$OPTS --cross-file config/arm/arm64_armv8_linux_gcc"
|
|
fi
|
|
|
|
if [ "$BUILD_DOCS" = "1" ]; then
|
|
OPTS="$OPTS -Denable_docs=true"
|
|
fi
|
|
|
|
if [ "$BUILD_32BIT" = "1" ]; then
|
|
OPTS="$OPTS -Dc_args=-m32 -Dc_link_args=-m32"
|
|
export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
|
|
fi
|
|
|
|
OPTS="$OPTS --default-library=$DEF_LIB"
|
|
meson build --werror -Dexamples=all $OPTS
|
|
ninja -C build
|
|
|
|
if [ "$AARCH64" != "1" ]; then
|
|
devtools/test-null.sh
|
|
fi
|
|
|
|
if [ "$RUN_TESTS" = "1" ]; then
|
|
sudo meson test -C build --suite fast-tests -t 3
|
|
fi
|