mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
29 lines
854 B
Makefile
29 lines
854 B
Makefile
#
|
|
# 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/.
|
|
|
|
#
|
|
# Makefile for installing and running xpcshell-based tests. You can use
|
|
# this file as template when creating tests for a new module. Don't
|
|
# forget to change the lines marked below. See
|
|
# http://developer.mozilla.org/en/docs/Writing_xpcshell-based_unit_tests
|
|
# for detailed instructions.
|
|
#
|
|
|
|
# Note: DEPTH should be set to the relative path to mozilla/
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = parser/xml/test
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
# Note: set the test module's name to test_<yourmodule>
|
|
MODULE = test_xmlreader
|
|
|
|
XPCSHELL_TESTS = unit
|
|
|
|
include $(topsrcdir)/config/rules.mk
|