summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Pentchev <roam@ringlet.net>2019-02-27 00:44:26 +0200
committerPeter Pentchev <roam@debian.org>2019-02-27 00:44:26 +0200
commit574911359530da61bf72bd24fd42bff71b2b760c (patch)
tree8a48315c504c92c97fc44f56a61a3ade6801e609
parentac5f1c4e4d02db08638dd599ffe2669203bae933 (diff)
Skip some of the "too many options" tests on PyPy, too.
Forwarded: yes Last-Update: 2019-01-13 Gbp-Pq: Name test-too-many-pypy.patch
-rw-r--r--t/14-bespoke-too-many.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/14-bespoke-too-many.t b/t/14-bespoke-too-many.t
index 5c1be63..2856b94 100644
--- a/t/14-bespoke-too-many.t
+++ b/t/14-bespoke-too-many.t
@@ -57,7 +57,7 @@ for args in \
'-q features -q feature BASE' \
'-q features key1'; do
if [ "${args#-q sections -q}" != "$args" ] || [ "${args#-q features -q}" != "$args" ]; then
- if [ "${CONFGET#*python}" != "$CONFGET" ]; then
+ if [ "${CONFGET#*python}" != "$CONFGET" ] || [ "${CONFGET#*pypy}" != "$CONFGET" ]; then
echo "ok $idx $args - skipped, Python argparse"
idx="$((idx + 1))"
continue