Reviewed By: jberdine Differential Revision: D4329627 fbshipit-source-id: cad3eabmaster
parent
674e3c86ea
commit
ebb75d6171
@ -1,7 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"bug_type": "NULL_DEREFERENCE",
|
|
||||||
"file": "hello.c",
|
|
||||||
"procedure": "test"
|
|
||||||
}
|
|
||||||
]
|
|
@ -0,0 +1,44 @@
|
|||||||
|
# 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 = ../..
|
||||||
|
|
||||||
|
ANALYZER = infer
|
||||||
|
|
||||||
|
CODETOANALYZE_DIR = ../codetoanalyze
|
||||||
|
|
||||||
|
CLANG_OPTIONS = -c
|
||||||
|
INFER_OPTIONS = --project-root $(CODETOANALYZE_DIR) --fail-on-issue
|
||||||
|
INFERPRINT_OPTIONS = --issues-tests
|
||||||
|
|
||||||
|
SOURCES = $(CODETOANALYZE_DIR)/hello.c
|
||||||
|
OBJECTS = $(foreach source,$(SOURCES),$(basename $(source)).o)
|
||||||
|
|
||||||
|
ROOT_DIR = $(TESTS_DIR)/../..
|
||||||
|
|
||||||
|
include $(ROOT_DIR)/Makefile.config
|
||||||
|
|
||||||
|
default: compile
|
||||||
|
|
||||||
|
issues.exp.test: $(CLANG_DEPS) $(SOURCES)
|
||||||
|
$(call silent_on_success,\
|
||||||
|
($(INFER_BIN) --fail-on-issue -- clang $(CLANG_OPTIONS) $(SOURCES); \
|
||||||
|
echo "infer exit code: $$?" > $@))
|
||||||
|
|
||||||
|
.PHONY: compile
|
||||||
|
compile: $(OBJECTS)
|
||||||
|
|
||||||
|
.PHONY: print
|
||||||
|
print: issues.exp.test
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: issues.exp.test
|
||||||
|
diff -u issues.exp issues.exp.test
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -rf issues.exp.test infer-out $(OBJECTS)
|
@ -0,0 +1 @@
|
|||||||
|
infer exit code: 2
|
Loading…
Reference in new issue