Mentions légales du service

Skip to content
Snippets Groups Projects
Commit b96ce9a4 authored by Thomas Moulard's avatar Thomas Moulard
Browse files

debian/tests/build: Route stderr from test to stdout (Closes: #726983).

The "libdc1394 error: Failed to initialize libdc1394" message
will not fail the test (patch provided by Martin Pitt
<martin.pitt@ubuntu.com>).
parent d8a4f789
No related branches found
No related tags found
No related merge requests found
...@@ -22,5 +22,7 @@ EOF ...@@ -22,5 +22,7 @@ EOF
g++ -o visptest visptest.cpp `pkg-config --cflags --libs visp` g++ -o visptest visptest.cpp `pkg-config --cflags --libs visp`
echo "build: OK" echo "build: OK"
[ -x visptest ] [ -x visptest ]
./visptest # often prints "libdc1394 error: Failed to initialize libdc1394" to stderr,
# avoid test failure due to that
./visptest 2>&1
echo "run: OK" echo "run: OK"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment