Displaying 1 result from an estimated 1 matches for "8573ac3".
Did you mean:
5d73ac3
2010 May 27
1
[PATCH matahari] Introduces a multiplexer for taking requests and mapping them to APIs.
...dist_pkgdata_DATA = schema.xml
diff --git a/src/tests/.gitignore b/src/tests/.gitignore
new file mode 100644
index 0000000..06042ff
--- /dev/null
+++ b/src/tests/.gitignore
@@ -0,0 +1 @@
+testmultiplexer
diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am
new file mode 100644
index 0000000..8573ac3
--- /dev/null
+++ b/src/tests/Makefile.am
@@ -0,0 +1,13 @@
+
+bin_PROGRAMS = testmultiplexer
+
+INCLUDES = \
+ -I$(top_srcdir)/src
+
+testmultiplexer_SOURCES = \
+ $(top_srcdir)/src/virtio/multiplexer.cpp \
+ $(top_srcdir)/src/virtio/multiplexer.h \
+ testmultiplexer.cpp \
+ testmultiplexer.h
+
+te...