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
682 B
22 lines
682 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 = ../..
|
|
|
|
BUCK_TARGET = //module2:module2
|
|
INFERPRINT_OPTIONS = --issues-tests
|
|
CLEAN_EXTRA = buck-out
|
|
SOURCES = $(shell find . -name '*.java')
|
|
|
|
include $(TESTS_DIR)/java.make
|
|
include $(TESTS_DIR)/infer.make
|
|
|
|
infer-out/report.json: $(JAVA_DEPS) $(JAVA_SOURCE_FILES)
|
|
$(QUIET)$(REMOVE_DIR) buck-out && \
|
|
$(call silent_on_success,Testing Buck Java cross module integration,\
|
|
INFER_BIN=$(INFER_BIN) \
|
|
$(INFER_BIN) --results-dir $(CURDIR)/infer-out -- \
|
|
$(BUCK) build --no-cache $(BUCK_TARGET))
|