2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-01-11 21:16:21 +01:00
|
|
|
#
|
2012-10-02 14:13:40 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-01-11 21:16:21 +01:00
|
|
|
#
|
2012-10-02 14:13:40 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-01-11 21:16:21 +01:00
|
|
|
#
|
2012-10-02 14:13:40 +01:00
|
|
|
# This file incorporates work covered by the following license notice:
|
2011-01-11 21:16:21 +01:00
|
|
|
#
|
2012-10-02 14:13:40 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2011-01-11 21:16:21 +01:00
|
|
|
#
|
|
|
|
|
2012-02-20 16:39:59 +01:00
|
|
|
$(eval $(call gb_JunitTest_JunitTest,toolkit_unoapi))
|
2011-01-11 21:16:21 +01:00
|
|
|
|
|
|
|
$(eval $(call gb_JunitTest_set_defs,toolkit_unoapi,\
|
|
|
|
$$(DEFS) \
|
|
|
|
-Dorg.openoffice.test.arg.sce=$(SRCDIR)/toolkit/qa/unoapi/toolkit.sce \
|
|
|
|
-Dorg.openoffice.test.arg.xcl=$(SRCDIR)/toolkit/qa/unoapi/knownissues.xcl \
|
|
|
|
-Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/toolkit/qa/unoapi/testdocuments \
|
|
|
|
))
|
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_JunitTest_use_jars,toolkit_unoapi,\
|
2012-08-17 11:02:49 +02:00
|
|
|
OOoRunner \
|
|
|
|
ridl \
|
|
|
|
test \
|
|
|
|
unoil \
|
|
|
|
jurt \
|
2011-01-19 14:16:46 +01:00
|
|
|
))
|
|
|
|
|
2011-01-11 21:16:21 +01:00
|
|
|
$(eval $(call gb_JunitTest_add_classes,toolkit_unoapi,\
|
2011-03-27 16:52:00 +02:00
|
|
|
org.openoffice.test.UnoApiTest \
|
2011-01-11 21:16:21 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|