Add [Category ("NotWorking")] to failing test.
[mono.git] / mcs / class / System.Reactive.Experimental / Makefile
1 thisdir = class/System.Reactive.Experimental
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Reactive.Experimental.dll
6 LIB_MCS_FLAGS = \
7                 @more_build_args \
8                 -r:System.dll \
9                 -r:System.Core.dll \
10                 -r:System.Reactive.Interfaces.dll \
11                 -r:System.Reactive.Core.dll \
12                 -r:System.Reactive.Linq.dll
13
14 ifeq (2.1, $(FRAMEWORK_VERSION))
15 LIB_MCS_FLAGS += -d:NO_TASK_DELAY -d:HAS_AWAIT
16 endif
17
18 NET_4_5 := $(filter 4.5, $(FRAMEWORK_VERSION))
19 ifdef NET_4_5
20 LIB_MCS_FLAGS += -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT
21 endif
22
23 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
24
25 EXTRA_DISTFILES = more_build_args
26
27 VALID_PROFILE := $(filter monotouch monodroid net_4_0 net_4_5, $(PROFILE))
28 ifndef VALID_PROFILE
29 LIBRARY_NAME = dummy-System.System.Reactive.Experimental.dll
30 NO_SIGN_ASSEMBLY = yes
31 endif
32
33 INSTALL_PROFILE := $(filter net_4_5, $(PROFILE))
34 ifndef INSTALL_PROFILE
35 NO_INSTALL = yes
36 endif
37
38 NO_TEST = yes
39
40 include ../../build/library.make