Fix build bustage in mailnews/imap/test (regression from bug 475111) r=Standard8

This commit is contained in:
Neil Rashbrook 2009-01-30 10:05:48 +00:00
Родитель 5e5b912565
Коммит e448ee1482
1 изменённых файлов: 1 добавлений и 12 удалений

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

@ -60,13 +60,9 @@ REQUIRES = \
$(NULL) $(NULL)
CPP_UNIT_TESTS = \ CPP_UNIT_TESTS = \
TestImapHdrXferInfo \ TestImapHdrXferInfo.cpp \
$(NULL) $(NULL)
CPPSRCS = $(foreach src,$(CPP_UNIT_TESTS),$(src).cpp)
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
include $(topsrcdir)/config/config.mk include $(topsrcdir)/config/config.mk
XPCSHELL_TESTS = unit XPCSHELL_TESTS = unit
@ -103,10 +99,3 @@ LIBS += \
$(XPCOM_LIBS) \ $(XPCOM_LIBS) \
$(NSPR_LIBS) \ $(NSPR_LIBS) \
$(NULL) $(NULL)
check::
@echo "Running imap compiled CPP tests"
@$(EXIT_ON_ERROR) \
for f in $(CPP_UNIT_TESTS); do \
XPCOM_DEBUG_BREAK=stack-and-abort $(RUN_TEST_PROGRAM) $(DIST)/bin/$$f; \
done