summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/tests/dpkgsourceignores-docs16
1 files changed, 5 insertions, 11 deletions
diff --git a/tests/tests/dpkgsourceignores-docs b/tests/tests/dpkgsourceignores-docs
index 397b783..7638925 100755
--- a/tests/tests/dpkgsourceignores-docs
+++ b/tests/tests/dpkgsourceignores-docs
@@ -40,18 +40,12 @@ chmod +x doc.sh
: ----- extract args from dgit -----
-perl -ne '
- next unless m/^\s*our\s+\@dpkg_source_ignores\s*=/;
- print;
-' $root/dgit >dgit.pl
+args=$( t-dgit print-dpkg-source-ignores )
-cat >>dgit.pl <<'END'
- foreach my $arg (@dpkg_source_ignores) {
- print $arg, "\n" or die $!;
- }
-END
-
-perl dgit.pl >dgit.args
+>dgit.args
+for arg in $args; do
+ printf >>dgit.args "%s\n" "$arg"
+done
: ----- compare -----