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.
57 lines
1.6 KiB
57 lines
1.6 KiB
# Copyright (c) 2016 - present Facebook, Inc.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD style license found in the
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
TESTS_DIR = ../../..
|
|
include $(TESTS_DIR)/java.make
|
|
include $(TESTS_DIR)/base.make
|
|
|
|
ANALYZER = crashcontext
|
|
|
|
SOURCES = $(wildcard *.java)
|
|
OBJECTS = $(patsubst %.java,%.class,$(SOURCES))
|
|
EXP_TESTs = $(sort $(patsubst %.java,issues-%.exp.test,$(SOURCES)))
|
|
INFER_OUTs = $(patsubst %.java,infer-out-%,$(SOURCES))
|
|
|
|
$(OBJECTS): $(SOURCES)
|
|
$(JAVAC) -cp $(CLASSPATH) $(SOURCES)
|
|
|
|
# analyze a single source file and generate the test results for it
|
|
issues-%.exp.test: $(JAVA_DEPS) %.stacktrace.json %.java
|
|
$(QUIET)$(call silent_on_success,Testing crashcontext: $*,\
|
|
$(INFER_BIN) -a $(ANALYZER) -o infer-out-$* --stacktrace $*.stacktrace.json \
|
|
-- $(JAVAC) -cp $(CLASSPATH) $*.java)
|
|
# add a newline at the end of the json when creating the exp.test
|
|
$(QUIET)$(COPY) infer-out-$*/crashcontext/crashcontext.json $@ && echo >> $@
|
|
|
|
# combine the test results for all the source files
|
|
issues.exp.test: $(EXP_TESTs)
|
|
$(QUIET)cat $^ > $@
|
|
|
|
default: compile
|
|
|
|
.PHONY: compile
|
|
compile: $(OBJECTS)
|
|
|
|
.PHONY: analyze
|
|
analyze: $(EXP_TESTs)
|
|
|
|
.PHONY: print
|
|
print: issues.exp.test
|
|
|
|
.PHONY: test
|
|
test: issues.exp.test
|
|
$(QUIET)cd $(TESTS_DIR) && \
|
|
$(call check_no_diff,$(TEST_REL_DIR)/issues.exp,$(TEST_REL_DIR)/issues.exp.test)
|
|
|
|
.PHONY: replace
|
|
replace: issues.exp.test
|
|
cp $< issues.exp
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(REMOVE_DIR) $(INFER_OUTs) $(OBJECTS) $(EXP_TESTs)
|