Last bugfixing patch for bug 351968, fixing the yellow on fxexp-win32-tbox. Once I've verified this, there's still some debug code to remove, but that'll be it!

This commit is contained in:
jwalden%mit.edu 2007-02-01 03:34:38 +00:00
Родитель 5735e429b6
Коммит f940acd66d
1 изменённых файлов: 13 добавлений и 3 удалений

Просмотреть файл

@ -1820,10 +1820,20 @@ libs::
$(DEPTH)/_tests/xpcshell-simple/$(MODULE)/$$testdir; \
done
# Path formats on Windows are hard. We require a topsrcdir formatted so that
# it may be passed to nsILocalFile.initWithPath (in other words, an absolute
# path of the form X:\path\to\topsrcdir), which we store in NATIVE_TOPSRCDIR.
# We require a forward-slashed path to topsrcdir so that it may be combined
# with a relative forward-slashed path for loading scripts, both dynamically
# and statically for head/test/tail JS files. Of course, on non-Windows none
# of this matters, and things will work correctly because everything's
# forward-slashed, everywhere, always.
ifdef CYGWIN_WRAPPER
NATIVE_TOPSRCDIR := `cygpath -wa $(topsrcdir)`
NATIVE_TOPSRCDIR := `cygpath -wa $(topsrcdir)`
FWDSLASH_TOPSRCDIR := `cygpath -ma $(topsrcdir)`
else
NATIVE_TOPSRCDIR := $(topsrcdir)
NATIVE_TOPSRCDIR := $(topsrcdir)
FWDSLASH_TOPSRCDIR := $(topsrcdir)
endif # CYGWIN_WRAPPER
# Test execution
@ -1833,7 +1843,7 @@ check::
$(RUN_TEST_PROGRAM) \
$(topsrcdir)/tools/test-harness/xpcshell-simple/test_all.sh \
$(DIST)/bin/xpcshell \
$(topsrcdir) \
$(FWDSLASH_TOPSRCDIR) \
$(NATIVE_TOPSRCDIR) \
$(DEPTH)/_tests/xpcshell-simple/$(MODULE)/$$testdir; \
done