commit: 3f20c42d871f82aff2b4b10af1917f26894be552 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sat Feb 7 15:00:15 2026 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sat Feb 7 15:00:15 2026 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=3f20c42d
tests/qdepends: add missing files (thanks to previous .gitignore) Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> tests/qdepends/list09.good | 3 +++ tests/qdepends/list10.good | 9 +++++++++ tests/qdepends/list11.good | 10 ++++++++++ 3 files changed, 22 insertions(+) diff --git a/tests/qdepends/list09.good b/tests/qdepends/list09.good new file mode 100644 index 00000000..272592a6 --- /dev/null +++ b/tests/qdepends/list09.good @@ -0,0 +1,3 @@ +DEPEND=" + use? ( bla ) +" diff --git a/tests/qdepends/list10.good b/tests/qdepends/list10.good new file mode 100644 index 00000000..f921c890 --- /dev/null +++ b/tests/qdepends/list10.good @@ -0,0 +1,9 @@ +DEPEND=" + || ( + foo + ( + bar + baz + ) + ) +" diff --git a/tests/qdepends/list11.good b/tests/qdepends/list11.good new file mode 100644 index 00000000..d9363b27 --- /dev/null +++ b/tests/qdepends/list11.good @@ -0,0 +1,10 @@ +DEPEND=" + || ( + foo + ( + bar + baz + ) + !use? ( fnord ) + ) +"
