Update tests to use the util namespace
This commit is contained in:
parent
6560353cb0
commit
cdd1f60b0d
@ -101,6 +101,11 @@ AC_FUNC_MMAP
|
|||||||
AC_CHECK_HEADER([execinfo.h], [break])
|
AC_CHECK_HEADER([execinfo.h], [break])
|
||||||
AM_CONDITIONAL([HAVE_EXECINFO], [test x$ac_cv_header_execinfo_h = "xyes"])
|
AM_CONDITIONAL([HAVE_EXECINFO], [test x$ac_cv_header_execinfo_h = "xyes"])
|
||||||
|
|
||||||
|
AC_SEARCH_LIBS([clock_gettime], [rt])
|
||||||
|
if [[ "x$ac_cv_search_clock_gettime" == "x-*" ]]; then
|
||||||
|
COMMON_LDFLAGS="$COMMON_LDFLAGS $ac_cv_search_clock_gettime"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## Debug features
|
## Debug features
|
||||||
|
3
test/.gitignore
vendored
3
test/.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
/adler
|
/adler*
|
||||||
/backtrace*
|
/backtrace*
|
||||||
|
/checksum*
|
||||||
/float*
|
/float*
|
||||||
/hton*
|
/hton*
|
||||||
/ip*
|
/ip*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#include "../debug.hpp"
|
#include "../debug.hpp"
|
||||||
#include "../matrix.hpp"
|
#include "../maths/matrix.hpp"
|
||||||
#include "../maths.hpp"
|
#include "../maths.hpp"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
using namespace util;
|
||||||
|
|
||||||
void
|
void
|
||||||
check_single (void) {
|
check_single (void) {
|
||||||
|
@ -2,12 +2,12 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
|
|
||||||
#include "../version.hpp"
|
#include "../version.hpp"
|
||||||
#include "../debug.hpp"
|
#include "../debug.hpp"
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
using namespace util;
|
||||||
|
|
||||||
|
|
||||||
struct parsed_version {
|
struct parsed_version {
|
||||||
string str;
|
string str;
|
||||||
|
Loading…
Reference in New Issue
Block a user