2011-08-09 12:12:48 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2006-10-30 01:52:14 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
#
|
2011-02-23 11:44:19 -06:00
|
|
|
# Copyright 2000, 2011 Oracle and/or its affiliates.
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# This file is part of OpenOffice.org.
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# only, as published by the Free Software Foundation.
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License version 3 for more details
|
|
|
|
# (a copy is included in the LICENSE file that accompanied this code).
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
2008-04-10 06:33:45 -05:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# version 3 along with OpenOffice.org. If not, see
|
|
|
|
# <http://www.openoffice.org/license.html>
|
|
|
|
# for a copy of the LGPLv3 License.
|
2006-10-30 01:52:14 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
|
|
|
|
2012-02-20 09:39:59 -06:00
|
|
|
$(eval $(call gb_JunitTest_JunitTest,sm_unoapi))
|
2006-10-30 01:52:14 -06:00
|
|
|
|
2011-02-23 11:44:19 -06:00
|
|
|
$(eval $(call gb_JunitTest_set_defs,sm_unoapi,\
|
|
|
|
$$(DEFS) \
|
|
|
|
-Dorg.openoffice.test.arg.sce=$(SRCDIR)/starmath/qa/unoapi/sm.sce \
|
|
|
|
-Dorg.openoffice.test.arg.xcl=$(SRCDIR)/starmath/qa/unoapi/knownissues.xcl \
|
|
|
|
))
|
2006-10-30 01:52:14 -06:00
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_JunitTest_use_jars,sm_unoapi,\
|
2011-02-23 11:44:19 -06:00
|
|
|
$(OUTDIR)/bin/OOoRunner.jar \
|
|
|
|
$(OUTDIR)/bin/ridl.jar \
|
|
|
|
$(OUTDIR)/bin/test.jar \
|
|
|
|
$(OUTDIR)/bin/unoil.jar \
|
|
|
|
$(OUTDIR)/bin/jurt.jar \
|
|
|
|
))
|
2006-10-30 01:52:14 -06:00
|
|
|
|
2011-02-23 11:44:19 -06:00
|
|
|
$(eval $(call gb_JunitTest_add_sourcefiles,sm_unoapi,\
|
|
|
|
starmath/qa/unoapi/Test \
|
|
|
|
))
|
2006-10-30 01:52:14 -06:00
|
|
|
|
2011-04-01 15:47:04 -05:00
|
|
|
$(eval $(call gb_JunitTest_add_classes,sm_unoapi,\
|
|
|
|
org.openoffice.starmath.qa.unoapi.Test \
|
2011-02-23 11:44:19 -06:00
|
|
|
))
|
2006-10-30 01:52:14 -06:00
|
|
|
|
2011-02-23 11:44:19 -06:00
|
|
|
# vim: set noet sw=4 ts=4:
|