diff options
author | David Robillard <d@drobilla.net> | 2012-08-17 22:06:28 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-08-17 22:06:28 +0000 |
commit | cd6209bcdd686b630bece9dc7b73e24584dbf769 (patch) | |
tree | c8295ad5056ad25ff72de6e40018fe86dbedbb6b /test/path_test.cpp | |
parent | 882245f41683924d0465b5afac2f8bb5c3786e60 (diff) | |
download | raul-cd6209bcdd686b630bece9dc7b73e24584dbf769.tar.gz raul-cd6209bcdd686b630bece9dc7b73e24584dbf769.tar.bz2 raul-cd6209bcdd686b630bece9dc7b73e24584dbf769.zip |
Update test suite to compile and pass again.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4718 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'test/path_test.cpp')
-rw-r--r-- | test/path_test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/path_test.cpp b/test/path_test.cpp index d9d2b57..01f55c0 100644 --- a/test/path_test.cpp +++ b/test/path_test.cpp @@ -17,7 +17,6 @@ #include <cstring> #include <iostream> -#include "raul/log.hpp" #include "raul/Path.hpp" using namespace std; @@ -28,7 +27,7 @@ main() { #define CHECK(cond) \ do { if (!(cond)) { \ - error << "Test failed: " << (cond) << endl; \ + cerr << "Test failed: " << (cond) << endl; \ return 1; \ } } while (0) |