Lock objc_missing_fld to one thread.

Summary: This fixes a flaky test where some issues would disappear and re-appear.

Reviewed By: da319

Differential Revision: D9027686

fbshipit-source-id: 5ac314096
master
Martin Trojer 6 years ago committed by Facebook Github Bot
parent f94e760c7e
commit 5dff755691

@ -11,7 +11,7 @@ ANALYZER = checkers
SOURCES = $(CODETOANALYZE_DIR)/A.m $(CODETOANALYZE_DIR)/B.m
OBJECTS = $(CODETOANALYZE_DIR)/A.o $(CODETOANALYZE_DIR)/B.o
CLANG_OPTIONS = -c $(OBJC_CLANG_OPTIONS)
INFER_OPTIONS = --biabduction-only --report-custom-error --developer-mode --project-root $(TESTS_DIR)
INFER_OPTIONS = -j 1 --biabduction-only --report-custom-error --developer-mode --project-root $(TESTS_DIR)
INFERPRINT_OPTIONS = --project-root $(TESTS_DIR) --issues-tests
include $(TESTS_DIR)/infer.make

Loading…
Cancel
Save