mosesdecoder/util/pcqueue_test.cc
Kenneth Heafield 14e02978fc KenLM 5cc905bc2d214efa7de2db56a9a672b749a95591
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
2014-01-27 16:51:35 -08:00

21 lines
360 B
C++

#include "util/pcqueue.hh"
#define BOOST_TEST_MODULE PCQueueTest
#include <boost/test/unit_test.hpp>
namespace util {
namespace {
BOOST_AUTO_TEST_CASE(SingleThread) {
PCQueue<int> queue(10);
for (int i = 0; i < 10; ++i) {
queue.Produce(i);
}
for (int i = 0; i < 10; ++i) {
BOOST_CHECK_EQUAL(i, queue.Consume());
}
}
}
} // namespace util