~ubuntu-branches/ubuntu/trusty/liblas/trusty-proposed

« back to all changes in this revision

Viewing changes to test/unit/liblas_test_suite.cpp

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2014-01-05 17:00:29 UTC
  • mfrom: (7.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20140105170029-ddtp0j63x5jvck2u
Tags: 1.7.0+dfsg-2
Fixed missing linking of system boost component.
(closes: #733282)

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    catch (std::exception const& e)
47
47
    {
48
48
        std::cerr << "TUT raised exception: " << e.what() << std::endl;
49
 
        return 1;
50
49
    }
51
50
 
52
 
    return 0;
 
51
    return (reporter.all_ok() ? 0 : 1);
53
52
}
 
53