From ff887ad643ad2fe11bce1f7993c20ff8037c937f Mon Sep 17 00:00:00 2001 From: Michal Schorm Date: Thu, 15 Aug 2024 01:11:31 +0200 Subject: [PATCH] [MTR] Split line into several for better readability --- mysql8.4.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mysql8.4.spec b/mysql8.4.spec index eb46de6..694f898 100644 --- a/mysql8.4.spec +++ b/mysql8.4.spec @@ -770,7 +770,10 @@ export MTR_BUILD_THREAD=$(( $(date +%s) % 2200 )) set -ex cd %{buildroot}%{_datadir}/mysql-test - export common_testsuite_arguments=" %{?with_debug:--debug-server} --parallel=auto --force --retry=2 --suite-timeout=900 --testcase-timeout=30 --skip-combinations --max-test-fail=5 --report-unstable-tests --clean-vardir --nocheck-testcases " + export common_testsuite_arguments=" %{?with_debug:--debug-server} \ + --force --skip-combinations --report-unstable-tests --clean-vardir --nocheck-testcases \ + --suite-timeout=900 --testcase-timeout=30 \ + --parallel=auto --retry=2 --max-test-fail=5 " # If full testsuite has already been run on this version and we don't explicitly want the full testsuite to be run if [[ "%{last_tested_version}" == "%{version}" ]] && [[ %{force_run_testsuite} -eq 0 ]]