[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 20/54] tests/tcg: remove -f from Makefile invocation
From: |
Alex Bennée |
Subject: |
[PULL 20/54] tests/tcg: remove -f from Makefile invocation |
Date: |
Tue, 4 Oct 2022 14:01:04 +0100 |
From: Paolo Bonzini <pbonzini@redhat.com>
Instead of linking tests/tcg/Makefile.target into the build tree, name
the symbolic link "Makefile" and create it in every target subdirectory.
This makes it possible to just invoke "make" in tests/tcg subdirectories.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20220929114231.583801-21-alex.bennee@linaro.org>
diff --git a/configure b/configure
index 784b77ae90..a48a731bf4 100755
--- a/configure
+++ b/configure
@@ -2282,7 +2282,6 @@ fi
# tests might fail. Prefer to keep the relevant files in their own
# directory and symlink the directory instead.
LINKS="Makefile"
-LINKS="$LINKS tests/tcg/Makefile.target"
LINKS="$LINKS pc-bios/optionrom/Makefile"
LINKS="$LINKS pc-bios/s390-ccw/Makefile"
LINKS="$LINKS pc-bios/vof/Makefile"
@@ -2529,6 +2528,7 @@ fi
echo "# Automatically generated by configure - do not modify" > $makefile
config_host_mak=tests/tcg/config-host.mak
+mkdir -p tests/tcg
echo "# Automatically generated by configure - do not modify" >
$config_host_mak
echo "SRC_PATH=$source_path" >> $config_host_mak
echo "HOST_CC=$host_cc" >> $config_host_mak
@@ -2632,8 +2632,9 @@ for target in $target_list; do
got_cross_cc=yes
fi
if test $got_cross_cc = yes; then
- mkdir -p tests/tcg/$target
- ln -sf ../config-$target.mak tests/tcg/$target/config-target.mak
+ mkdir -p "tests/tcg/$target"
+ ln -sf "$source_path/tests/tcg/Makefile.target"
"tests/tcg/$target/Makefile"
+ ln -sf "../config-$target.mak" "tests/tcg/$target/config-target.mak"
echo "TARGET=$target" >> "$config_target_mak"
echo "QEMU=$PWD/$qemu" >> "$config_target_mak"
echo "run-tcg-tests-$target: $qemu\$(EXESUF)" >> $makefile
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 826b1895f4..caef287957 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -50,20 +50,19 @@ $(foreach TARGET,$(TCG_TESTS_TARGETS), \
.PHONY: $(TCG_TESTS_TARGETS:%=build-tcg-tests-%)
$(TCG_TESTS_TARGETS:%=build-tcg-tests-%): build-tcg-tests-%:
$(BUILD_DIR)/tests/tcg/config-%.mak
$(call quiet-command, \
- $(MAKE) -C tests/tcg/$* -f ../Makefile.target $(SUBDIR_MAKEFLAGS),
\
+ $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS), \
"BUILD","$* guest-tests")
.PHONY: $(TCG_TESTS_TARGETS:%=run-tcg-tests-%)
$(TCG_TESTS_TARGETS:%=run-tcg-tests-%): run-tcg-tests-%: build-tcg-tests-%
$(call quiet-command, \
- $(MAKE) -C tests/tcg/$* -f ../Makefile.target $(SUBDIR_MAKEFLAGS) \
- SPEED=$(SPEED) run, \
+ $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS) SPEED=$(SPEED) run, \
"RUN", "$* guest-tests")
.PHONY: $(TCG_TESTS_TARGETS:%=clean-tcg-tests-%)
$(TCG_TESTS_TARGETS:%=clean-tcg-tests-%): clean-tcg-tests-%:
$(call quiet-command, \
- $(MAKE) -C tests/tcg/$* -f ../Makefile.target $(SUBDIR_MAKEFLAGS)
clean, \
+ $(MAKE) -C tests/tcg/$* $(SUBDIR_MAKEFLAGS) clean, \
"CLEAN", "$* guest-tests")
.PHONY: build-tcg
--
2.34.1
- [PULL 47/54] contrib/gitdm: add mapping for Loongson Technology, (continued)
- [PULL 47/54] contrib/gitdm: add mapping for Loongson Technology, Alex Bennée, 2022/10/04
- [PULL 24/54] tests/tcg: move compiler tests to Makefiles, Alex Bennée, 2022/10/04
- [PULL 28/54] configure: build ROMs with container-based cross compilers, Alex Bennée, 2022/10/04
- [PULL 46/54] accel/kvm: move kvm_update_guest_debug to inline stub, Alex Bennée, 2022/10/04
- [PULL 43/54] gdbstub: move sstep flags probing into AccelClass, Alex Bennée, 2022/10/04
- [PULL 31/54] pc-bios/vof: Adopt meson style Make output, Alex Bennée, 2022/10/04
- [PULL 20/54] tests/tcg: remove -f from Makefile invocation,
Alex Bennée <=
- [PULL 48/54] contrib/gitdm: add Paul to individual contributors, Alex Bennée, 2022/10/04
- [PULL 39/54] contrib/plugins: reset skip when matching in execlog, Alex Bennée, 2022/10/04
- [PULL 23/54] tests/tcg: clean up calls to run-test, Alex Bennée, 2022/10/04
- [PULL 37/54] docs/devel: clean-up qemu invocations in tcg-plugins, Alex Bennée, 2022/10/04
- [PULL 27/54] configure: cleanup creation of tests/tcg target config, Alex Bennée, 2022/10/04
- [PULL 54/54] plugins: add [pre|post]fork helpers to linux-user, Alex Bennée, 2022/10/04
- Re: [PULL 00/54] testing, gdbstub, plugin and gitdm updates, Stefan Hajnoczi, 2022/10/05