Fix mailbloat bustage from
bug 525047 landing in mozilla-central. r=bustage fix
--- a/mailnews/testsuite-targets.mk
+++ b/mailnews/testsuite-targets.mk
@@ -43,13 +43,21 @@ endif
SYMBOLS_PATH := --symbols-path=$(DIST)/crashreporter-symbols
ifdef MOZ_SUITE
EXTRA_BLOAT_ARGS := -mail
endif
mailbloat:
+ifdef MOZILLA_1_9_2_BRANCH
$(PYTHON) -u $(topsrcdir)/mozilla/config/pythonpath.py \
-I$(DIST)/../build \
$(topsrcdir)/mailnews/test/performance/bloat/runtest.py \
--distdir=$(DIST) --bin=$(MOZ_APP_NAME) --brand=$(APP_NAME) \
$(SYMBOLS_PATH) $(EXTRA_BLOAT_ARGS)
+else
+ $(PYTHON) -u $(topsrcdir)/mozilla/config/pythonpath.py \
+ -I$(DIST)/../build -I$(MOZILLA_DIR)/build \
+ $(topsrcdir)/mailnews/test/performance/bloat/runtest.py \
+ --distdir=$(DIST) --bin=$(MOZ_APP_NAME) --brand=$(APP_NAME) \
+ $(SYMBOLS_PATH) $(EXTRA_BLOAT_ARGS)
+endif