mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +03:00
14e02978fc
Avoid unspecified behavior of mmap when a file is resized reported by Christian Hardmeier
Fixes for Mavericks and a workaround for Boost's broken semaphore
Clean clang compile (of kenlm)
Merged some of 744376b3fb
but also undid some of it because it was just masking a fundaemntal problem with pread rather than working around windows limitations
17 lines
376 B
C++
17 lines
376 B
C++
#include "util/sized_iterator.hh"
|
|
|
|
#define BOOST_TEST_MODULE SizedIteratorTest
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace util { namespace {
|
|
|
|
BOOST_AUTO_TEST_CASE(swap_works) {
|
|
char str[2] = { 0, 1 };
|
|
SizedProxy first(str, 1), second(str + 1, 1);
|
|
swap(first, second);
|
|
BOOST_CHECK_EQUAL(1, str[0]);
|
|
BOOST_CHECK_EQUAL(0, str[1]);
|
|
}
|
|
|
|
}} // namespace anonymous util
|