From 200ec690635f66fcf450bb60050988a36f615da4 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Thu, 27 Sep 2018 07:33:13 +0200 Subject: [PATCH] Run --fit tests without arguments This always scales down the patch size and ensures that tests are run faster. Fixed value may sometimes increase the patch size, which results in longer test times. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 542c419..2bf9367 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ BUILDS = opencvfft-st opencvfft-async opencvfft-openmp fftw fftw-async fftw-openmp fftw-big fftw-big-openmp cufftw cufftw-big cufftw-big-openmp cufft cufft-openmp cufft-big cufft-big-openmp TESTSEQ = bmx ball1 crossing racing book -TESTFLAGS = default fit128 +TESTFLAGS = default fit all: $(BUILDS) @@ -150,5 +150,5 @@ define ninja-testcase build build-$(1)/kcf_vot-$(2)-$(3).log: TEST_SEQ build-$(1)/kcf_vot $(filter-out %/output.txt,$(wildcard vot2016/$(2)/*)) vot2016/$(2) build = $(1) seq = vot2016/$(2) - flags = $(if $(3:fit128=),,--fit=128) + flags = $(if $(3:fit128=),,--fit=128)$(if $(3:fit=),,--fit) endef -- 2.39.2