# Pastebin 1bLDHJF7 diff --git a/mail/testsuite-targets.mk b/mail/testsuite-targets.mk --- a/mail/testsuite-targets.mk +++ b/mail/testsuite-targets.mk @@ -11,42 +11,42 @@ endif MOZMILLPYTHON = $(abspath $(VIRTUALENV_BIN)/python$(BIN_SUFFIX)) ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)) # Mac options APP_NAME = $(MOZ_APP_DISPLAYNAME) ifdef MOZ_DEBUG APP_NAME := $(APP_NAME)Debug endif -BINARY = $(DIST)/$(APP_NAME).app/ +BINARY = $(ABS_DIST)/$(APP_NAME).app/ else # Non-mac options BINARY = $(DIST)/bin/thunderbird$(BIN_SUFFIX) endif check-no-solo = $(foreach solo,SOLO_TEST SOLO_FILE,$(if $($(solo)),$(error $(subst SOLOVAR,$(solo),$(1))))) find-solo-test = $(if $(and $(SOLO_TEST),$(SOLO_FILE)),$(error Both SOLO_TEST and SOLO_FILE are specified. You may only specify one.),$(if $(SOLO_TEST),$(SOLO_TEST),$(if $(SOLO_FILE),$(SOLO_FILE),$(error SOLO_TEST or SOLO_FILE needs to be specified.)))) # PYTHONHOME messes very badly with virtualenv setups, so unset it. mozmill: $(call check-no-solo,SOLOVAR is specified. Perhaps you meant mozmill-one.) unset PYTHONHOME && cd $(MOZMILLDIR) && MACOSX_DEPLOYMENT_TARGET= \ $(MOZMILLPYTHON) runtestlist.py --list=mozmilltests.list \ - --binary=$(abspath $(BINARY)) \ + --binary="$(BINARY)" \ --dir=$(commtopsrcdir)/mail/test/mozmill \ --symbols-path=$(ABS_DIST)/crashreporter-symbols \ --testing-modules-dir=$(topobjdir)/_tests/modules \ $(MOZMILL_EXTRA) mozmill-one: solo-test = $(find-solo-test) mozmill-one: unset PYTHONHOME && cd $(MOZMILLDIR) && MACOSX_DEPLOYMENT_TARGET= \ $(MOZMILLPYTHON) runtest.py \ --test=$(commtopsrcdir)/mail/test/mozmill/$(solo-test) \ - --binary=$(abspath $(BINARY)) \ + --binary="$(BINARY)" \ --symbols-path=$(ABS_DIST)/crashreporter-symbols \ --testing-modules-dir=$(topobjdir)/_tests/modules \ $(MOZMILL_EXTRA) # We need to add the mozmill tests to the package for tests. # If Lightning is enabled, also stage the lightning extension ifdef MOZ_CALENDAR package-tests: stage-calendar