Browse Source

Fixed formatting. Made traivs more verbose.

master
James Goppert 9 years ago
parent
commit
d761bd3721
  1. 2
      .travis.yml
  2. 2
      matrix/Matrix.hpp
  3. 2
      test/attitude.cpp
  4. 6
      test/helper.cpp

2
.travis.yml

@ -6,7 +6,7 @@ script: @@ -6,7 +6,7 @@ script:
- cmake -DCMAKE_BUILD_TYPE=Profile .
- make
- make check_format
- make test
- ctest -V
after_success:
- cpp-coveralls -i matrix
env:

2
matrix/Matrix.hpp

@ -443,7 +443,7 @@ Matrix<Type, M, N> operator*(Type scalar, const Matrix<Type, M, N> &other) @@ -443,7 +443,7 @@ Matrix<Type, M, N> operator*(Type scalar, const Matrix<Type, M, N> &other)
template<typename Type, size_t M, size_t N>
bool isEqual(const Matrix<Type, M, N> &x,
const Matrix<Type, M, N> & y) {
const Matrix<Type, M, N> & y) {
if (!(x == y)) {
char buf_x[100];
char buf_y[100];

2
test/attitude.cpp

@ -51,7 +51,7 @@ int main() @@ -51,7 +51,7 @@ int main()
// quat normalization
q.normalize();
TEST(isEqual(q, Quatf(0.18257419f, 0.36514837f,
0.54772256f, 0.73029674f)));
0.54772256f, 0.73029674f)));
// quat default ctor
q = Quatf();

6
test/helper.cpp

@ -12,6 +12,12 @@ int main() @@ -12,6 +12,12 @@ int main()
TEST(fabs(wrap_pi(-4.0) - (-4.0 + 2*M_PI)) < 1e-5);
TEST(fabs(wrap_pi(3.0) - (3.0)) < 1e-3);
wrap_pi(NAN);
Vector3f a(1, 2, 3);
Vector3f b(4, 5, 6);
a.T().print();
TEST(!isEqual(a, b));
TEST(isEqual(a, a));
return 0;
}

Loading…
Cancel
Save