diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/build_test.cpp | 7 | ||||
-rw-r--r-- | test/sem_test.cpp | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/test/build_test.cpp b/test/build_test.cpp index 9de137c..cbf153d 100644 --- a/test/build_test.cpp +++ b/test/build_test.cpp @@ -21,14 +21,17 @@ #include "raul/Maid.hpp" #include "raul/Noncopyable.hpp" #include "raul/Path.hpp" -#include "raul/Process.hpp" #include "raul/RingBuffer.hpp" #include "raul/Semaphore.hpp" -#include "raul/Socket.hpp" #include "raul/Symbol.hpp" #include "raul/TimeSlice.hpp" #include "raul/TimeStamp.hpp" +#ifndef _WIN32 +#include "raul/Process.hpp" +#include "raul/Socket.hpp" +#endif + int main() { diff --git a/test/sem_test.cpp b/test/sem_test.cpp index 8daf82b..3830604 100644 --- a/test/sem_test.cpp +++ b/test/sem_test.cpp @@ -56,7 +56,7 @@ main() const auto start = std::chrono::steady_clock::now(); sem.timed_wait(std::chrono::milliseconds(100)); const auto end = std::chrono::steady_clock::now(); - assert(end - start > std::chrono::milliseconds(100)); + assert(end - start > std::chrono::milliseconds(80)); assert(end - start < std::chrono::milliseconds(200)); // Check that we can't successfully wait on a zero semaphore |