~ubuntu-branches/ubuntu/trusty/visp/trusty

« back to all changes in this revision

Viewing changes to debian/tests/build

  • Committer: Package Import Robot
  • Author(s): Thomas Moulard
  • Date: 2014-01-17 15:25:16 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20140117152516-fhu1b6x87dyxhsq9
* debian/tests/build: Route stderr from test to stdout (Closes: #726983).
* Make visp-config arch-independent (Closes: #728783)
* Update Debian policy to 3.9.5
* Do not use pkg-kde-tools anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
g++ -o visptest visptest.cpp `pkg-config --cflags --libs visp`
23
23
echo "build: OK"
24
24
[ -x visptest ]
25
 
./visptest
 
25
# often prints "libdc1394 error: Failed to initialize libdc1394" to stderr,
 
26
# avoid test failure due to that
 
27
./visptest 2>&1
26
28
echo "run: OK"