Don't run the unit test for bug 224692 - it's creating a directory that the tinderbox then can't remove

This commit is contained in:
Benjamin Smedberg 2008-08-14 13:09:15 -04:00
parent e8f76946e9
commit 1bfdd6bfbf

View File

@ -60,9 +60,12 @@ include $(topsrcdir)/config/config.mk
CPP_UNIT_TESTS = \
TestCOM \
TestNTFSPermissions \
$(NULL)
# TestNTFSPermissions is causing oranges because it's creating directories
# multiple times, and then leaving them in a state where they can't be cleaned
# TestNTFSPermissions \
include $(topsrcdir)/config/rules.mk
OS_LIBS = $(call EXPAND_LIBNAME,rpcrt4 uuid)
@ -78,4 +81,4 @@ check::
@$(EXIT_ON_ERROR) \
for f in $(subst .cpp,,$(CPP_UNIT_TESTS)); do \
XPCOM_DEBUG_BREAK=stack-and-abort $(RUN_TEST_PROGRAM) $(DIST)/bin/$$f; \
done
done