Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Depends: zlib1g-dev
· a7e13b8f
Andreas Tille
authored
Apr 12, 2019
a7e13b8f
Remove autopkgtest template
· 1e42403a
Andreas Tille
authored
Apr 12, 2019
1e42403a
Show whitespace changes
Inline
Side-by-side
debian/README.test
deleted
100644 → 0
View file @
ed125ec5
Notes
on
how
this
package
can
be
tested
.
────────────────────────────────────────
This
package
can
be
tested
by
running
the
provided
test
:
sh
run
-
unit
-
test
in
order
to
confirm
its
integrity
.
debian/control
View file @
1e42403a
...
...
@@ -31,6 +31,7 @@ Package: libmaus2-dev
Architecture: any
Section: libdevel
Depends: libmaus2-2 (= ${binary:Version}),
zlib1g-dev,
${shlibs:Depends},
${misc:Depends}
Description: collection of data structures and algorithms for biobambam
...
...
debian/tests/control
deleted
100644 → 0
View file @
ed125ec5
Tests: run-unit-test
Depends: @
Restrictions: allow-stderr
debian/tests/run-unit-test
deleted
100644 → 0
View file @
ed125ec5
#!/bin/bash
set
-e
pkg
=
#PACKAGENAME#
if
[
"
${
AUTOPKGTEST_TMP
}
"
=
""
]
;
then
AUTOPKGTEST_TMP
=
$(
mktemp
-d
/tmp/
${
pkg
}
-test
.XXXXXX
)
# Double quote below to expand the temporary directory variable now versus
# later is on purpose.
# shellcheck disable=SC2064
trap
"rm -rf
${
AUTOPKGTEST_TMP
}
"
0 INT QUIT ABRT PIPE TERM
fi
cp
-a
/usr/share/doc/
${
pkg
}
/examples/
*
"
${
AUTOPKGTEST_TMP
}
"
cd
"
${
AUTOPKGTEST_TMP
}
"
#do_stuff_to_test_package#