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

makefile.gnu « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8783d8fe7af9e252c6b3b0391cebebe4cb3e65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
topdir = ../../..

LIBRARY = data_linux_test.dll

LIB_LIST = data_linux_test.args
LIB_FLAGS =	\
	-r $(topdir)/class/lib/corlib.dll \
	-r $(topdir)/class/lib/System.Data.dll \
	-r $(topdir)/class/lib/System.Xml.dll \
	-r $(topdir)/class/lib/System.dll \
	-r $(topdir)/class/lib/NUnitCore_mono.dll

SOURCES_INCLUDE=*.cs
SOURCES_EXCLUDE=_DUMMY_

include $(topdir)/class/library.make

MCS_FLAGS = --target library --noconfig

TEST_SUITE_PREFIX = MonoTests.
TEST_SUITE = AllTests
NUNITCONSOLE=$(topdir)/class/lib/NUnitConsole_mono.exe 

test: $(LIBRARY) run_test

.PHONY: run_test

run_test:
	MONO_PATH=$(NUNIT_MONO_PATH) mono $(NUNITCONSOLE) $(TEST_SUITE_PREFIX)$(TEST_SUITE),data_linux_test.dll