mirror of
https://passt.top/passt
synced 2024-11-05 20:31:11 +00:00
5d7688d26f
The test scripts support a "req" directive which requires one test script to be run before another. It's implemented by doing a topological sort based on these directives in the runner scripts, which is about as awkward as you'd expect in Bourne shell. It turns out we only use this functionality in one place - to make the "make install" test run after the plain "make" test. We also already have a simpler way of making sure tests run in a specific order: just put them into the same test script file. So, remove support for the "req" directive and just fold the build/all and build/install test scripts together. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
63 lines
1.5 KiB
Plaintext
63 lines
1.5 KiB
Plaintext
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#
|
|
# PASST - Plug A Simple Socket Transport
|
|
# for qemu/UNIX domain socket mode
|
|
#
|
|
# PASTA - Pack A Subtle Tap Abstraction
|
|
# for network namespace/tap device mode
|
|
#
|
|
# test/build/all - Build targets, one by one, then all together, check output
|
|
#
|
|
# Copyright (c) 2021 Red Hat GmbH
|
|
# Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
htools make cc rm uname getconf mkdir cp rm man
|
|
|
|
test Build passt
|
|
host make clean
|
|
check ! [ -e passt ]
|
|
host CFLAGS="-Werror" make passt
|
|
check [ -f passt ]
|
|
|
|
test Build pasta
|
|
host make clean
|
|
check ! [ -e pasta ]
|
|
host CFLAGS="-Werror" make pasta
|
|
check [ -h pasta ]
|
|
|
|
test Build qrap
|
|
host make clean
|
|
check ! [ -e qrap ]
|
|
host CFLAGS="-Werror" make qrap
|
|
check [ -f qrap ]
|
|
|
|
test Build all
|
|
host make clean
|
|
check ! [ -e passt ]
|
|
check ! [ -e pasta ]
|
|
check ! [ -e qrap ]
|
|
host CFLAGS="-Werror" make
|
|
check [ -f passt ]
|
|
check [ -h pasta ]
|
|
check [ -f qrap ]
|
|
|
|
tempdir TEMP
|
|
|
|
test Install
|
|
host prefix=__TEMP__ make install
|
|
check [ -f __TEMP__/bin/passt ]
|
|
check [ -h __TEMP__/bin/pasta ]
|
|
check [ -f __TEMP__/bin/qrap ]
|
|
check man -M __TEMP__/share/man -W passt
|
|
check man -M __TEMP__/share/man -W pasta
|
|
check man -M __TEMP__/share/man -W qrap
|
|
|
|
test Uninstall
|
|
host prefix=__TEMP__ make uninstall
|
|
check ! [ -f __TEMP__/bin/passt ]
|
|
check ! [ -h __TEMP__/bin/pasta ]
|
|
check ! [ -f __TEMP__/bin/qrap ]
|
|
check ! man -M __TEMP__/share/man -W passt 2>/dev/null
|
|
check ! man -M __TEMP__/share/man -W pasta 2>/dev/null
|
|
check ! man -M __TEMP__/share/man -W qrap 2>/dev/null
|