From 7c4c40b6b04492b8a96236e15a76138060dc3d9e Mon Sep 17 00:00:00 2001 From: Josh Berdine Date: Wed, 2 Nov 2016 16:53:02 -0700 Subject: [PATCH] [refactor] Move StatsAggregator from scripts to backend Reviewed By: martinoluca Differential Revision: D4114518 fbshipit-source-id: 67b8dea --- infer/src/Makefile | 4 ++-- infer/src/{scripts => backend}/StatsAggregator.re | 0 infer/src/{scripts => backend}/StatsAggregator.rei | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename infer/src/{scripts => backend}/StatsAggregator.re (100%) rename infer/src/{scripts => backend}/StatsAggregator.rei (100%) diff --git a/infer/src/Makefile b/infer/src/Makefile index 289517814..698dcbae1 100644 --- a/infer/src/Makefile +++ b/infer/src/Makefile @@ -131,7 +131,7 @@ CHECKCOPYRIGHT_BIN = $(SCRIPT_DIR)/checkCopyright CHECKCOPYRIGHT_MAIN = $(SCRIPT_SOURCES)/checkCopyright STATSAGGREGATOR_BIN = $(BIN_DIR)/InferStatsAggregator -STATSAGGREGATOR_MAIN = $(SCRIPT_SOURCES)/StatsAggregator +STATSAGGREGATOR_MAIN = backend/StatsAggregator #### End of declarations #### @@ -251,7 +251,7 @@ rei: %.rei : %.mli refmt -assume-explicit-arity -heuristics-file unary.txt -parse ml -print re $< > $*.rei -roots:=Infer InferAnalyzeExe InferClang JMain InferPrintExe BuckCompilationDatabase +roots:=Infer InferAnalyzeExe InferClang JMain InferPrintExe BuckCompilationDatabase StatsAggregator clusters:=base clang java IR src_dirs:=$(shell find * -type d) diff --git a/infer/src/scripts/StatsAggregator.re b/infer/src/backend/StatsAggregator.re similarity index 100% rename from infer/src/scripts/StatsAggregator.re rename to infer/src/backend/StatsAggregator.re diff --git a/infer/src/scripts/StatsAggregator.rei b/infer/src/backend/StatsAggregator.rei similarity index 100% rename from infer/src/scripts/StatsAggregator.rei rename to infer/src/backend/StatsAggregator.rei