diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 8 | ||||
-rw-r--r-- | test/semaphoretest.cc | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 80ff73a..056c111 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -44,7 +44,7 @@ audiocache_SOURCES = \ $(top_srcdir)/src/audiocachefile.cc \ $(top_srcdir)/src/audiocacheidmanager.cc \ $(top_srcdir)/src/thread.cc \ - $(top_srcdir)/src/semaphore.cc \ + $(top_srcdir)/src/sem.cc \ $(top_srcdir)/src/audiofile.cc \ $(top_srcdir)/src/random.cc \ dgtest.cc \ @@ -58,7 +58,7 @@ audiocachefile_LDFLAGS = $(PTHREAD_LIBS) $(SNDFILE_LIBS) audiocachefile_SOURCES = \ $(top_srcdir)/src/audiocachefile.cc \ $(top_srcdir)/src/thread.cc \ - $(top_srcdir)/src/semaphore.cc \ + $(top_srcdir)/src/sem.cc \ $(top_srcdir)/src/audiofile.cc \ $(top_srcdir)/src/random.cc \ dgtest.cc \ @@ -85,7 +85,7 @@ audiocacheeventhandler_SOURCES = \ $(top_srcdir)/src/audiocacheidmanager.cc \ $(top_srcdir)/src/audiocachefile.cc \ $(top_srcdir)/src/thread.cc \ - $(top_srcdir)/src/semaphore.cc \ + $(top_srcdir)/src/sem.cc \ dgtest.cc \ audiocacheeventhandlertest.cc @@ -165,7 +165,7 @@ semaphoretest_CXXFLAGS = -DOUTPUT=\"semaphoretest\" \ semaphoretest_LDFLAGS = $(PTHREAD_LIBS) semaphoretest_SOURCES = \ $(top_srcdir)/hugin/hugin.c \ - $(top_srcdir)/src/semaphore.cc \ + $(top_srcdir)/src/sem.cc \ semaphoretest.cc \ dgtest.cc diff --git a/test/semaphoretest.cc b/test/semaphoretest.cc index c99e9a6..470b5a0 100644 --- a/test/semaphoretest.cc +++ b/test/semaphoretest.cc @@ -31,7 +31,7 @@ #include <chrono> #include <iostream> -#include "../src/semaphore.h" +#include "../src/sem.h" std::chrono::nanoseconds dist(const std::chrono::duration<float>& a, const std::chrono::duration<float>& b) |