Bug 426639 - Fix the test harness to work on OS/2; m-c *.mk files; r=mozilla@Weilbacher.org

This commit is contained in:
Walter Meinl 2009-03-02 07:28:09 +01:00
parent d361e19219
commit 4ad9fe786b
4 changed files with 18 additions and 2 deletions

View File

@ -860,6 +860,10 @@ ifeq (,$(filter WINCE WINNT OS2,$(OS_ARCH)))
RUN_TEST_PROGRAM = $(DIST)/bin/run-mozilla.sh
endif
ifeq ($(OS_ARCH),OS2)
RUN_TEST_PROGRAM = $(topsrcdir)/testing/xpcshell/test_os2.cmd "$(DIST)"
endif
#
# Java macros
#

View File

@ -155,9 +155,13 @@ else
FWDSLASH_TOPSRCDIR := $(topsrcdir)
ifeq ($(HOST_OS_ARCH),WINNT)
NATIVE_TOPSRCDIR := $(subst /,\\,$(WIN_TOP_SRC))
else
else
ifeq ($(HOST_OS_ARCH),os2-emx)
NATIVE_TOPSRCDIR := $(subst /,\\,$(topsrcdir))
else
NATIVE_TOPSRCDIR := $(topsrcdir)
endif
endif
endif # CYGWIN_WRAPPER
testxpcsrcdir = $(topsrcdir)/testing/xpcshell

View File

@ -860,6 +860,10 @@ ifeq (,$(filter WINCE WINNT OS2,$(OS_ARCH)))
RUN_TEST_PROGRAM = $(DIST)/bin/run-mozilla.sh
endif
ifeq ($(OS_ARCH),OS2)
RUN_TEST_PROGRAM = $(topsrcdir)/testing/xpcshell/test_os2.cmd "$(DIST)"
endif
#
# Java macros
#

View File

@ -155,9 +155,13 @@ else
FWDSLASH_TOPSRCDIR := $(topsrcdir)
ifeq ($(HOST_OS_ARCH),WINNT)
NATIVE_TOPSRCDIR := $(subst /,\\,$(WIN_TOP_SRC))
else
else
ifeq ($(HOST_OS_ARCH),os2-emx)
NATIVE_TOPSRCDIR := $(subst /,\\,$(topsrcdir))
else
NATIVE_TOPSRCDIR := $(topsrcdir)
endif
endif
endif # CYGWIN_WRAPPER
testxpcsrcdir = $(topsrcdir)/testing/xpcshell