tests: Introduce makefile for building test assets
A number of passt/pasta testcases have initial steps which are just about building images or other assets we need for the test proper. Repeating these for each test run can be quite costly. This patch makes a start on moving this sort of test asset building to a separate phase before running the tests proper. For now just add a Makefile to handle the asset building (although it doesn't build anything yet), and make the path where we'll be building the assets available to the tests. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
7bcc5930a6
commit
db551e5de0
2 changed files with 28 additions and 1 deletions
27
test/Makefile
Normal file
27
test/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
#
|
||||
# Tests makefile
|
||||
#
|
||||
# Copyright Red Hat
|
||||
# Author: David Gibson <david@gibson.dropbear.id.au>
|
||||
|
||||
DOWNLOAD_ASSETS =
|
||||
LOCAL_ASSETS =
|
||||
|
||||
ASSETS = $(DOWNLOAD_ASSETS) $(LOCAL_ASSETS)
|
||||
|
||||
assets: $(ASSETS)
|
||||
|
||||
check: assets
|
||||
./run
|
||||
|
||||
debug: assets
|
||||
DEBUG=1 ./run
|
||||
|
||||
clean:
|
||||
rm -f perf.js *~
|
||||
rm -f $(LOCAL_ASSETS)
|
||||
rm -rf test_logs
|
||||
|
||||
realclean: clean
|
||||
rm -rf $(DOWNLOAD_ASSETS)
|
|
@ -393,7 +393,7 @@ test_one() {
|
|||
|
||||
[ ${CI} -eq 1 ] && video_link "${1}"
|
||||
|
||||
TEST_ONE_subs=
|
||||
TEST_ONE_subs="$(list_add_pair "" "__BASEPATH__" "${BASEPATH}")"
|
||||
TEST_ONE_nok=-1
|
||||
TEST_ONE_perf_nok=0
|
||||
TEST_ONE_skip=0
|
||||
|
|
Loading…
Reference in a new issue