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