The following changes since commit 6d01ac19170fadaf46a6db6b4cc347f1b389f422: iolog: Use %llu for 64-bit (2022-04-08 12:46:44 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to d684bb2839d1fa010fba1e64f9b0c16240d8bdae: Merge branch 'fix/remove-sudo-in-test-script' of https://github.com/dpronin/fio (2022-04-10 15:18:42 -0600) ---------------------------------------------------------------- Denis Pronin (1): actions-full-test.sh, removed sudo from the script Jens Axboe (1): Merge branch 'fix/remove-sudo-in-test-script' of https://github.com/dpronin/fio ci/actions-full-test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/ci/actions-full-test.sh b/ci/actions-full-test.sh index 91790664..8282002f 100755 --- a/ci/actions-full-test.sh +++ b/ci/actions-full-test.sh @@ -6,9 +6,9 @@ main() { echo "Running long running tests..." export PYTHONUNBUFFERED="TRUE" if [[ "${CI_TARGET_ARCH}" == "arm64" ]]; then - sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20" + python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20" else - sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug + python3 t/run-fio-tests.py --skip 6 1007 1008 --debug fi make -C doc html }