Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Barker <mike@middlesoft.co.uk>2009-06-03 22:57:25 +0400
committerMichael Barker <mike@middlesoft.co.uk>2009-06-03 22:57:25 +0400
commit163810f640911e93e3d49e3ef4dd0c972a166c62 (patch)
tree1e136cc8c02f8fc8884526ad41f6b9af14d55fa2 /mcs/class/Mono.Messaging/Makefile
parent9a2c3234082cf2812da315a4fa58d73b6e2261f4 (diff)
2009-05-23 Michael Barker <mike@middlesoft.co.uk>
* MessageEnumerator.cs: Added calls to the delegate IMessageEnumerator for methods that use a timeout and added exception handling. * MessageEnumeratorTest.cs: Added tests for timeout methods. * MessageFactory.cs: Moved TimeSpanToInt32 method to here. * RabbitMQMessageEnumerator.cs: Added Remove/MoveNext methods that include timeouts. * RabbitMQMessageQueue.cs: Updated to cater for moved TimeSpanToInt32 method * MessageEnumeratorExceptionTest.cs: New * QueueReferenceTest.cs: Incorrect namespace for test * IMessageEnumerator.cs: Added additional methods to support operations specified by the System.Messaging version. * Mono.Messaging_test.dll.sources: Added MessageEnumeratorExceptionTest.cs * Makefile: Added nunit-mocks.dll to build svn path=/trunk/mcs/; revision=135338
Diffstat (limited to 'mcs/class/Mono.Messaging/Makefile')
-rw-r--r--mcs/class/Mono.Messaging/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Mono.Messaging/Makefile b/mcs/class/Mono.Messaging/Makefile
index cfcb60e658d..bfc99895c79 100644
--- a/mcs/class/Mono.Messaging/Makefile
+++ b/mcs/class/Mono.Messaging/Makefile
@@ -5,6 +5,6 @@ include ../../build/rules.make
LIBRARY = Mono.Messaging.dll
LIB_MCS_FLAGS = /r:System.dll
-TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169 -r:System.Messaging.dll
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169 /r:System.Messaging.dll /r:nunit.mocks.dll
include ../../build/library.make