chore(tests): Fix path for systemtests (#20307)

This commit is contained in:
Alexander Peters 2024-05-07 09:48:29 +02:00 committed by GitHub
parent fbddf0a550
commit 8a59a15f0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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=./...