File: run-tests

package info (click to toggle)
lambda-align 1.0.3-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 800 kB
  • sloc: cpp: 4,653; sh: 71; makefile: 28
file content (11 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -ex

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