summaryrefslogtreecommitdiffstats
path: root/build-aux/test-runner
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 14:58:51 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 14:58:51 +0000
commitcbffab246997fb5a06211dfb706b54e5ae5bb59f (patch)
tree0573c5d96f58d74d76a49c0f2a70398e389a36d3 /build-aux/test-runner
parentInitial commit. (diff)
downloaddpkg-upstream.tar.xz
dpkg-upstream.zip
Adding upstream version 1.21.22.upstream/1.21.22upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build-aux/test-runner')
-rwxr-xr-xbuild-aux/test-runner34
1 files changed, 34 insertions, 0 deletions
diff --git a/build-aux/test-runner b/build-aux/test-runner
new file mode 100755
index 0000000..5355fef
--- /dev/null
+++ b/build-aux/test-runner
@@ -0,0 +1,34 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use TAP::Harness;
+
+my $srcroot = $ENV{abs_top_srcdir};
+my $binroot = $ENV{abs_top_builddir};
+
+# Setup the environment
+$ENV{LC_ALL} = 'C';
+$ENV{DPKG_COLORS} = 'never';
+$ENV{PATH} = "$binroot/src:$binroot/scripts:$binroot/utils:$ENV{PATH}";
+
+my $harness = TAP::Harness->new({
+ exec => sub {
+ my (undef, $test) = @_;
+ return [ $test ] if $test !~ m/\.t$/ and -x $test;
+ return
+ },
+ lib => [
+ "$srcroot/scripts",
+ "$srcroot/dselect/methods"
+ ],
+ color => 1,
+ verbosity => $ENV{TEST_VERBOSE},
+ jobs => $ENV{TEST_PARALLEL},
+ failures => 1,
+});
+
+my $aggregate = $harness->runtests(@ARGV);
+die "FAIL: test suite has errors\n" if $aggregate->has_errors;
+1;