From 89e34b4b5e5ec877cab07284d88029a8e97632ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ezgi=20=C3=87i=C3=A7ek?= Date: Tue, 2 Jun 2020 08:00:59 -0700 Subject: [PATCH] [make] Add missing cost test directories Summary: We were missing `performance-exclusive` and `fb-performance` tests in the list of cost analysis targets. Reviewed By: jvillard Differential Revision: D21837972 fbshipit-source-id: 550d27918 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index a0e07b496..3ca328d6e 100644 --- a/Makefile +++ b/Makefile @@ -486,8 +486,13 @@ COST_TESTS += \ c_performance \ java_hoistingExpensive \ java_performance \ + java_performance-exclusive \ objc_performance \ +ifeq ($(IS_FACEBOOK_TREE),yes) + COST_TESTS += java_fb-performance +endif + .PHONY: cost_tests cost_tests: $(COST_TESTS:%=direct_%_test)