From 8a59a15f0fdfd554b8299bc05f03c1d7eb1e1654 Mon Sep 17 00:00:00 2001 From: Alexander Peters Date: Tue, 7 May 2024 09:48:29 +0200 Subject: [PATCH] chore(tests): Fix path for systemtests (#20307) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2815a9df67c4..2131edb3025e 100644 --- a/Makefile +++ b/Makefile @@ -220,9 +220,9 @@ test-all: test-unit test-e2e test-integration test-ledger-mock test-race .PHONY: test-system test-system: build - mkdir -p ./systemtests/binaries/ - cp $(BUILDDIR)/simd ./systemtests/binaries/ - $(MAKE) -C systemtests test + mkdir -p ./tests/systemtests/binaries/ + cp $(BUILDDIR)/simd ./tests/systemtests/binaries/ + $(MAKE) -C tests/systemtests test TEST_PACKAGES=./...