1*5c06146fSDamjan Jovanovic#**************************************************************
2*5c06146fSDamjan Jovanovic#
3*5c06146fSDamjan Jovanovic#  Licensed to the Apache Software Foundation (ASF) under one
4*5c06146fSDamjan Jovanovic#  or more contributor license agreements.  See the NOTICE file
5*5c06146fSDamjan Jovanovic#  distributed with this work for additional information
6*5c06146fSDamjan Jovanovic#  regarding copyright ownership.  The ASF licenses this file
7*5c06146fSDamjan Jovanovic#  to you under the Apache License, Version 2.0 (the
8*5c06146fSDamjan Jovanovic#  "License"); you may not use this file except in compliance
9*5c06146fSDamjan Jovanovic#  with the License.  You may obtain a copy of the License at
10*5c06146fSDamjan Jovanovic#
11*5c06146fSDamjan Jovanovic#    http://www.apache.org/licenses/LICENSE-2.0
12*5c06146fSDamjan Jovanovic#
13*5c06146fSDamjan Jovanovic#  Unless required by applicable law or agreed to in writing,
14*5c06146fSDamjan Jovanovic#  software distributed under the License is distributed on an
15*5c06146fSDamjan Jovanovic#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5c06146fSDamjan Jovanovic#  KIND, either express or implied.  See the License for the
17*5c06146fSDamjan Jovanovic#  specific language governing permissions and limitations
18*5c06146fSDamjan Jovanovic#  under the License.
19*5c06146fSDamjan Jovanovic#
20*5c06146fSDamjan Jovanovic#**************************************************************
21*5c06146fSDamjan Jovanovic
22*5c06146fSDamjan Jovanovic
23*5c06146fSDamjan Jovanovic
24*5c06146fSDamjan Jovanovic$(eval $(call gb_JunitTest_JunitTest,vcl_complex_memCheck,SRCDIR))
25*5c06146fSDamjan Jovanovic
26*5c06146fSDamjan Jovanovic$(eval $(call gb_JunitTest_set_defs,vcl_complex_memCheck,\
27*5c06146fSDamjan Jovanovic	$$(DEFS) \
28*5c06146fSDamjan Jovanovic	-Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/vcl/qa/complex/memCheck/testdocuments \
29*5c06146fSDamjan Jovanovic	-Dorg.openoffice.test.arg.properties=$(SRCDIR)/vcl/qa/complex/memCheck/CheckMemoryUsage.props \
30*5c06146fSDamjan Jovanovic))
31*5c06146fSDamjan Jovanovic
32*5c06146fSDamjan Jovanovic$(eval $(call gb_JunitTest_add_jars,vcl_complex_memCheck,\
33*5c06146fSDamjan Jovanovic	$(OUTDIR)/bin/OOoRunner.jar \
34*5c06146fSDamjan Jovanovic	$(OUTDIR)/bin/ridl.jar \
35*5c06146fSDamjan Jovanovic	$(OUTDIR)/bin/test.jar \
36*5c06146fSDamjan Jovanovic	$(OUTDIR)/bin/unoil.jar \
37*5c06146fSDamjan Jovanovic	$(OUTDIR)/bin/jurt.jar \
38*5c06146fSDamjan Jovanovic))
39*5c06146fSDamjan Jovanovic
40*5c06146fSDamjan Jovanovic$(eval $(call gb_JunitTest_add_sourcefiles,vcl_complex_memCheck,\
41*5c06146fSDamjan Jovanovic	vcl/qa/complex/memCheck/CheckMemoryUsage \
42*5c06146fSDamjan Jovanovic	vcl/qa/complex/memCheck/FileHelper \
43*5c06146fSDamjan Jovanovic	vcl/qa/complex/memCheck/TestDocument \
44*5c06146fSDamjan Jovanovic))
45*5c06146fSDamjan Jovanovic
46*5c06146fSDamjan Jovanovic$(eval $(call gb_JunitTest_add_classes,vcl_complex_memCheck,\
47*5c06146fSDamjan Jovanovic	complex.memCheck.CheckMemoryUsage \
48*5c06146fSDamjan Jovanovic))
49*5c06146fSDamjan Jovanovic
50*5c06146fSDamjan Jovanovic# vim: set noet sw=4 ts=4:
51