You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
927 B
22 lines
927 B
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
TESTS_DIR = ../..
|
|
ROOT_DIR = $(TESTS_DIR)/../..
|
|
CODETOANALYZE_DIR = ../codetoanalyze/objc_getters_setters
|
|
|
|
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)
|
|
INFERPRINT_OPTIONS = --project-root $(TESTS_DIR) --issues-tests
|
|
|
|
include $(TESTS_DIR)/infer.make
|
|
include $(TESTS_DIR)/objc.make
|
|
|
|
infer-out/report.json: $(CLANG_DEPS) $(SOURCES) $(MAKEFILE_LIST)
|
|
$(call silent_on_success,Testing analysis with Objective-C getters and setters,\
|
|
$(INFER_BIN) $(INFER_OPTIONS) --results-dir $(CURDIR)/infer-out -- clang $(CLANG_OPTIONS) $(SOURCES))
|