diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-20 09:57:42 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-20 09:57:42 +0100 |
commit | b60ffd4286d874cc61b892ac14c76ea2b14dc6cb (patch) | |
tree | e2755ba69539e6fbfd313947fc6055f3e5bb96e4 /eclass/tests | |
parent | eclass/tests/python-utils-r1.sh: Add tests for py3.7 (diff) | |
download | gentoo-b60ffd4286d874cc61b892ac14c76ea2b14dc6cb.tar.gz gentoo-b60ffd4286d874cc61b892ac14c76ea2b14dc6cb.tar.bz2 gentoo-b60ffd4286d874cc61b892ac14c76ea2b14dc6cb.zip |
eclass/tests/git-r3.sh: Partially fix and disable
The tests rely on ext: remote support which apparently no longer works.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/tests')
-rwxr-xr-x | eclass/tests/git-r3.sh | 7 | ||||
-rw-r--r-- | eclass/tests/tests-common.sh | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/eclass/tests/git-r3.sh b/eclass/tests/git-r3.sh index 6ff6226c0aa6..2f452bfd68a8 100755 --- a/eclass/tests/git-r3.sh +++ b/eclass/tests/git-r3.sh @@ -1,7 +1,12 @@ #!/bin/bash -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 +# git no longer allows ext: protocol, meh +exit 0 + +EAPI=7 + source tests-common.sh inherit git-r3 diff --git a/eclass/tests/tests-common.sh b/eclass/tests/tests-common.sh index d52cf3a2687b..674eaa02cdc9 100644 --- a/eclass/tests/tests-common.sh +++ b/eclass/tests/tests-common.sh @@ -103,3 +103,5 @@ PV="0" P="${PN}-${PV}" PF=${P} SLOT=0 + +addwrite() { :; } |