From 474eda49b90176406eac6684c8b502e05e49af04 Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> Date: Tue, 30 Mar 2021 13:48:34 +0300 Subject: [PATCH] github-ci: use vardir option in tests runs Got warning message: [014] WARGING: unix socket's "/home/ubuntu/actions-runner/_work/tarantool/tarantool/test/var/014_box/gh-5422-broken_snapshot.socket-iproto" path has length 108 symbols that is longer than 107. That likely will cause failing of tests. It caused the following fail: [038] Starting instance autobootstrap_guest1... [038] Start failed: builtin/box/console.lua:865: failed to create server unix/:/home/ubuntu/actions-runner/_work/tarantool/tarantool/test/var/038_replication/autobootstrap_guest1.socket-admin: No buffer space available To avoid of it use vardir option in tests runs to decrease paths length. Closes tarantool/tarantool-qa#104 --- .travis.mk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.mk b/.travis.mk index 5967851780..c84e4d85bf 100644 --- a/.travis.mk +++ b/.travis.mk @@ -11,7 +11,7 @@ OOS_SRC_PATH?=/source OOS_BUILD_PATH?=/rw_bins OOS_BUILD_RULE?=test_oos_no_deps BIN_DIR=/usr/local/bin -OSX_VARDIR?=/tmp/tnt +VARDIR?=/tmp/tnt GIT_DESCRIBE=$(shell git describe HEAD) COVERITY_BINS=/cov-analysis/bin @@ -154,7 +154,7 @@ build_debian: configure_debian test_debian_no_deps: build_debian make LuaJIT-test - cd test && ./test-run.py --force $(TEST_RUN_EXTRA_PARAMS) + cd test && ./test-run.py --vardir ${VARDIR} --force $(TEST_RUN_EXTRA_PARAMS) test_debian: deps_debian test_debian_no_deps @@ -171,7 +171,7 @@ build_coverage_debian: test_coverage_debian_no_deps: build_coverage_debian make LuaJIT-test # Enable --long tests for coverage - cd test && ./test-run.py --force $(TEST_RUN_EXTRA_PARAMS) --long + cd test && ./test-run.py --vardir ${VARDIR} --force $(TEST_RUN_EXTRA_PARAMS) --long lcov --compat-libtool --directory src/ --capture --output-file coverage.info.tmp \ --rc lcov_branch_coverage=1 --rc lcov_function_coverage=1 lcov --compat-libtool --remove coverage.info.tmp 'tests/*' 'third_party/*' '/usr/*' \ @@ -241,7 +241,7 @@ test_asan_debian_no_deps: build_asan_debian cd test && ASAN=ON \ LSAN_OPTIONS=suppressions=${PWD}/asan/lsan.supp \ ASAN_OPTIONS=heap_profile=0:unmap_shadow_on_exit=1:detect_invalid_pointer_pairs=1:symbolize=1:detect_leaks=1:dump_instruction_bytes=1:print_suppressions=0 \ - ./test-run.py --force $(TEST_RUN_EXTRA_PARAMS) + ./test-run.py --vardir ${VARDIR} --force $(TEST_RUN_EXTRA_PARAMS) test_asan_debian: deps_debian deps_buster_clang_11 test_asan_debian_no_deps @@ -267,7 +267,7 @@ test_static_build_cmake_linux: deps_tests cd static-build && cmake -DCMAKE_TARANTOOL_ARGS="-DCMAKE_BUILD_TYPE=RelWithDebInfo;-DENABLE_WERROR=ON" . && \ make -j && ctest -V make -C ${PWD}/static-build/tarantool-prefix/src/tarantool-build LuaJIT-test - cd test && ./test-run.py --force \ + cd test && ./test-run.py --vardir ${VARDIR} --force \ --builddir ${PWD}/static-build/tarantool-prefix/src/tarantool-build $(TEST_RUN_EXTRA_PARAMS) # ################### @@ -373,12 +373,12 @@ INIT_TEST_ENV_OSX=\ launchctl limit maxproc || : ; \ ulimit -u ${MAX_PROC} || : ; \ ulimit -u ; \ - rm -rf ${OSX_VARDIR} + rm -rf ${VARDIR} test_osx_no_deps: build_osx make LuaJIT-test ${INIT_TEST_ENV_OSX}; \ - cd test && ./test-run.py --vardir ${OSX_VARDIR} --force $(TEST_RUN_EXTRA_PARAMS) + cd test && ./test-run.py --vardir ${VARDIR} --force $(TEST_RUN_EXTRA_PARAMS) test_osx: deps_osx test_osx_no_deps @@ -418,7 +418,7 @@ test_static_build_cmake_osx_no_deps: # # make -C ${PWD}/static-build/tarantool-prefix/src/tarantool-build LuaJIT-test ${INIT_TEST_ENV_OSX}; \ - cd test && ./test-run.py --vardir ${OSX_VARDIR} \ + cd test && ./test-run.py --vardir ${VARDIR} \ --builddir ${PWD}/static-build/tarantool-prefix/src/tarantool-build \ --force $(TEST_RUN_EXTRA_PARAMS) -- GitLab