Verified Commit d1546206 authored by Michael R. Crusoe's avatar Michael R. Crusoe 🏳️‍🌈
Browse files

Fix AutoPkgTests

parent 9c3a2f5c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
lambda-align (1.0.3-2) unstable; urgency=medium

  * Fix AutoPkgTests, tested locally with debci

 -- Michael R. Crusoe <michael.crusoe@gmail.com>  Sun, 18 Feb 2018 02:00:59 -0800

lambda-align (1.0.3-1) unstable; urgency=medium

  [ Steffen Moeller ]
+1 −1
Original line number Diff line number Diff line
Tests: run-tests
Depends: lambda-align, openssl, gzip, coreutils, diffutils
Depends: @, @builddeps@, openssl, gzip, coreutils, diffutils
Restrictions: allow-stderr
+5 −3
Original line number Diff line number Diff line
#!/bin/sh -e
#!/bin/sh -ex

mkdir build
cd build
cmake ../
for binary in $(dpkg -L lambda-align); do ln -s ${binary} bin/; done
cmake -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON \
	-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON ../
for binary in $(dpkg -L lambda-align | grep bin/); do ln -s ${binary} bin/; done
cd tests
ctest  --parallel $(nproc)