From d76d267f6e157b5b1e9d74f21369715119de8fbd Mon Sep 17 00:00:00 2001 From: Mark Banner Date: Wed, 20 Aug 2008 19:04:48 +0100 Subject: [PATCH] Disable test_punycodeURIs.js on mac only, part of bug 450884. --- mail/app/Makefile.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mail/app/Makefile.in b/mail/app/Makefile.in index bcfa7c5c6f..5ad9cfd6ef 100644 --- a/mail/app/Makefile.in +++ b/mail/app/Makefile.in @@ -405,3 +405,11 @@ libs:: if test -f $(DIST)/../_tests/xpcshell-simple/test_necko/unit/test_cookie_header.js; then echo "function run_test() {dump('disabled for TB for bug 431125');}" >$(DIST)/../_tests/xpcshell-simple/test_necko/unit/test_cookie_header.js; fi; $(RM) $(DIST)/bin/TestCookie if test -f $(DIST)/bin/TestTArray; then cp $(DIST)/bin/TestTArray $(DIST)/bin/TestCookie; fi; + +ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) + +# Disabled due to bug 447999 +libs:: + if test -f $(DIST)/../_tests/xpcshell-simple/test_uriloader_exthandler/unit/test_punycodeURIs.js; then echo "function run_test() {dump('disabled for bug 447999');}" >$(DIST)/../_tests/xpcshell-simple/test_uriloader_exthandler/unit/test_punycodeURIs.js; fi; + +endif