diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2022-07-04 19:24:58 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2022-07-04 19:24:58 +0200 |
commit | 8c8bd4bebf4f4d0105832947c93685325d36f7df (patch) | |
tree | 77988f4a9756e48d2f66e34444851092dbc72ed7 /appveyor.yml | |
parent | 990cde800a4aafc5f5647eb06db3eec461fd172a (diff) | |
download | mariadb-git-8c8bd4bebf4f4d0105832947c93685325d36f7df.tar.gz |
Fix typo in appveyor.yml
The convention used for options in mtr are 2 underscores
Prior to this patch, the "parallel" option used only one underscore
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 650f5ec4dab..b0820784bd9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,6 +25,6 @@ test_script: - set PATH=C:\Strawberry\perl\bin;%PATH%;C:\Program Files (x86)\Windows Kits\10\Debuggers\x64 - cd %APPVEYOR_BUILD_FOLDER%\_build\mysql-test - set /A parallel=4*%NUMBER_OF_PROCESSORS% - - perl mysql-test-run.pl --force --max-test-fail=10 --retry=2 -parallel=%parallel% --testcase-timeout=4 --suite=main --skip-test-list=unstable-tests --mysqld=--loose-innodb-flush-log-at-trx-commit=2 + - perl mysql-test-run.pl --force --max-test-fail=10 --retry=2 --parallel=%parallel% --testcase-timeout=4 --suite=main --skip-test-list=unstable-tests --mysqld=--loose-innodb-flush-log-at-trx-commit=2 image: Visual Studio 2022 |