mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-03 13:27:28 -08:00
Closes: https://bugs.gentoo.org/945403 Signed-off-by: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de> Closes: https://github.com/gentoo/gentoo/pull/39530 Signed-off-by: Sam James <sam@gentoo.org>
18 lines
625 B
Diff
18 lines
625 B
Diff
From b77714b446e93a0ab997b125ef1fb3ad9bc4bb9b Mon Sep 17 00:00:00 2001
|
|
From: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
|
|
Date: Wed, 14 Aug 2024 23:28:45 +0200
|
|
Subject: [PATCH] Fix 'make check' for python tests
|
|
Upstream: https://github.com/capstone-engine/capstone/pull/2439
|
|
|
|
--- a/bindings/python/Makefile
|
|
+++ b/bindings/python/Makefile
|
|
@@ -41,7 +41,7 @@ TESTS += test_lite.py test_iter.py test_customized_mnem.py test_alpha.py
|
|
check:
|
|
@for t in $(TESTS); do \
|
|
echo Check $$t ... ; \
|
|
- ./$$t > /dev/null; \
|
|
+ ./tests/$$t > /dev/null; \
|
|
if [ $$? -eq 0 ]; then echo OK; else echo FAILED; exit 1; fi \
|
|
done
|
|
|