Reviewed By: jberdine Differential Revision: D4329658 fbshipit-source-id: f9231ccmaster
parent
4c34509f6d
commit
b4bd78bb05
@ -1,15 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2015 - 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.
|
||||
*/
|
||||
|
||||
class Hello {
|
||||
int test() {
|
||||
String s = null;
|
||||
return s.length();
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
../cmake/
|
@ -1 +0,0 @@
|
||||
../../../../../examples/java_hello/
|
@ -1 +0,0 @@
|
||||
../make/
|
@ -1,7 +0,0 @@
|
||||
[
|
||||
{
|
||||
"bug_type": "NULL_DEREFERENCE",
|
||||
"file": "hello.c",
|
||||
"procedure": "test"
|
||||
}
|
||||
]
|
@ -1,17 +0,0 @@
|
||||
[
|
||||
{
|
||||
"bug_type": "NULL_DEREFERENCE",
|
||||
"file": "Hello.java",
|
||||
"procedure": "void Hello.mayCauseNPE()"
|
||||
},
|
||||
{
|
||||
"bug_type": "RESOURCE_LEAK",
|
||||
"file": "Hello.java",
|
||||
"procedure": "void Hello.mayLeakResource()"
|
||||
},
|
||||
{
|
||||
"bug_type": "RESOURCE_LEAK",
|
||||
"file": "Hello.java",
|
||||
"procedure": "void Hello.twoResources()"
|
||||
}
|
||||
]
|
@ -1,7 +0,0 @@
|
||||
[
|
||||
{
|
||||
"bug_type": "NULL_DEREFERENCE",
|
||||
"file": "Hello.java",
|
||||
"procedure": "int Hello.test()"
|
||||
}
|
||||
]
|
@ -1,7 +0,0 @@
|
||||
[
|
||||
{
|
||||
"bug_type": "NULL_DEREFERENCE",
|
||||
"file": "utf8_in_function_names.c",
|
||||
"procedure": "test_\uc131\uacf5"
|
||||
}
|
||||
]
|
@ -0,0 +1,109 @@
|
||||
# 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.
|
||||
|
||||
# This is mostly a copy-paste-adapt of other integration tests with the twist that the code to
|
||||
# analyze in placed in a path that contains utf8 characters. This does not provide a 'compile'
|
||||
# or 'analyze' target.
|
||||
|
||||
TESTS_DIR = ../..
|
||||
ROOT_DIR = $(TESTS_DIR)/../..
|
||||
|
||||
include $(TESTS_DIR)/java.make
|
||||
include $(ROOT_DIR)/Makefile.config
|
||||
|
||||
UTF8_DIR = $(shell printf '../codetoanalyze/utf8_\u03B9n_pwd')
|
||||
|
||||
CMAKE_DIR = $(UTF8_DIR)/cmake
|
||||
CMAKE_BUILD_DIR = $(CMAKE_DIR)/_build
|
||||
CMAKE_ANALYZE_DIR = $(CMAKE_DIR)/_build_infer
|
||||
CMAKE_SOURCES_DIR = ../codetoanalyze/cmake
|
||||
CMAKE_SOURCES = $(CMAKE_SOURCES_DIR)/hello.c
|
||||
|
||||
GRADLE_DIR = $(UTF8_DIR)/gradle
|
||||
GRADLE_SOURCES_DIR = $(ROOT_DIR)/examples/java_hello
|
||||
GRADLE_SOURCES = $(wildcard $(GRADLE_SOURCES_DIR)/*.java)
|
||||
|
||||
JAVAC_DIR = $(UTF8_DIR)/javac
|
||||
JAVAC_SOURCES = $(ROOT_DIR)/examples/Hello.java
|
||||
|
||||
MAKE_DIR = $(UTF8_DIR)/make
|
||||
MAKE_SOURCES_DIR = ../codetoanalyze/make
|
||||
MAKE_SOURCES = $(wildcard $(MAKE_SOURCES_DIR)/*.c)
|
||||
|
||||
ANALYZER = infer
|
||||
CLEAN_EXTRA = $(CMAKE_BUILD_DIR) $(CMAKE_ANALYZE_DIR) infer-out-cmake
|
||||
INFERPRINT_OPTIONS = --issues-tests
|
||||
|
||||
default: print
|
||||
|
||||
$(UTF8_DIR):
|
||||
$(MKDIR_P) $@
|
||||
|
||||
$(CMAKE_DIR): $(CMAKE_SOURCES) $(UTF8_DIR)
|
||||
rsync -aL $(CMAKE_SOURCES_DIR)/ $@/
|
||||
touch $@
|
||||
|
||||
$(GRADLE_DIR): $(GRADLE_SOURCES) $(UTF8_DIR)
|
||||
rsync -a $(GRADLE_SOURCES_DIR)/ $@/
|
||||
touch $@
|
||||
|
||||
$(JAVAC_DIR): $(JAVAC_SOURCES) $(UTF8_DIR)
|
||||
$(MKDIR_P) $(JAVAC_DIR)
|
||||
rsync -a $(JAVAC_SOURCES) $@
|
||||
touch $@
|
||||
|
||||
$(MAKE_DIR): $(MAKE_SOURCES) $(UTF8_DIR)
|
||||
rsync -a $(MAKE_SOURCES_DIR)/ $@/
|
||||
touch $@
|
||||
|
||||
infer-out-cmake/report.json: $(CMAKE_DIR) $(CMAKE_SOURCES_DIR)/CMakeLists.txt $(CLANG_DEPS)
|
||||
$(REMOVE_DIR) $(CMAKE_ANALYZE_DIR) && \
|
||||
$(MKDIR_P) $(CMAKE_ANALYZE_DIR) && \
|
||||
cd $(CMAKE_ANALYZE_DIR) && \
|
||||
$(call silent_on_success,\
|
||||
$(INFER_BIN) -a compile --project-root $(CMAKE_DIR) --results-dir $(CURDIR)/$(@D) -- cmake ..)
|
||||
cd $(CMAKE_ANALYZE_DIR) && \
|
||||
$(call silent_on_success,\
|
||||
$(INFER_BIN) -a $(ANALYZER) --results-dir $(CURDIR)/$(@D) -- $(MAKE))
|
||||
sed -i -e 's#$(abspath $(CMAKE_DIR))/##g' $@
|
||||
|
||||
infer-out-gradle/report.json: $(JAVA_DEPS) $(GRADLE_DIR)
|
||||
# mock version of gradle
|
||||
PATH=$(CURDIR)/../mock:"$$PATH"; \
|
||||
cd $(GRADLE_DIR) && \
|
||||
$(call silent_on_success,\
|
||||
$(INFER_BIN) -a $(ANALYZER) --results-dir $(CURDIR)/$(@D) -- gradle build)
|
||||
|
||||
infer-out-javac/report.json: $(JAVA_DEPS) $(JAVAC_DIR)
|
||||
cd $(JAVAC_DIR) && \
|
||||
$(call silent_on_success,\
|
||||
$(INFER_BIN) -a $(ANALYZER) --results-dir $(CURDIR)/$(@D) -- \
|
||||
javac -cp $(CLASSPATH) $(foreach source,$(JAVAC_SOURCES),$(notdir $(source))))
|
||||
|
||||
infer-out-make/report.json: $(CLANG_DEPS) $(MAKE_DIR)
|
||||
cd $(MAKE_DIR) && \
|
||||
$(call silent_on_success,\
|
||||
$(INFER_BIN) -a $(ANALYZER) --results-dir $(CURDIR)/$(@D) -- \
|
||||
make clean all)
|
||||
|
||||
issues-%.exp.test.noreplace: infer-out-%/report.json $(INFERPRINT_BIN)
|
||||
$(INFERPRINT_BIN) -q -a $(ANALYZER) $(INFERPRINT_OPTIONS) $@ --from-json-report $<
|
||||
|
||||
issues.exp.test: issues-cmake.exp.test.noreplace issues-gradle.exp.test.noreplace \
|
||||
issues-javac.exp.test.noreplace issues-make.exp.test.noreplace
|
||||
cat $^ > $@
|
||||
|
||||
.PHONY: print
|
||||
print: issues.exp.test
|
||||
|
||||
.PHONY: test
|
||||
test: issues.exp.test
|
||||
diff -u issues.exp issues.exp.test
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf $(UTF8_DIR) issues.exp.test* infer-out-*
|
@ -0,0 +1,6 @@
|
||||
hello.c, test, 2, NULL_DEREFERENCE, [start of procedure test()]
|
||||
Hello.java, void Hello.mayCauseNPE(), 4, NULL_DEREFERENCE, [start of procedure mayCauseNPE(),start of procedure mayReturnNull(...),Taking false branch,return from a call to Pointers$A Pointers.mayReturnNull(int)]
|
||||
Hello.java, void Hello.mayLeakResource(), 7, RESOURCE_LEAK, [start of procedure mayLeakResource(),start of procedure allocateResource(),return from a call to FileOutputStream Resources.allocateResource(),Taking false branch]
|
||||
Hello.java, void Hello.twoResources(), 11, RESOURCE_LEAK, [start of procedure twoResources(),exception java.io.IOException,Switch condition is true. Entering switch case,Taking true branch,exception java.io.IOException]
|
||||
Hello.java, int Hello.test(), 2, NULL_DEREFERENCE, [start of procedure test()]
|
||||
utf8_in_function_names.c, test_성공, 2, NULL_DEREFERENCE, [start of procedure test_성공()]
|
Loading…
Reference in new issue