From bfb8ca78a83fba5148e72bd46cc5933131b92900 Mon Sep 17 00:00:00 2001 From: Martino Luca Date: Thu, 29 Jun 2017 01:36:19 -0700 Subject: [PATCH] Fix the test command that checks the interesting_paths_filter feature Summary: It was passing the argument multiple times rather than once with all the accepted values Reviewed By: jvillard Differential Revision: D5338509 fbshipit-source-id: 22b86a5 --- .../differential_interesting_paths_filter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infer/tests/build_systems/differential_interesting_paths_filter/Makefile b/infer/tests/build_systems/differential_interesting_paths_filter/Makefile index 4010a3c3d..cd7956faf 100644 --- a/infer/tests/build_systems/differential_interesting_paths_filter/Makefile +++ b/infer/tests/build_systems/differential_interesting_paths_filter/Makefile @@ -11,7 +11,7 @@ TESTS_DIR = ../.. MODIFIED_FILES_FILE = filter_files.test.txt DIFFERENTIAL_ARGS = --differential-filter-files $(MODIFIED_FILES_FILE) \ - --differential-filter-set fixed --differential-filter-set preexisting + --differential-filter-set "fixed,preexisting" SRC_OBJECT_FILES = src/com/example/*.java src/com/example/*.class com/ CLEAN_EXTRA = $(SRC_OBJECT_FILES) $(MODIFIED_FILES_FILE)