summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-04-14 15:36:42 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-04-14 15:36:42 +0200
commit17670781083e3ccfedb1af4adcec614d4599eef9 (patch)
treecbc07abed147d095d3e5d3a46f55c387c92148bc
parent05be94a811786719c01662bad52ae809ed2667f1 (diff)
downloadcython-17670781083e3ccfedb1af4adcec614d4599eef9.tar.gz
Fix embed test in Py2.6.0.29.23
-rwxr-xr-xruntests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index 0294bfef3..a29bfb806 100755
--- a/runtests.py
+++ b/runtests.py
@@ -1799,7 +1799,7 @@ class EmbedTest(unittest.TestCase):
cython = os.path.abspath(os.path.join('..', '..', cython))
try:
- subprocess.check_output([
+ subprocess.check_call([
"make",
"PYTHON='%s'" % sys.executable,
"CYTHON='%s'" % cython,