From 832b8b06b0fbef2847267de68e65201dc188b59a Mon Sep 17 00:00:00 2001 From: wangjiang Date: Mon, 28 Nov 2022 15:55:29 +0800 Subject: [PATCH] fix CVE-2022-4141 and delete irrelevant log file --- backport-CVE-2022-4141.patch | 145 + build.log | 16827 --------------------------------- vim.spec | 9 +- 3 files changed, 153 insertions(+), 16828 deletions(-) create mode 100644 backport-CVE-2022-4141.patch delete mode 100644 build.log diff --git a/backport-CVE-2022-4141.patch b/backport-CVE-2022-4141.patch new file mode 100644 index 0000000..fb6437a --- /dev/null +++ b/backport-CVE-2022-4141.patch @@ -0,0 +1,145 @@ +From cc762a48d42b579fb7bdec2c614636b830342dd5 Mon Sep 17 00:00:00 2001 +From: Bram Moolenaar +Date: Fri, 25 Nov 2022 13:03:31 +0000 +Subject: [PATCH] patch 9.0.0947: invalid memory access in substitute with + function + +Problem: Invalid memory access in substitute with function that goes to + another file. +Solution: Check for text locked in CTRL-W gf. +--- + src/normal.c | 33 ++++++++++++++++++++++++--------- + src/proto/normal.pro | 1 + + src/testdir/test_substitute.vim | 19 +++++++++++++++++++ + src/window.c | 4 +++- + 4 files changed, 47 insertions(+), 10 deletions(-) + +diff --git a/src/normal.c b/src/normal.c +index 938ae718efa2..0d1eba759e69 100644 +--- a/src/normal.c ++++ b/src/normal.c +@@ -192,13 +192,33 @@ check_text_locked(oparg_T *oap) + { + if (text_locked()) + { +- clearopbeep(oap); ++ if (oap != NULL) ++ clearopbeep(oap); + text_locked_msg(); + return TRUE; + } + return FALSE; + } + ++/* ++ * If text is locked, "curbuf_lock" or "allbuf_lock" is set: ++ * Give an error message, possibly beep and return TRUE. ++ * "oap" may be NULL. ++ */ ++ int ++check_text_or_curbuf_locked(oparg_T *oap) ++{ ++ if (check_text_locked(oap)) ++ return TRUE; ++ if (curbuf_locked()) ++ { ++ if (oap != NULL) ++ clearop(oap); ++ return TRUE; ++ } ++ return FALSE; ++} ++ + /* + * Handle the count before a normal command and set cap->count0. + */ +@@ -816,8 +836,7 @@ normal_cmd( + goto normal_end; + } + +- if ((nv_cmds[idx].cmd_flags & NV_NCW) +- && (check_text_locked(oap) || curbuf_locked())) ++ if ((nv_cmds[idx].cmd_flags & NV_NCW) && check_text_or_curbuf_locked(oap)) + // this command is not allowed now + goto normal_end; + +@@ -4058,13 +4077,9 @@ nv_gotofile(cmdarg_T *cap) + char_u *ptr; + linenr_T lnum = -1; + +- if (check_text_locked(cap->oap)) +- return; +- if (curbuf_locked()) +- { +- clearop(cap->oap); ++ if (check_text_or_curbuf_locked(cap->oap)) + return; +- } ++ + #ifdef FEAT_PROP_POPUP + if (ERROR_IF_TERM_POPUP_WINDOW) + return; +diff --git a/src/proto/normal.pro b/src/proto/normal.pro +index 106d0e1..eff08df 100644 +--- a/src/proto/normal.pro ++++ b/src/proto/normal.pro +@@ -1,4 +1,5 @@ + /* normal.c */ ++int check_text_or_curbuf_locked(oparg_T *oap); + void normal_cmd(oparg_T *oap, int toplevel); + void check_visual_highlight(void); + void end_visual_mode(void); +diff --git a/src/testdir/test_substitute.vim b/src/testdir/test_substitute.vim +index 7e7ccff..73c8c57 100644 +--- a/src/testdir/test_substitute.vim ++++ b/src/testdir/test_substitute.vim +@@ -1076,6 +1076,25 @@ func Test_sub_edit_scriptfile() + bwipe! + endfunc + ++" This was editing another file from the expression. ++func Test_sub_expr_goto_other_file() ++ call writefile([''], 'Xfileone', 'D') ++ enew! ++ call setline(1, ['a', 'b', 'c', 'd', ++ \ 'Xfileone zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz']) ++ ++ func g:SplitGotoFile() ++ exe "sil! norm 0\gf" ++ return '' ++ endfunc ++ ++ $ ++ s/\%')/\=g:SplitGotoFile() ++ ++ delfunc g:SplitGotoFile ++ bwipe! ++endfunc ++ + " Test for the 2-letter and 3-letter :substitute commands + func Test_substitute_short_cmd() + new +diff --git a/src/window.c b/src/window.c +index 97cc77035f95..a2bebcaea4df 100644 +--- a/src/window.c ++++ b/src/window.c +@@ -534,6 +534,8 @@ do_window( + case Ctrl_F: + wingotofile: + CHECK_CMDWIN; ++ if (check_text_or_curbuf_locked(NULL)) ++ break; + + ptr = grab_file_name(Prenum1, &lnum); + if (ptr != NULL) +@@ -857,7 +859,7 @@ win_split(int size, int flags) + * When "new_wp" is NULL: split the current window in two. + * When "new_wp" is not NULL: insert this window at the far + * top/left/right/bottom. +- * return FAIL for failure, OK otherwise ++ * Return FAIL for failure, OK otherwise. + */ + int + win_split_ins( +-- +2.33.0 diff --git a/build.log b/build.log deleted file mode 100644 index a9d9575..0000000 --- a/build.log +++ /dev/null @@ -1,16827 +0,0 @@ -Building vim.spec for standard_aarch64/aarch64 -Getting buildconfig from server and store to /home/wangjiang/home:wangjiang:branches:openEuler:22.03:LTS:Next/vim/.osc/_buildconfig-standard_aarch64-aarch64 -Getting buildinfo from server and store to /home/wangjiang/home:wangjiang:branches:openEuler:22.03:LTS:Next/vim/.osc/_buildinfo-standard_aarch64-aarch64.xml -Updating cache of required packages -0.0% cache miss. 435/435 dependencies cached. - -Skipping verification of package signatures -Writing build configuration -Running build -logging output to /data/wangjiang/root_1/.build.log... -[ 0s] Memory limit set to 6116734KB -[ 0s] Using BUILD_ROOT=/data/wangjiang/root_1 -[ 0s] Using BUILD_ARCH=aarch64:aarch64_ilp32:armv8l -[ 0s] -[ 0s] -[ 0s] localhost.localdomain started "build vim.spec" at Thu Nov 3 06:42:37 UTC 2022. -[ 0s] -[ 0s] -[ 0s] processing recipe /home/wangjiang/home:wangjiang:branches:openEuler:22.03:LTS:Next/vim/vim.spec ... -[ 0s] running changelog2spec --target rpm --file /home/wangjiang/home:wangjiang:branches:openEuler:22.03:LTS:Next/vim/vim.spec -[ 0s] init_buildsystem --configdir /usr/lib/build/configs --cachedir /var/cache/build --rpmlist /tmp/rpmlist.9ZCYZu /home/wangjiang/home:wangjiang:branches:openEuler:22.03:LTS:Next/vim/vim.spec ... -[ 1s] reordering...cycle: bash -> coreutils -[ 1s] breaking dependency coreutils -> bash -[ 1s] cycle: bash -> coreutils -> info -[ 1s] breaking dependency coreutils -> info -[ 1s] cycle: glibc -> basesystem -> filesystem -> bash -> coreutils -> gmp -[ 1s] breaking dependency filesystem -> bash -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> gmp -[ 1s] breaking dependency coreutils -> gmp -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -[ 1s] breaking dependency coreutils -> glibc -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> libacl -[ 1s] breaking dependency coreutils -> libacl -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> attr -[ 1s] breaking dependency coreutils -> attr -[ 1s] cycle: coreutils -> libcap -> bash -[ 1s] breaking dependency libcap -> bash -[ 1s] cycle: coreutils -> libcap -[ 1s] breaking dependency coreutils -> libcap -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> openssl-libs -[ 1s] breaking dependency coreutils -> openssl-libs -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> libselinux -[ 1s] breaking dependency libselinux -> glibc -[ 1s] cycle: glibc -> basesystem -> filesystem -> coreutils -> libselinux -> pcre2 -[ 1s] breaking dependency glibc -> basesystem -[ 1s] cycle: glibc -> glibc-common -> bash -> coreutils -> libselinux -> pcre2 -[ 1s] breaking dependency glibc-common -> bash -[ 1s] cycle: glibc -> glibc-common -> coreutils -> libselinux -> pcre2 -[ 1s] breaking dependency glibc-common -> coreutils -[ 1s] cycle: glibc -> glibc-common -[ 1s] breaking dependency glibc-common -> glibc -[ 1s] cycle: glibc -> glibc-common -> libselinux -> pcre2 -[ 1s] breaking dependency pcre2 -> glibc -[ 1s] cycle: glibc -> glibc-common -> libselinux -> pcre2 -> readline -[ 1s] breaking dependency readline -> glibc -[ 1s] cycle: glibc -> glibc-common -> libselinux -> pcre2 -> readline -> ncurses-libs -[ 1s] breaking dependency libselinux -> pcre2 -[ 1s] cycle: libselinux -> libsepol -> bash -> coreutils -[ 1s] breaking dependency bash -> coreutils -[ 1s] cycle: libselinux -> libsepol -> bash -> filesystem -> coreutils -[ 1s] breaking dependency libsepol -> bash -[ 1s] cycle: libselinux -> libsepol -> coreutils -[ 1s] breaking dependency libsepol -> coreutils -[ 1s] cycle: glibc -> glibc-common -> libselinux -> libsepol -[ 1s] breaking dependency glibc -> glibc-common -[ 1s] cycle: glibc -> filesystem -> coreutils -> libselinux -> libsepol -[ 1s] breaking dependency filesystem -> coreutils -[ 1s] cycle: filesystem -> setup -> openEuler-release -> bc -> info -> bash -[ 1s] breaking dependency filesystem -> setup -[ 1s] cycle: glibc -> filesystem -> ncurses-libs -[ 1s] breaking dependency ncurses-libs -> glibc -[ 1s] cycle: crypto-policies -> python3 -> openssl-libs -[ 1s] breaking dependency python3 -> openssl-libs -[ 1s] cycle: libnsl2 -> libtirpc -> krb5-libs -> crypto-policies -> python3 -[ 1s] breaking dependency python3 -> libnsl2 -[ 1s] cycle: libtirpc -> krb5-libs -> crypto-policies -> python3 -[ 1s] breaking dependency python3 -> libtirpc -[ 1s] cycle: pam -> libpwquality -[ 1s] breaking dependency pam -> libpwquality -[ 1s] cycle: rpm -> rpm-libs -[ 1s] breaking dependency rpm -> rpm-libs -[ 1s] cycle: perl-libs -> perl-Carp -[ 1s] breaking dependency perl-libs -> perl-Carp -[ 1s] cycle: perl-libs -> perl-Exporter -[ 1s] breaking dependency perl-libs -> perl-Exporter -[ 1s] cycle: glibc-devel -> libxcrypt-devel -[ 1s] breaking dependency glibc-devel -> libxcrypt-devel -[ 1s] cycle: perl-Carp -> perl-Exporter -[ 1s] breaking dependency perl-Exporter -> perl-Carp -[ 1s] cycle: perl -> perl-PathTools -[ 1s] breaking dependency perl -> perl-PathTools -[ 1s] cycle: perl -> perl-ExtUtils-MakeMaker -[ 1s] breaking dependency perl -> perl-ExtUtils-MakeMaker -[ 1s] cycle: perl -> perl-File-Path -> perl-PathTools -[ 1s] breaking dependency perl -> perl-File-Path -[ 1s] cycle: perl -> perl-Getopt-Long -> perl-Pod-Usage -[ 1s] breaking dependency perl -> perl-Getopt-Long -[ 1s] cycle: perl -> perl-Locale-Maketext -[ 1s] breaking dependency perl -> perl-Locale-Maketext -[ 1s] cycle: perl -> perl-Pod-Simple -[ 1s] breaking dependency perl -> perl-Pod-Simple -[ 1s] cycle: perl -> perl-Socket -[ 1s] breaking dependency perl -> perl-Socket -[ 1s] cycle: perl -> perl-Storable -[ 1s] breaking dependency perl -> perl-Storable -[ 1s] cycle: perl -> perl-Text-Tabs+Wrap -[ 1s] breaking dependency perl -> perl-Text-Tabs+Wrap -[ 1s] cycle: perl -> perl-Time-Local -> perl-constant -[ 1s] breaking dependency perl -> perl-Time-Local -[ 1s] cycle: perl -> perl-constant -[ 1s] breaking dependency perl -> perl-constant -[ 1s] cycle: perl -> perl-threads -[ 1s] breaking dependency perl -> perl-threads -[ 1s] cycle: perl -> perl-threads-shared -[ 1s] breaking dependency perl -> perl-threads-shared -[ 1s] cycle: perl -> perl-Archive-Tar -[ 1s] breaking dependency perl -> perl-Archive-Tar -[ 1s] cycle: perl-B-Debug -> perl -[ 1s] breaking dependency perl -> perl-B-Debug -[ 1s] cycle: perl -> perl-CPAN-Meta -> perl-CPAN-Meta-Requirements -[ 1s] breaking dependency perl -> perl-CPAN-Meta -[ 1s] cycle: perl -> perl-CPAN-Meta-Requirements -[ 1s] breaking dependency perl -> perl-CPAN-Meta-Requirements -[ 1s] cycle: perl -> perl-CPAN-Meta-YAML -[ 1s] breaking dependency perl -> perl-CPAN-Meta-YAML -[ 1s] cycle: perl -> perl-Compress-Raw-Bzip2 -[ 1s] breaking dependency perl -> perl-Compress-Raw-Bzip2 -[ 1s] cycle: perl -> perl-Compress-Raw-Zlib -[ 1s] breaking dependency perl -> perl-Compress-Raw-Zlib -[ 1s] cycle: perl -> perl-Config-Perl-V -[ 1s] breaking dependency perl -> perl-Config-Perl-V -[ 1s] cycle: perl -> perl-Data-Dumper -[ 1s] breaking dependency perl -> perl-Data-Dumper -[ 1s] cycle: perl -> perl-Devel-PPPort -[ 1s] breaking dependency perl -> perl-Devel-PPPort -[ 1s] cycle: perl -> perl-Digest-SHA -[ 1s] breaking dependency perl -> perl-Digest-SHA -[ 1s] cycle: perl -> perl-Encode -[ 1s] breaking dependency perl -> perl-Encode -[ 1s] cycle: perl -> perl-Env -[ 1s] breaking dependency perl -> perl-Env -[ 1s] cycle: perl -> perl-ExtUtils-Command -[ 1s] breaking dependency perl -> perl-ExtUtils-Command -[ 1s] cycle: perl -> perl-ExtUtils-Install -[ 1s] breaking dependency perl -> perl-ExtUtils-Install -[ 1s] cycle: perl -> perl-ExtUtils-Manifest -[ 1s] breaking dependency perl -> perl-ExtUtils-Manifest -[ 1s] cycle: perl -> perl-ExtUtils-ParseXS -[ 1s] breaking dependency perl -> perl-ExtUtils-ParseXS -[ 1s] cycle: perl -> perl-File-Fetch -> perl-PathTools -[ 1s] breaking dependency perl -> perl-File-Fetch -[ 1s] cycle: perl -> perl-File-Temp -> perl-PathTools -[ 1s] breaking dependency perl -> perl-File-Temp -[ 1s] cycle: perl -> perl-Filter -[ 1s] breaking dependency perl -> perl-Filter -[ 1s] cycle: perl -> perl-Filter-Simple -> perl-Filter -[ 1s] breaking dependency perl -> perl-Filter-Simple -[ 1s] cycle: perl -> perl-HTTP-Tiny -[ 1s] breaking dependency perl -> perl-HTTP-Tiny -[ 1s] cycle: perl -> perl-IO-Compress -[ 1s] breaking dependency perl -> perl-IO-Compress -[ 1s] cycle: perl -> perl-IO-Socket-IP -[ 1s] breaking dependency perl -> perl-IO-Socket-IP -[ 1s] cycle: perl -> perl-IPC-Cmd -> perl-ExtUtils-MakeMaker -[ 1s] breaking dependency perl -> perl-IPC-Cmd -[ 1s] cycle: perl -> perl-IPC-SysV -[ 1s] breaking dependency perl -> perl-IPC-SysV -[ 1s] cycle: perl -> perl-JSON-PP -[ 1s] breaking dependency perl -> perl-JSON-PP -[ 1s] cycle: perl -> perl-Locale-Codes -> perl-constant -[ 1s] breaking dependency perl -> perl-Locale-Codes -[ 1s] cycle: perl -> perl-Math-BigInt -[ 1s] breaking dependency perl -> perl-Math-BigInt -[ 1s] cycle: perl -> perl-Math-BigInt-FastCalc -> perl-Math-BigInt -[ 1s] breaking dependency perl -> perl-Math-BigInt-FastCalc -[ 1s] cycle: perl -> perl-Math-BigRat -> perl-Math-BigInt -[ 1s] breaking dependency perl -> perl-Math-BigRat -[ 1s] cycle: perl -> perl-Module-CoreList -[ 1s] breaking dependency perl -> perl-Module-CoreList -[ 1s] cycle: perl -> perl-Module-Load -> perl-PathTools -[ 1s] breaking dependency perl -> perl-Module-Load -[ 1s] cycle: perl -> perl-Module-Load-Conditional -[ 1s] breaking dependency perl -> perl-Module-Load-Conditional -[ 1s] cycle: perl -> perl-Module-Metadata -[ 1s] breaking dependency perl -> perl-Module-Metadata -[ 1s] cycle: perl -> perl-Params-Check -[ 1s] breaking dependency perl -> perl-Params-Check -[ 1s] cycle: perl -> perl-Pod-Checker -[ 1s] breaking dependency perl -> perl-Pod-Checker -[ 1s] cycle: perl -> perl-Pod-Parser -[ 1s] breaking dependency perl -> perl-Pod-Parser -[ 1s] cycle: perl -> perl-Pod-Perldoc -[ 1s] breaking dependency perl -> perl-Pod-Perldoc -[ 1s] cycle: perl -> perl-Pod-Usage -[ 1s] breaking dependency perl -> perl-Pod-Usage -[ 1s] cycle: perl -> perl-Sys-Syslog -[ 1s] breaking dependency perl -> perl-Sys-Syslog -[ 1s] cycle: perl -> perl-Term-Cap -[ 1s] breaking dependency perl -> perl-Term-Cap -[ 1s] cycle: perl -> perl-Test-Harness -[ 1s] breaking dependency perl -> perl-Test-Harness -[ 1s] cycle: perl -> perl-Test-Simple -[ 1s] breaking dependency perl -> perl-Test-Simple -[ 1s] cycle: perl -> perl-Text-Balanced -[ 1s] breaking dependency perl -> perl-Text-Balanced -[ 1s] cycle: perl -> perl-Thread-Queue -> perl-threads-shared -[ 1s] breaking dependency perl -> perl-Thread-Queue -[ 1s] cycle: perl -> perl-Unicode-Collate -> perl-PathTools -[ 1s] breaking dependency perl -> perl-Unicode-Collate -[ 1s] cycle: perl -> perl-autodie -[ 1s] breaking dependency perl -> perl-autodie -[ 1s] cycle: perl -> perl-bignum -> perl-Math-BigInt -[ 1s] breaking dependency perl -> perl-bignum -[ 1s] cycle: perl -> perl-Encode-devel -[ 1s] breaking dependency perl -> perl-Encode-devel -[ 1s] cycle: perl -> perl-experimental -[ 1s] breaking dependency perl -> perl-experimental -[ 1s] cycle: perl -> perl-libnet -[ 1s] breaking dependency perl -> perl-libnet -[ 1s] cycle: perl -> perl-podlators -[ 1s] breaking dependency perl -> perl-podlators -[ 1s] cycle: perl -> perl-version -[ 1s] breaking dependency perl -> perl-version -[ 1s] cycle: glib2-devel -> sysprof-devel -[ 1s] breaking dependency glib2-devel -> sysprof-devel -[ 1s] cycle: libglvnd-egl -> mesa-libEGL -[ 1s] breaking dependency mesa-libEGL -> libglvnd-egl -[ 1s] cycle: libglvnd-glx -> mesa-libGL -[ 1s] breaking dependency mesa-libGL -> libglvnd-glx -[ 1s] cycle: rubygems -> rubygem-openssl -[ 1s] breaking dependency rubygem-openssl -> rubygems -[ 1s] cycle: rubygems -> rubygem-psych -[ 1s] breaking dependency rubygem-psych -> rubygems -[ 1s] cycle: nss-util -> nss -[ 1s] breaking dependency nss -> nss-util -[ 1s] cycle: nss-softokn -> nss-util -> nss -[ 1s] breaking dependency nss -> nss-softokn -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -[ 1s] breaking dependency perl-Pod-Usage -> perl-Getopt-Long -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -> perl-podlators -> perl-Encode -[ 1s] breaking dependency perl-podlators -> perl-Encode -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -> perl-podlators -[ 1s] breaking dependency perl-podlators -> perl-Getopt-Long -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -> perl-podlators -> perl-Pod-Simple -> perl-Encode -[ 1s] breaking dependency perl-Encode -> perl-Getopt-Long -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -> perl-podlators -> perl-Pod-Simple -[ 1s] breaking dependency perl-podlators -> perl-Pod-Simple -[ 1s] cycle: perl-Pod-Usage -> perl-podlators -[ 1s] breaking dependency perl-podlators -> perl-Pod-Usage -[ 1s] cycle: perl-Getopt-Long -> perl-Pod-Usage -> perl-Pod-Perldoc -> perl-Pod-Simple -[ 1s] breaking dependency perl-Pod-Perldoc -> perl-Pod-Simple -[ 1s] cycle: perl-ExtUtils-Install -> perl-ExtUtils-MakeMaker -[ 1s] breaking dependency perl-ExtUtils-MakeMaker -> perl-ExtUtils-Install -[ 1s] done -[ 1s] querying package ids... -[ 2s] [1/435] keeping adwaita-cursor-theme-41.0-2.oe2203 -[ 2s] [2/435] keeping cmake-filesystem-3.22.0-5.oe2203 -[ 2s] [3/435] keeping fonts-filesystem-2.0.5-2.oe2203 -[ 2s] [4/435] keeping fuse-common-3.10.5-3.oe2203 -[ 2s] [5/435] keeping hwdata-0.353-2.oe2203 -[ 2s] [6/435] keeping kernel-headers-5.10.0-121.0.0.65.oe2203 -[ 2s] [7/435] keeping ncurses-base-6.3-4.oe2203 -[ 2s] [8/435] keeping openEuler-gpg-keys-1.0-3.3.oe2203 -[ 2s] [9/435] keeping python-setuptools-59.4.0-4.oe2203 -[ 2s] [10/435] keeping qt5-srpm-macros-5.15.2-1.oe2203 -[ 2s] [11/435] keeping tzdata-2022a-8.oe2203 -[ 2s] [12/435] keeping xkeyboard-config-2.33-2.oe2203 -[ 2s] [13/435] keeping openEuler-repos-1.0-3.3.oe2203 -[ 2s] [14/435] keeping wqy-zenhei-fonts-0.9.46-22.oe2203 -[ 2s] [15/435] keeping ncurses-libs-6.3-4.oe2203 -[ 2s] [16/435] keeping readline-8.1-2.oe2203 -[ 2s] [17/435] keeping filesystem-3.16-5.oe2203 -[ 2s] [18/435] keeping emacs-filesystem-1:27.2-5.oe2203 -[ 2s] [19/435] keeping libgcc-10.3.1-16.oe2203 -[ 2s] [20/435] keeping pcre2-10.39-3.oe2203 -[ 2s] [21/435] keeping glibc-2.34-100.oe2203 -[ 2s] [22/435] keeping SDL2-2.0.12-4.oe2203 -[ 2s] [23/435] keeping brotli-1.0.9-3.oe2203 -[ 2s] [24/435] keeping cpio-2.13-7.oe2203 -[ 2s] [25/435] keeping diffutils-3.8-3.oe2203 -[ 2s] [26/435] keeping efivar-libs-37-9.oe2203 -[ 2s] [27/435] keeping expat-2.4.1-7.oe2203 -[ 2s] [28/435] keeping fribidi-1.0.10-2.oe2203 -[ 2s] [29/435] keeping gpm-libs-1.20.7-26.oe2203 -[ 2s] [30/435] keeping jbigkit-libs-2.1-20.oe2203 -[ 2s] [31/435] keeping json-c-0.15-5.oe2203 -[ 2s] [32/435] keeping keyutils-libs-1.6.3-4.oe2203 -[ 2s] [33/435] keeping lcms2-2.12-1.oe2203 -[ 2s] [34/435] keeping libICE-1.0.10-5.oe2203 -[ 2s] [35/435] keeping libXau-1.0.9-2.oe2203 -[ 2s] [36/435] keeping libcap-ng-0.8.3-1.oe2203 -[ 2s] [37/435] keeping libdatrie-0.2.13-2.oe2203 -[ 2s] [38/435] keeping libdrm-2.4.109-4.oe2203 -[ 2s] [39/435] keeping libepoxy-1.5.9-2.oe2203 -[ 2s] [40/435] keeping libev-4.33-3.oe2203 -[ 2s] [41/435] keeping libffi-3.4.2-3.oe2203 -[ 2s] [42/435] keeping libglvnd-1:1.3.4-3.oe2203 -[ 2s] [43/435] keeping libgomp-10.3.1-16.oe2203 -[ 2s] [44/435] keeping libgpg-error-1.43-2.oe2203 -[ 2s] [45/435] keeping libjpeg-turbo-2.1.1-3.oe2203 -[ 2s] [46/435] keeping libnghttp2-1.46.0-2.oe2203 -[ 2s] [47/435] keeping libpipeline-1.5.4-2.oe2203 -[ 2s] [48/435] keeping libsigsegv-2.13-2.oe2203 -[ 2s] [49/435] keeping libsmartcols-2.37.2-9.oe2203 -[ 2s] [50/435] keeping libstemmer-0-12.oe2203 -[ 2s] [51/435] keeping libtasn1-4.17.0-3.oe2203 -[ 2s] [52/435] keeping libtool-ltdl-2.4.6-35.oe2203 -[ 2s] [53/435] keeping libunistring-0.9.10-9.oe2203 -[ 2s] [54/435] keeping libuuid-2.37.2-9.oe2203 -[ 2s] [55/435] keeping libxcrypt-4.4.26-3.oe2203 -[ 2s] [56/435] keeping libxshmfence-1.3-8.oe2203 -[ 2s] [57/435] keeping libyaml-0.2.5-3.oe2203 -[ 2s] [58/435] keeping lz4-1.9.3-3.oe2203 -[ 2s] [59/435] keeping m4-1.4.19-3.oe2203 -[ 2s] [60/435] keeping nspr-4.32.0-2.oe2203 -[ 2s] [61/435] keeping pixman-0.40.0-2.oe2203 -[ 2s] [62/435] keeping pkgconf-1.8.0-2.oe2203 -[ 2s] [63/435] keeping which-2.21-15.oe2203 -[ 2s] [64/435] keeping xz-libs-5.2.5-3.oe2203 -[ 2s] [65/435] keeping zlib-1.2.11-22.oe2203 -[ 2s] [66/435] keeping attr-2.5.1-3.oe2203 -[ 2s] [67/435] keeping less-590-2.oe2203 -[ 2s] [68/435] keeping libstdc++-10.3.1-16.oe2203 -[ 2s] [69/435] keeping gdbm-1:1.22-10.oe2203 -[ 2s] [70/435] keeping libsepol-3.3-2.oe2203 -[ 2s] [71/435] keeping bash-5.1.8-4.oe2203 -[ 2s] [72/435] keeping libglvnd-core-devel-1:1.3.4-3.oe2203 -[ 2s] [73/435] keeping wayland-protocols-devel-1.25-1.oe2203 -[ 2s] [74/435] keeping xorg-x11-proto-devel-2021.5-2.oe2203 -[ 2s] [75/435] keeping audit-libs-1:3.0.1-4.oe2203 -[ 2s] [76/435] keeping file-libs-5.41-2.oe2203 -[ 2s] [77/435] keeping fribidi-devel-1.0.10-2.oe2203 -[ 2s] [78/435] keeping gmp-1:6.2.1-2.oe2203 -[ 2s] [79/435] keeping libacl-2.3.1-2.oe2203 -[ 2s] [80/435] keeping libffi-devel-3.4.2-3.oe2203 -[ 2s] [81/435] keeping libgcrypt-1.9.4-1.oe2203 -[ 2s] [82/435] keeping libglvnd-opengl-1:1.3.4-3.oe2203 -[ 2s] [83/435] keeping libpng-2:1.6.37-3.oe2203 -[ 2s] [84/435] keeping libsepol-devel-3.3-2.oe2203 -[ 2s] [85/435] keeping libthai-0.1.28-5.oe2203 -[ 2s] [86/435] keeping libxcb-1.14-2.oe2203 -[ 2s] [87/435] keeping p11-kit-0.24.0-2.oe2203 -[ 2s] [88/435] keeping pixman-devel-0.40.0-2.oe2203 -[ 2s] [89/435] keeping wayland-1.20.0-6.oe2203 -[ 2s] [90/435] keeping zlib-devel-1.2.11-22.oe2203 -[ 2s] [91/435] keeping cyrus-sasl-lib-2.1.28-1.oe2203 -[ 2s] [92/435] keeping fuse-2.9.9-11.oe2203 -[ 2s] [93/435] keeping gc-8.0.6-3.oe2203 -[ 2s] [94/435] keeping libSM-1.2.3-5.oe2203 -[ 2s] [95/435] keeping libdatrie-devel-0.2.13-2.oe2203 -[ 2s] [96/435] keeping libdb-5.3.28-40.oe2203 -[ 2s] [97/435] keeping libicu-69.1-2.oe2203 -[ 2s] [98/435] keeping libselinux-3.3-2.oe2203 -[ 2s] [99/435] keeping libxml2-2.9.14-2.oe2203 -[ 2s] [100/435] keeping zstd-1.5.0-2.oe2203 -[ 2s] [101/435] keeping pcre-8.45-2.oe2203 -[ 2s] [102/435] keeping perl-libs-4:5.34.0-6.oe2203 -[ 2s] [103/435] keeping ncurses-6.3-4.oe2203 -[ 2s] [104/435] keeping libtiff-4.3.0-20.oe2203 -[ 2s] [105/435] keeping perl-Fedora-VSP-0.001-10.oe2203 -[ 2s] [106/435] keeping perl-parent-1:0.238-2.oe2203 -[ 2s] [107/435] keeping perl-perlfaq-5.20210520-2.oe2203 -[ 2s] [108/435] keeping libX11-1.7.2-4.oe2203 -[ 2s] [109/435] keeping libtiff-devel-4.3.0-20.oe2203 -[ 2s] [110/435] keeping mesa-libglapi-21.3.1-2.oe2203 -[ 2s] [111/435] keeping mpfr-4.1.0-2.oe2203 -[ 2s] [112/435] keeping nettle-3.8.1-1.oe2203 -[ 2s] [113/435] keeping perl-Exporter-5.74-2.oe2203 -[ 2s] [114/435] keeping file-5.41-2.oe2203 -[ 2s] [115/435] keeping libICE-devel-1.0.10-5.oe2203 -[ 2s] [116/435] keeping libXau-devel-1.0.9-2.oe2203 -[ 2s] [117/435] keeping libpng-devel-2:1.6.37-3.oe2203 -[ 2s] [118/435] keeping libthai-devel-0.1.28-5.oe2203 -[ 2s] [119/435] keeping libxkbcommon-1.3.1-3.oe2203 -[ 2s] [120/435] keeping patch-2.7.6-13.oe2203 -[ 2s] [121/435] keeping sed-4.8-4.oe2203 -[ 2s] [122/435] keeping acl-2.3.1-2.oe2203 -[ 2s] [123/435] keeping glibc-common-2.34-100.oe2203 -[ 2s] [124/435] keeping mesa-libgbm-21.3.1-2.oe2203 -[ 2s] [125/435] keeping wayland-devel-1.20.0-6.oe2203 -[ 2s] [126/435] keeping coreutils-9.0-6.oe2203 -[ 2s] [127/435] keeping crontabs-1.11-23.oe2203 -[ 2s] [128/435] keeping hicolor-icon-theme-0.17-7.oe2203 -[ 2s] [129/435] keeping libXcomposite-0.4.5-2.oe2203 -[ 2s] [130/435] keeping libXext-1.3.4-5.oe2203 -[ 2s] [131/435] keeping libXfixes-6.0.0-2.oe2203 -[ 2s] [132/435] keeping libXpm-3.5.13-2.oe2203 -[ 2s] [133/435] keeping libXrender-0.9.10-11.oe2203 -[ 2s] [134/435] keeping perl-Carp-1.50-419.oe2203 -[ 2s] [135/435] keeping perl-Perl-OSType-1.010-422.oe2203 -[ 2s] [136/435] keeping perl-Pod-Escapes-1:1.07_01-1.oe2203 -[ 2s] [137/435] keeping perl-Term-ANSIColor-5.01-2.oe2203 -[ 2s] [138/435] keeping publicsuffix-list-20211113-3.oe2203 -[ 2s] [139/435] keeping adwaita-icon-theme-41.0-2.oe2203 -[ 2s] [140/435] keeping bzip2-1.0.8-6.oe2203 -[ 2s] [141/435] keeping gzip-1.11-5.oe2203 -[ 2s] [142/435] keeping libmpc-1.2.0-3.oe2203 -[ 2s] [143/435] keeping libseccomp-2.5.3-2.oe2203 -[ 2s] [144/435] keeping libxcb-devel-1.14-2.oe2203 -[ 2s] [145/435] keeping popt-1.18-3.oe2203 -[ 2s] [146/435] keeping sgml-common-0.6.3-52.oe2203 -[ 2s] [147/435] keeping grep-3.7-4.oe2203 -[ 2s] [148/435] keeping info-6.8-4.oe2203 -[ 2s] [149/435] keeping libSM-devel-1.2.3-5.oe2203 -[ 2s] [150/435] keeping libXt-1.2.1-2.oe2203 -[ 2s] [151/435] keeping libblkid-2.37.2-9.oe2203 -[ 2s] [152/435] keeping libidn2-2.3.2-3.oe2203 -[ 2s] [153/435] keeping pcre-devel-8.45-2.oe2203 -[ 2s] [154/435] keeping pcre2-devel-10.39-3.oe2203 -[ 2s] [155/435] keeping tar-2:1.34-2.oe2203 -[ 2s] [156/435] keeping tcl-1:8.6.10-4.oe2203 -[ 2s] [157/435] keeping graphite2-1.3.14-6.oe2203 -[ 2s] [158/435] keeping groff-base-1.22.4-10.oe2203 -[ 2s] [159/435] keeping lua-5.4.3-9.oe2203 -[ 2s] [160/435] keeping ncurses-devel-6.3-4.oe2203 -[ 2s] [161/435] keeping perl-MIME-Base64-3.16-2.oe2203 -[ 2s] [162/435] keeping slang-2.3.2-9.oe2203 -[ 2s] [163/435] keeping gawk-5.1.1-3.oe2203 -[ 2s] [164/435] keeping glibc-devel-2.34-100.oe2203 -[ 2s] [165/435] keeping libicu-devel-69.1-2.oe2203 -[ 2s] [166/435] keeping gettext-0.21-5.oe2203 -[ 2s] [167/435] keeping ruby-3.0.3-127.oe2203 -[ 2s] [168/435] keeping guile-5:2.0.14-18.oe2203 -[ 2s] [169/435] keeping mesa-libEGL-21.3.1-2.oe2203 -[ 2s] [170/435] keeping bzip2-devel-1.0.8-6.oe2203 -[ 2s] [171/435] keeping graphite2-devel-1.3.14-6.oe2203 -[ 2s] [172/435] keeping libattr-devel-2.5.1-3.oe2203 -[ 2s] [173/435] keeping lua-devel-5.4.3-9.oe2203 -[ 2s] [174/435] keeping perl-PerlIO-via-QuotedPrint-0.10-1.oe2203 -[ 2s] [175/435] keeping zip-3.0-30.oe2203 -[ 2s] [176/435] keeping libXdamage-1.1.5-2.oe2203 -[ 2s] [177/435] keeping libXi-1.8-2.oe2203 -[ 2s] [178/435] keeping libXinerama-1.1.4-6.oe2203 -[ 2s] [179/435] keeping libXxf86vm-1.1.4-13.oe2203 -[ 2s] [180/435] keeping libfdisk-2.37.2-9.oe2203 -[ 2s] [181/435] keeping libglvnd-egl-1:1.3.4-3.oe2203 -[ 2s] [182/435] keeping libglvnd-gles-1:1.3.4-3.oe2203 -[ 2s] [183/435] keeping libxcrypt-devel-4.4.26-3.oe2203 -[ 2s] [184/435] keeping newt-0.52.21-7.oe2203 -[ 2s] [185/435] keeping perl-Text-ParseWords-3.30-420.oe2203 -[ 2s] [186/435] keeping bc-1.07.1-12.oe2203 -[ 2s] [187/435] keeping libX11-devel-1.7.2-4.oe2203 -[ 2s] [188/435] keeping libXcursor-1.2.1-1.oe2203 -[ 2s] [189/435] keeping libXrandr-1.5.2-2.oe2203 -[ 2s] [190/435] keeping libmount-2.37.2-9.oe2203 -[ 2s] [191/435] keeping libselinux-devel-3.3-2.oe2203 -[ 2s] [192/435] keeping perl-Digest-1.20-2.oe2203 -[ 2s] [193/435] keeping rubygem-psych-3.3.2-127.oe2203 -[ 2s] [194/435] keeping unzip-6.0-50.oe2203 -[ 2s] [195/435] keeping cracklib-2.9.8-1.oe2203 -[ 2s] [196/435] keeping e2fsprogs-1.46.4-16.oe2203 -[ 2s] [197/435] keeping findutils-2:4.8.0-4.oe2203 -[ 2s] [198/435] keeping libsemanage-3.3-3.oe2203 -[ 3s] [199/435] keeping linuxconsoletools-1.8.1-1.oe2203 -[ 3s] [200/435] keeping make-1:4.3-3.oe2203 -[ 3s] [201/435] keeping sqlite-3.37.2-3.oe2203 -[ 3s] [202/435] keeping xz-5.2.5-3.oe2203 -[ 3s] [203/435] keeping freetype-2.11.0-2.oe2203 -[ 3s] [204/435] keeping logrotate-3.20.1-1.oe2203 -[ 3s] [205/435] keeping perl-Scalar-List-Utils-4:1.60-2.oe2203 -[ 3s] [206/435] keeping perl-Time-HiRes-4:1.9767-2.oe2203 -[ 3s] [207/435] keeping perl-Unicode-Normalize-1.28-2.oe2203 -[ 3s] [208/435] keeping cpp-10.3.1-16.oe2203 -[ 3s] [209/435] keeping elfutils-0.185-14.oe2203 -[ 3s] [210/435] keeping man-db-2.9.4-3.oe2203 -[ 3s] [211/435] keeping openEuler-release-22.03LTS_Next-52.oe2203 -[ 3s] [212/435] keeping polkit-help-0.120-6.oe2203 -[ 3s] [213/435] keeping xz-devel-5.2.5-3.oe2203 -[ 3s] [214/435] keeping libacl-devel-2.3.1-2.oe2203 -[ 3s] [215/435] keeping dwz-0.14-4.oe2203 -[ 3s] [216/435] keeping libXext-devel-1.3.4-5.oe2203 -[ 3s] [217/435] keeping libXfixes-devel-6.0.0-2.oe2203 -[ 3s] [218/435] keeping libXrender-devel-0.9.10-11.oe2203 -[ 3s] [219/435] keeping libXtst-1.2.3-11.oe2203 -[ 3s] [220/435] keeping perl-Digest-MD5-2.58-2.oe2203 -[ 3s] [221/435] keeping chkconfig-1.20-2.oe2203 -[ 3s] [222/435] keeping libXt-devel-1.2.1-2.oe2203 -[ 3s] [223/435] keeping freetype-devel-2.11.0-2.oe2203 -[ 3s] [224/435] keeping libXpm-devel-3.5.13-2.oe2203 -[ 3s] [225/435] keeping fontconfig-2.13.94-2.oe2203 -[ 3s] [226/435] keeping glib2-2.68.1-13.oe2203 -[ 3s] [227/435] keeping mesa-libGL-21.3.1-2.oe2203 -[ 3s] [228/435] keeping gsettings-desktop-schemas-41.0-2.oe2203 -[ 3s] [229/435] keeping atk-2.36.0-2.oe2203 -[ 3s] [230/435] keeping json-glib-1.6.2-2.oe2203 -[ 3s] [231/435] keeping setup-2.13.9.1-1.oe2203 -[ 3s] [232/435] keeping desktop-file-utils-0.26-2.oe2203 -[ 3s] [233/435] keeping libXcomposite-devel-0.4.5-2.oe2203 -[ 3s] [234/435] keeping libXdamage-devel-1.1.5-2.oe2203 -[ 3s] [235/435] keeping libXft-2.3.4-2.oe2203 -[ 3s] [236/435] keeping libXinerama-devel-1.1.4-6.oe2203 -[ 3s] [237/435] keeping libglvnd-glx-1:1.3.4-3.oe2203 -[ 3s] [238/435] keeping shared-mime-info-2.1-1.oe2203 -[ 3s] [239/435] keeping libXcursor-devel-1.2.1-1.oe2203 -[ 3s] [240/435] keeping libXi-devel-1.8-2.oe2203 -[ 3s] [241/435] keeping libXrandr-devel-1.5.2-2.oe2203 -[ 3s] [242/435] keeping libxml2-devel-2.9.14-2.oe2203 -[ 3s] [243/435] keeping babeltrace-1.5.8-3.oe2203 -[ 3s] [244/435] keeping harfbuzz-2.8.2-3.oe2203 -[ 3s] [245/435] keeping p11-kit-trust-0.24.0-2.oe2203 -[ 3s] [246/435] keeping binutils-2.37-14.oe2203 -[ 3s] [247/435] keeping cairo-1.17.4-2.oe2203 -[ 3s] [248/435] keeping basesystem-12-3.oe2203 -[ 3s] [249/435] keeping libxkbcommon-devel-1.3.1-3.oe2203 -[ 3s] [250/435] keeping fontconfig-devel-2.13.94-2.oe2203 -[ 3s] [251/435] keeping ca-certificates-2021.2.52-2.oe2203 -[ 3s] [252/435] keeping libXtst-devel-1.2.3-11.oe2203 -[ 3s] [253/435] keeping gdk-pixbuf2-2.42.6-4.oe2203 -[ 3s] [254/435] keeping libglvnd-devel-1:1.3.4-3.oe2203 -[ 3s] [255/435] keeping tk-1:8.6.10-2.oe2203 -[ 3s] [256/435] keeping pango-1.50.7-1.oe2203 -[ 3s] [257/435] keeping cairo-gobject-1.17.4-2.oe2203 -[ 3s] [258/435] keeping gcc-10.3.1-16.oe2203 -[ 3s] [259/435] keeping python-pip-wheel-21.3.1-2.oe2203 -[ 3s] [260/435] keeping libepoxy-devel-1.5.9-2.oe2203 -[ 3s] [261/435] keeping gdk-pixbuf2-modules-2.42.6-4.oe2203 -[ 3s] [262/435] keeping libXft-devel-2.3.4-2.oe2203 -[ 3s] [263/435] keeping python3-3.9.9-15.oe2203 -[ 3s] [264/435] keeping python3-pyparsing-3.0.6-2.oe2203 -[ 3s] [265/435] keeping python3-setuptools-59.4.0-4.oe2203 -[ 3s] [266/435] keeping crypto-policies-20200619-3.git781bbd4.oe2203 -[ 3s] [267/435] keeping libpsl-0.21.1-5.oe2203 -[ 3s] [268/435] keeping gdb-headless-11.1-2.oe2203 -[ 3s] [269/435] keeping systemtap-sdt-devel-4.5-3.oe2203 -[ 3s] [270/435] keeping gdb-11.1-2.oe2203 -[ 3s] [271/435] keeping python3-rpm-generators-9-3.oe2203 -[ 3s] [272/435] keeping openssl-libs-1:1.1.1m-15.oe2203 -[ 3s] [273/435] keeping nss-3.72.0-4.oe2203 -[ 3s] [274/435] keeping libevent-2.1.12-5.oe2203 -[ 3s] [275/435] keeping openldap-2.6.0-3.oe2203 -[ 3s] [276/435] keeping fipscheck-1.5.0-8.oe2203 -[ 3s] [277/435] keeping kmod-libs-29-4.oe2203 -[ 3s] [278/435] keeping nss-util-3.72.0-4.oe2203 -[ 3s] [279/435] keeping openssl-1:1.1.1m-15.oe2203 -[ 3s] [280/435] keeping rubygem-openssl-2.2.1-127.oe2203 -[ 3s] [281/435] keeping libarchive-3.5.2-4.oe2203 -[ 3s] [282/435] keeping debugedit-5.0-3.oe2203 -[ 3s] [283/435] keeping rubygems-3.2.32-127.oe2203 -[ 3s] [284/435] keeping libverto-0.3.2-2.oe2203 -[ 3s] [285/435] keeping nss-softokn-3.72.0-4.oe2203 -[ 3s] [286/435] keeping pciutils-3.8.0-1.oe2203 -[ 3s] [287/435] keeping ruby-devel-3.0.3-127.oe2203 -[ 3s] [288/435] keeping kernel-tools-5.10.0-121.0.0.65.oe2203 -[ 3s] [289/435] keeping krb5-libs-1.19.2-3.oe2203 -[ 3s] [290/435] keeping libtirpc-1.3.2-2.oe2203 -[ 3s] [291/435] keeping libssh-0.9.6-5.oe2203 -[ 3s] [292/435] keeping libnsl2-2.0.0-4.oe2203 -[ 3s] [293/435] keeping libcurl-7.79.1-12.oe2203 -[ 3s] [294/435] keeping curl-7.79.1-12.oe2203 -[ 3s] [295/435] keeping tpm2-tss-3.1.0-1.oe2203 -[ 3s] [296/435] keeping pam-1.5.2-2.oe2203 -[ 3s] [297/435] keeping ima-evm-utils-libs-1.3.2-8.oe2203 -[ 3s] [298/435] keeping libpwquality-1.4.4-4.oe2203 -[ 3s] [299/435] keeping libcap-2.61-3.oe2203 -[ 3s] [300/435] keeping shadow-2:4.9-5.oe2203 -[ 3s] [301/435] keeping libutempter-1.2.1-3.oe2203 -[ 3s] [302/435] keeping unbound-libs-1.13.2-6.oe2203 -[ 3s] [303/435] keeping systemd-libs-249-39.oe2203 -[ 3s] [304/435] keeping rpm-4.17.0-16.oe2203 -[ 3s] [305/435] keeping efi-srpm-macros-4-6.oe2203 -[ 3s] [306/435] keeping dbus-libs-1:1.12.20-8.oe2203 -[ 3s] [307/435] keeping libusbx-1.0.26-1.oe2203 -[ 3s] [308/435] keeping polkit-libs-0.120-6.oe2203 -[ 3s] [309/435] keeping gnutls-3.7.2-4.oe2203 -[ 3s] [310/435] keeping pesign-0.113-7.oe2203 -[ 3s] [311/435] keeping rpm-libs-4.17.0-16.oe2203 -[ 3s] [312/435] keeping util-linux-2.37.2-9.oe2203 -[ 3s] [313/435] keeping systemd-249-39.oe2203 -[ 3s] [314/435] keeping dbus-common-1:1.12.20-8.oe2203 -[ 3s] [315/435] keeping dbus-tools-1:1.12.20-8.oe2203 -[ 3s] [316/435] keeping avahi-libs-0.8-13.oe2203 -[ 3s] [317/435] keeping libgusb-0.3.10-1.oe2203 -[ 3s] [318/435] keeping util-linux-devel-2.37.2-9.oe2203 -[ 3s] [319/435] keeping NetworkManager-libnm-1:1.32.12-12.oe2203 -[ 3s] [320/435] keeping dbus-devel-1:1.12.20-8.oe2203 -[ 3s] [321/435] keeping sysprof-cli-3.38.1-2.oe2203 -[ 3s] [322/435] keeping digest-list-tools-0.3.95-9.oe2203 -[ 3s] [323/435] keeping gpm-1.20.7-26.oe2203 -[ 3s] [324/435] keeping openEuler-rpm-config-30-26.oe2203 -[ 3s] [325/435] keeping policycoreutils-3.3-2.oe2203 -[ 3s] [326/435] keeping gpm-devel-1.20.7-26.oe2203 -[ 3s] [327/435] keeping colord-libs-1.4.5-4.oe2203 -[ 3s] [328/435] keeping cups-libs-1:2.4.0-4.oe2203 -[ 3s] [329/435] keeping selinux-policy-35.5-13.oe2203 -[ 3s] [330/435] keeping libproxy-0.4.17-1.oe2203 -[ 3s] [331/435] keeping python3-devel-3.9.9-15.oe2203 -[ 3s] [332/435] keeping dbus-daemon-1:1.12.20-8.oe2203 -[ 3s] [333/435] keeping glib2-devel-2.68.1-13.oe2203 -[ 3s] [334/435] keeping rpm-build-4.17.0-16.oe2203 -[ 3s] [335/435] keeping perl-4:5.34.0-6.oe2203 -[ 3s] [336/435] keeping dbus-1:1.12.20-8.oe2203 -[ 3s] [337/435] keeping perl-B-Debug-1.26-6.oe2203 -[ 3s] [338/435] keeping perl-Env-1.04-398.oe2203 -[ 3s] [339/435] keeping perl-Text-Tabs+Wrap-2021.0814-2.oe2203 -[ 3s] [340/435] keeping atk-devel-2.36.0-2.oe2203 -[ 3s] [341/435] keeping perl-Devel-PPPort-3.63-2.oe2203 -[ 3s] [342/435] keeping perl-Algorithm-Diff-1:1.201-2.oe2203 -[ 3s] [343/435] keeping perl-Params-Check-1:0.38-419.oe2203 -[ 3s] [344/435] keeping perl-Term-Cap-1.17-511.oe2203 -[ 3s] [345/435] keeping perl-Text-Balanced-2.06-1.oe2203 -[ 3s] [346/435] keeping perl-generators-1.10-11.oe2203 -[ 3s] [347/435] keeping perl-threads-2:2.26-2.oe2203 -[ 3s] [348/435] keeping polkit-devel-0.120-6.oe2203 -[ 3s] [349/435] keeping selinux-policy-targeted-35.5-13.oe2203 -[ 3s] [350/435] keeping perl-CPAN-Meta-YAML-0.018-421.oe2203 -[ 3s] [351/435] keeping perl-Config-Perl-V-0.33-2.oe2203 -[ 3s] [352/435] keeping perl-Filter-2:1.64-1.oe2203 -[ 3s] [353/435] keeping perl-IPC-SysV-2.09-2.oe2203 -[ 3s] [354/435] keeping perl-Locale-Maketext-1:1.29-2.oe2203 -[ 3s] [355/435] keeping perl-constant-1.33-422.oe2203 -[ 3s] [356/435] keeping glib-networking-2.68.1-3.oe2203 -[ 3s] [357/435] keeping pesign-obs-integration-10.1-2.oe2203 -[ 3s] [358/435] keeping perl-Socket-4:2.032-2.oe2203 -[ 3s] [359/435] keeping perl-Storable-1:3.25-2.oe2203 -[ 3s] [360/435] keeping gcc_secure-1.0-0.11.oe2203 -[ 3s] [361/435] keeping gdk-pixbuf2-devel-2.42.6-4.oe2203 -[ 3s] [362/435] keeping cairo-devel-1.17.4-2.oe2203 -[ 3s] [363/435] keeping harfbuzz-devel-2.8.2-3.oe2203 -[ 3s] [364/435] keeping cairo-gobject-devel-1.17.4-2.oe2203 -[ 3s] [365/435] keeping perl-Filter-Simple-1:0.94-1.oe2203 -[ 3s] [366/435] keeping perl-IO-Socket-IP-0.41-3.oe2203 -[ 3s] [367/435] keeping perl-Text-Diff-1.45-8.oe2203 -[ 3s] [368/435] keeping perl-Time-Local-2:1.300-2.oe2203 -[ 3s] [369/435] keeping perl-version-8:0.99.29-2.oe2203 -[ 3s] [370/435] keeping perl-IPC-System-Simple-1.30-3.oe2203 -[ 3s] [371/435] keeping perl-threads-shared-1.62-2.oe2203 -[ 3s] [372/435] keeping perl-Compress-Raw-Bzip2-2.201-1.oe2203 -[ 3s] [373/435] keeping perl-Compress-Raw-Zlib-1:2.202-1.oe2203 -[ 3s] [374/435] keeping perl-Locale-Codes-3.68-2.oe2203 -[ 3s] [375/435] keeping perl-PathTools-3.80-2.oe2203 -[ 3s] [376/435] keeping perl-Sys-Syslog-0.36-2.oe2203 -[ 3s] [377/435] keeping perl-Math-BigInt-1:1.9998.27-2.oe2203 -[ 3s] [378/435] keeping at-spi2-core-2.42.0-2.oe2203 -[ 3s] [379/435] keeping libsoup-2.74.2-2.oe2203 -[ 3s] [380/435] keeping perl-Data-Dumper-2.183-2.oe2203 -[ 3s] [381/435] keeping perl-Encode-4:3.16-2.oe2203 -[ 3s] [382/435] keeping pango-devel-1.50.7-1.oe2203 -[ 3s] [383/435] keeping perl-Module-Load-1:0.36-2.oe2203 -[ 3s] [384/435] keeping perl-Thread-Queue-3.13-4.oe2203 -[ 3s] [385/435] keeping perl-experimental-0.025-2.oe2203 -[ 3s] [386/435] keeping at-spi2-atk-2.38.0-2.oe2203 -[ 3s] [387/435] keeping perl-File-Path-2.18-2.oe2203 -[ 3s] [388/435] keeping perl-Module-Metadata-1.000037-2.oe2203 -[ 3s] [389/435] keeping perl-CPAN-Meta-Requirements-2.140-420.oe2203 -[ 3s] [390/435] keeping perl-Encode-devel-4:3.16-2.oe2203 -[ 3s] [391/435] keeping perl-HTTP-Tiny-0.080-1.oe2203 -[ 3s] [392/435] keeping perl-Math-BigInt-FastCalc-0.5012-3.oe2203 -[ 3s] [393/435] keeping at-spi2-core-devel-2.42.0-2.oe2203 -[ 3s] [394/435] keeping perl-Math-BigRat-0.2620-2.oe2203 -[ 3s] [395/435] keeping perl-Unicode-Collate-1.31-2.oe2203 -[ 3s] [396/435] keeping perl-autodie-2.34-3.oe2203 -[ 3s] [397/435] keeping perl-libnet-3.14-1.oe2203 -[ 3s] [398/435] keeping perl-podlators-1:4.14-2.oe2203 -[ 3s] [399/435] keeping perl-ExtUtils-Command-1:7.62-2.oe2203 -[ 3s] [400/435] keeping at-spi2-atk-devel-2.38.0-2.oe2203 -[ 3s] [401/435] keeping perl-ExtUtils-Manifest-1:1.73-2.oe2203 -[ 3s] [402/435] keeping perl-bignum-0.63-2.oe2203 -[ 3s] [403/435] keeping perl-File-Temp-1:0.2311-3.oe2203 -[ 3s] [404/435] keeping gtk3-3.24.30-6.oe2203 -[ 3s] [405/435] keeping libdazzle-3.38.0-1.oe2203 -[ 3s] [406/435] keeping perl-Test-Simple-2:1.302188-2.oe2203 -[ 3s] [407/435] keeping perl-Pod-Perldoc-1:3.28-5.oe2203 -[ 3s] [408/435] keeping libappstream-glib-0.7.14-4.oe2203 -[ 3s] [409/435] keeping gtk3-devel-3.24.30-6.oe2203 -[ 3s] [410/435] keeping libdazzle-devel-3.38.0-1.oe2203 -[ 3s] [411/435] keeping libsysprof-ui-3.38.1-2.oe2203 -[ 3s] [412/435] keeping perl-Pod-Usage-4:2.03-2.oe2203 -[ 3s] [413/435] keeping sysprof-3.38.1-2.oe2203 -[ 3s] [414/435] keeping perl-Getopt-Long-1:2.52-2.oe2203 -[ 3s] [415/435] keeping perl-ExtUtils-ParseXS-2:3.35-2.oe2203 -[ 3s] [416/435] keeping perl-Module-CoreList-1:5.20211020-2.oe2203 -[ 3s] [417/435] keeping sysprof-devel-3.38.1-2.oe2203 -[ 3s] [418/435] keeping perl-Digest-SHA-1:6.02-8.oe2203 -[ 3s] [419/435] keeping perl-Pod-Parser-1.63-399.oe2203 -[ 3s] [420/435] keeping perl-Pod-Simple-1:3.43-2.oe2203 -[ 3s] [421/435] keeping perl-Test-Harness-2:3.44-1.oe2203 -[ 3s] [422/435] keeping perl-IO-Compress-2.201-1.oe2203 -[ 3s] [423/435] keeping perl-JSON-PP-1:4.12-1.oe2203 -[ 3s] [424/435] keeping autoconf-2.71-3.oe2203 -[ 3s] [425/435] keeping perl-Pod-Checker-4:1.74-1.oe2203 -[ 3s] [426/435] keeping perl-CPAN-Meta-2.150010-420.oe2203 -[ 3s] [427/435] keeping perl-Module-Load-Conditional-0.74-2.oe2203 -[ 3s] [428/435] keeping perl-Archive-Tar-2.40-2.oe2203 -[ 3s] [429/435] keeping automake-1.16.5-4.oe2203 -[ 3s] [430/435] keeping perl-ExtUtils-MakeMaker-1:7.62-2.oe2203 -[ 3s] [431/435] keeping libtool-2.4.6-35.oe2203 -[ 3s] [432/435] keeping perl-ExtUtils-Install-2.20-2.oe2203 -[ 3s] [433/435] keeping perl-IPC-Cmd-2:1.04-4.oe2203 -[ 3s] [434/435] keeping perl-File-Fetch-1.04-1.oe2203 -[ 3s] [435/435] keeping perl-devel-4:5.34.0-6.oe2203 -[ 3s] removing nis flags from /data/wangjiang/root_1/etc/nsswitch.conf... -[ 3s] now finalizing build dir... -[ 3s] initializing rpm db... -[ 3s] /etc/profile.d/system-info.sh: line 55: ps: command not found -[ 3s] Warning: spec file parser line 122: can't expand %(...) -[ 3s] Warning: spec file parser line 148: can't expand %(...) -[ 3s] Warning: spec file parser line 169: can't expand %(...) -[ 3s] Warning: spec file parser line 170: can't expand %(...) -[ 3s] ----------------------------------------------------------------- -[ 3s] ----- building vim.spec (user abuild) -[ 3s] ----------------------------------------------------------------- -[ 3s] ----------------------------------------------------------------- -[ 3s] /etc/profile.d/system-info.sh: line 55: ps: command not found -[ 3s] + exec rpmbuild -ba --define '_srcdefattr (-,root,root)' --nosignature /home/abuild/rpmbuild/SOURCES/vim.spec -[ 4s] sh: line 1: --version: command not found -[ 4s] sh: line 1: --version: command not found -[ 4s] setting SOURCE_DATE_EPOCH=1667433600 -[ 4s] Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.qSrLW9 -[ 4s] + umask 022 -[ 4s] + cd /home/abuild/rpmbuild/BUILD -[ 4s] + cd /home/abuild/rpmbuild/BUILD -[ 4s] + rm -rf vim90 -[ 4s] + /usr/bin/bzip2 -dc /home/abuild/rpmbuild/SOURCES/vim-9.0.tar.bz2 -[ 4s] + /usr/bin/tar -xof - -[ 6s] + STATUS=0 -[ 6s] + '[' 0 -ne 0 ']' -[ 6s] + /usr/bin/bzip2 -dc /home/abuild/rpmbuild/SOURCES/vim-9.0.tar.bz2 -[ 6s] + /usr/bin/tar -xof - -[ 8s] + STATUS=0 -[ 8s] + '[' 0 -ne 0 ']' -[ 8s] + cd vim90 -[ 8s] + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-7.0-fixkeys.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-7.4-specsyntax.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-7.4-fstabsyntax.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-7.4-globalsyntax.patch -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-8.0-copy-paste.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/vim-python3-tests.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2257.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2264.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2284.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2285.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2286.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2287.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2288.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-patch-9.0.0022-spell-test-fails.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2289.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2304.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2343.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2344.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2345.patch -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-patch-9.0.0054-compiler-warning-for-size_t-to-int-co.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2522.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2598.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2571.patch -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2580.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2581.patch -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2819.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2816.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2817.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2845.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2849.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2862.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2874.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2889.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2923.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2946.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2980.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-2982.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3016.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3037.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3099.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3134.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3153.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3234.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3235.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3256.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3296.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3352.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-spell-test-fails-because-error-message-changed.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3278.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3297.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-9.0.0581-adding-a-character-for-incsearch-fails-at-end-of-line.patch -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3324.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/backport-CVE-2022-3705.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + /usr/bin/cat /home/abuild/rpmbuild/SOURCES/bugfix-rm-modify-info-version.patch -[ 8s] + /usr/bin/patch -p1 -s --fuzz=0 --no-backup-if-mismatch -f -[ 8s] + rm -rf src/testdir/test_channel.py src/testdir/test_channel.vim -[ 8s] + RPM_EC=0 -[ 8s] ++ jobs -p -[ 8s] + exit 0 -[ 8s] Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.qdbnXh -[ 8s] + umask 022 -[ 8s] + cd /home/abuild/rpmbuild/BUILD -[ 8s] + cd vim90 -[ 8s] + export 'CFLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 8s] + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 8s] + export 'CXXFLAGS=-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 8s] + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 8s] + sed -i s/nawk/awk/g runtime/tools/mve.awk -[ 8s] + cd src -[ 8s] + autoconf -[ 9s] configure.ac:15: warning: The macro `AC_PROG_CC_C99' is obsolete. -[ 9s] configure.ac:15: You should run autoupdate. -[ 9s] ./lib/autoconf/c.m4:1659: AC_PROG_CC_C99 is expanded from... -[ 9s] configure.ac:15: the top level -[ 9s] configure.ac:17: warning: The macro `AC_PROGRAM_EGREP' is obsolete. -[ 9s] configure.ac:17: You should run autoupdate. -[ 9s] ./lib/autoconf/oldnames.m4:42: AC_PROGRAM_EGREP is expanded from... -[ 9s] configure.ac:17: the top level -[ 9s] configure.ac:19: warning: The macro `AC_ISC_POSIX' is obsolete. -[ 9s] configure.ac:19: You should run autoupdate. -[ 9s] ./lib/autoconf/specific.m4:550: AC_ISC_POSIX is expanded from... -[ 9s] configure.ac:19: the top level -[ 9s] configure.ac:30: warning: The macro `AC_HEADER_STDC' is obsolete. -[ 9s] configure.ac:30: You should run autoupdate. -[ 9s] ./lib/autoconf/headers.m4:704: AC_HEADER_STDC is expanded from... -[ 9s] configure.ac:30: the top level -[ 9s] configure.ac:3341: warning: The macro `AC_HEADER_TIME' is obsolete. -[ 9s] configure.ac:3341: You should run autoupdate. -[ 9s] ./lib/autoconf/headers.m4:743: AC_HEADER_TIME is expanded from... -[ 9s] configure.ac:3341: the top level -[ 9s] + cp -f os_unix.h os_unix.h.bak -[ 9s] + sed -i s/vimrc/virc/ os_unix.h -[ 9s] + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 9s] + export CFLAGS -[ 9s] + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 9s] + export CXXFLAGS -[ 9s] + FFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 9s] + export FFLAGS -[ 9s] + FCFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 9s] + export FCFLAGS -[ 9s] + LDFLAGS='-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' -[ 9s] + export LDFLAGS -[ 9s] + '[' 1 = 1 ']' -[ 9s] +++ dirname ./configure -[ 9s] ++ find . -name config.guess -o -name config.sub -[ 9s] + '[' 1 = 1 ']' -[ 9s] + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' ']' -[ 9s] ++ find . -name ltmain.sh -[ 9s] + ./configure --build=aarch64-openEuler-linux-gnu --host=aarch64-openEuler-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-features=small --with-x=no --enable-multibyte --disable-netbeans --disable-pythoninterp --disable-perlinterp --disable-tclinterp --with-tlib=ncurses --enable-gui=no --disable-gpm --exec-prefix=/ --enable-fail-if-missing --with-python3-config-dir=/usr/lib64/python3.9/config-3.9-aarch64-linux-gnu --enable-selinux -[ 9s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 9s] checking whether make sets $(MAKE)... yes -[ 9s] checking for aarch64-openEuler-linux-gnu-gcc... no -[ 9s] checking for gcc... gcc -[ 9s] checking whether the C compiler works... yes -[ 9s] checking for C compiler default output file name... a.out -[ 9s] checking for suffix of executables... -[ 9s] checking whether we are cross compiling... no -[ 9s] checking for suffix of object files... o -[ 9s] checking whether the compiler supports GNU C... yes -[ 9s] checking whether gcc accepts -g... yes -[ 9s] checking for gcc option to enable C11 features... none needed -[ 9s] checking how to run the C preprocessor... gcc -E -[ 9s] checking for grep that handles long lines and -e... /usr/bin/grep -[ 9s] checking for egrep... /usr/bin/grep -E -[ 9s] checking for fgrep... /usr/bin/grep -F -[ 9s] checking for library containing strerror... none required -[ 9s] checking for gawk... gawk -[ 9s] checking for strip... strip -[ 9s] checking for stdio.h... yes -[ 10s] checking for stdlib.h... yes -[ 10s] checking for string.h... yes -[ 10s] checking for inttypes.h... yes -[ 10s] checking for stdint.h... yes -[ 10s] checking for strings.h... yes -[ 10s] checking for sys/stat.h... yes -[ 10s] checking for sys/types.h... yes -[ 10s] checking for unistd.h... yes -[ 10s] checking for sys/time.h... yes -[ 10s] checking for sys/select.h... yes -[ 10s] checking for sys/socket.h... yes -[ 10s] checking for egrep... (cached) /usr/bin/grep -E -[ 10s] checking for sys/wait.h that is POSIX.1 compatible... yes -[ 10s] checking for unsigned long long int... yes -[ 10s] checking for long long int... yes -[ 10s] checking if the compiler supports trailing commas... yes -[ 10s] checking if the compiler supports C++ comments... yes -[ 10s] checking --enable-fail-if-missing argument... yes -[ 10s] checking for clang version... N/A -[ 10s] checking for buggy tools... - sh is 'GNU bash, version 5.1.8(1)-release (aarch64-openEuler-linux-gnu) -[ 10s] Copyright (C) 2020 Free Software Foundation, Inc. -[ 10s] License GPLv3+: GNU GPL version 3 or later -[ 10s] -[ 10s] This is free software; you are free to change and redistribute it. -[ 10s] There is NO WARRANTY, to the extent permitted by law.' - probably OK. -[ 10s] checking uname... Linux -[ 10s] checking uname -r... 4.19.90-2003.4.0.0036.oe1.aarch64 -[ 10s] checking uname -m... aarch64 -[ 10s] checking for Haiku... no -[ 10s] checking for QNX... no -[ 10s] checking for Darwin (Mac OS X)... no -[ 10s] checking for AvailabilityMacros.h... no -[ 10s] checking --with-local-dir argument... Defaulting to /usr/local -[ 10s] checking --with-vim-name argument... Defaulting to vim -[ 10s] checking --with-ex-name argument... Defaulting to ex -[ 10s] checking --with-view-name argument... Defaulting to view -[ 10s] checking --with-global-runtime argument... no -[ 10s] checking --with-modified-by argument... no -[ 10s] checking if character set is EBCDIC... no -[ 10s] checking --disable-smack argument... no -[ 10s] checking for linux/xattr.h... yes -[ 10s] checking for attr/xattr.h... yes -[ 10s] checking for XATTR_NAME_SMACKEXEC in linux/xattr.h... no -[ 10s] checking --disable-selinux argument... no -[ 11s] checking for is_selinux_enabled in -lselinux... yes -[ 11s] checking for selinux/selinux.h... yes -[ 11s] checking --with-features argument... small -[ 11s] checking --with-compiledby argument... no -[ 11s] checking --disable-xsmp argument... no -[ 11s] checking --disable-xsmp-interact argument... no -[ 11s] checking diff feature... disabled in small version -[ 11s] checking --enable-luainterp argument... no -[ 11s] checking --enable-mzschemeinterp argument... no -[ 11s] checking --enable-perlinterp argument... no -[ 11s] checking --enable-pythoninterp argument... no -[ 11s] checking --enable-python3interp argument... no -[ 11s] checking --enable-tclinterp argument... no -[ 11s] checking --enable-rubyinterp argument... no -[ 11s] checking --enable-cscope argument... no -[ 11s] checking --disable-netbeans argument... yes -[ 11s] checking --disable-channel argument... cannot use channels with tiny or small features -[ 11s] checking --enable-terminal argument... defaulting to no -[ 11s] checking --enable-autoservername argument... no -[ 11s] checking --enable-multibyte argument... yes -[ 11s] checking --disable-rightleft argument... no -[ 11s] checking --disable-arabic argument... no -[ 11s] checking --enable-xim argument... defaulting to auto -[ 11s] checking --enable-fontset argument... no -[ 11s] defaulting to: don't HAVE_X11 -[ 11s] checking --enable-gui argument... no GUI support -[ 11s] checking for aarch64-openEuler-linux-gnu-pkg-config... /usr/bin/aarch64-openEuler-linux-gnu-pkg-config -[ 11s] checking for X11/SM/SMlib.h... yes -[ 11s] checking for /proc link to executable... /proc/self/exe -[ 11s] checking for CYGWIN or MSYS environment... no -[ 11s] checking whether toupper is broken... no -[ 11s] checking whether __DATE__ and __TIME__ work... yes -[ 11s] checking whether __attribute__((unused)) is allowed... yes -[ 11s] checking for elf.h... yes -[ 11s] checking for main in -lelf... no -[ 11s] checking for dirent.h that defines DIR... yes -[ 11s] checking for library containing opendir... none required -[ 11s] checking for stdint.h... (cached) yes -[ 11s] checking for stdlib.h... (cached) yes -[ 11s] checking for string.h... (cached) yes -[ 11s] checking for sys/select.h... (cached) yes -[ 11s] checking for sys/utsname.h... yes -[ 11s] checking for termcap.h... yes -[ 11s] checking for fcntl.h... yes -[ 11s] checking for sgtty.h... yes -[ 11s] checking for sys/ioctl.h... yes -[ 11s] checking for sys/time.h... (cached) yes -[ 11s] checking for sys/types.h... (cached) yes -[ 11s] checking for termio.h... yes -[ 11s] checking for iconv.h... yes -[ 11s] checking for inttypes.h... (cached) yes -[ 11s] checking for langinfo.h... yes -[ 11s] checking for math.h... yes -[ 11s] checking for unistd.h... (cached) yes -[ 11s] checking for stropts.h... no -[ 11s] checking for errno.h... yes -[ 12s] checking for sys/resource.h... yes -[ 12s] checking for sys/systeminfo.h... no -[ 12s] checking for locale.h... yes -[ 12s] checking for sys/stream.h... no -[ 12s] checking for termios.h... yes -[ 12s] checking for libc.h... no -[ 12s] checking for sys/statfs.h... yes -[ 12s] checking for poll.h... yes -[ 12s] checking for sys/poll.h... yes -[ 12s] checking for pwd.h... yes -[ 12s] checking for utime.h... yes -[ 12s] checking for sys/param.h... yes -[ 12s] checking for sys/ptms.h... no -[ 12s] checking for libintl.h... yes -[ 12s] checking for libgen.h... yes -[ 12s] checking for util/debug.h... no -[ 12s] checking for util/msg18n.h... no -[ 12s] checking for frame.h... no -[ 12s] checking for sys/acl.h... yes -[ 12s] checking for sys/access.h... no -[ 13s] checking for sys/sysinfo.h... yes -[ 13s] checking for wchar.h... yes -[ 13s] checking for wctype.h... yes -[ 13s] checking for sys/ptem.h... no -[ 13s] checking for sys/sysctl.h... no -[ 13s] checking for pthread_np.h... no -[ 13s] checking for strings.h... (cached) yes -[ 13s] checking if strings.h can be included after string.h... yes -[ 13s] checking whether gcc needs -traditional... no -[ 13s] checking for an ANSI C-conforming const... yes -[ 13s] checking for working volatile... yes -[ 13s] checking for mode_t... yes -[ 13s] checking for off_t... yes -[ 13s] checking for pid_t... yes -[ 13s] checking for size_t... yes -[ 13s] checking for uid_t in sys/types.h... yes -[ 13s] checking for uint32_t... yes -[ 14s] checking for ino_t... yes -[ 14s] checking for dev_t... yes -[ 14s] checking whether byte ordering is bigendian... no -[ 14s] checking for inline... inline -[ 14s] checking for rlim_t... yes -[ 14s] checking for stack_t... yes -[ 14s] checking whether stack_t has an ss_base field... no -[ 14s] checking --with-tlib argument... ncurses -[ 14s] checking for linking with ncurses library... OK -[ 14s] checking for tgetent()... yes -[ 14s] checking whether we talk terminfo... yes -[ 14s] checking what tgetent() returns for an unknown terminal... zero -[ 14s] checking whether termcap.h contains ospeed... yes -[ 14s] checking whether termcap.h contains UP, BC and PC... yes -[ 14s] checking whether tputs() uses outfuntype... no -[ 14s] checking whether del_curterm() can be used... yes -[ 14s] checking whether sys/select.h and sys/time.h may both be included... yes -[ 14s] checking for /dev/ptc... no -[ 14s] checking for SVR4 ptys... yes -[ 14s] checking for ptyranges... don't know -[ 14s] checking for struct sigcontext... yes -[ 15s] checking getcwd implementation is broken... no -[ 15s] checking for fchdir... yes -[ 15s] checking for fchown... yes -[ 15s] checking for fchmod... yes -[ 15s] checking for fsync... yes -[ 15s] checking for getcwd... yes -[ 15s] checking for getpseudotty... no -[ 15s] checking for getpwent... yes -[ 15s] checking for getpwnam... yes -[ 15s] checking for getpwuid... yes -[ 15s] checking for getrlimit... yes -[ 15s] checking for gettimeofday... yes -[ 15s] checking for localtime_r... yes -[ 15s] checking for lstat... yes -[ 15s] checking for memset... yes -[ 15s] checking for mkdtemp... yes -[ 15s] checking for nanosleep... yes -[ 15s] checking for opendir... yes -[ 16s] checking for putenv... yes -[ 16s] checking for qsort... yes -[ 16s] checking for readlink... yes -[ 16s] checking for select... yes -[ 16s] checking for setenv... yes -[ 16s] checking for getpgid... yes -[ 16s] checking for setpgid... yes -[ 16s] checking for setsid... yes -[ 16s] checking for sigaltstack... yes -[ 16s] checking for sigstack... yes -[ 16s] checking for sigset... yes -[ 16s] checking for sigsetjmp... no -[ 16s] checking for sigaction... yes -[ 16s] checking for sigprocmask... yes -[ 16s] checking for sigvec... no -[ 16s] checking for strcasecmp... yes -[ 16s] checking for strcoll... yes -[ 16s] checking for strerror... yes -[ 16s] checking for strftime... yes -[ 17s] checking for stricmp... no -[ 17s] checking for strncasecmp... yes -[ 17s] checking for strnicmp... no -[ 17s] checking for strpbrk... yes -[ 17s] checking for strptime... yes -[ 17s] checking for strtol... yes -[ 17s] checking for tgetent... yes -[ 17s] checking for towlower... yes -[ 17s] checking for towupper... yes -[ 17s] checking for iswupper... yes -[ 17s] checking for tzset... yes -[ 17s] checking for usleep... yes -[ 17s] checking for utime... yes -[ 17s] checking for utimes... yes -[ 17s] checking for mblen... yes -[ 17s] checking for ftruncate... yes -[ 17s] checking for unsetenv... yes -[ 17s] checking for posix_openpt... yes -[ 18s] checking types of arguments for select... int,fd_set *,struct timeval * -[ 18s] checking for _LARGEFILE_SOURCE value needed for large files... no -[ 18s] checking for special C compiler options needed for large files... no -[ 18s] checking for _FILE_OFFSET_BITS value needed for large files... no -[ 18s] checking --enable-canberra argument... Defaulting to no -[ 18s] checking --enable-libsodium argument... Defaulting to no -[ 18s] checking for st_blksize... yes -[ 18s] checking for timer_create... yes; with -lrt -[ 18s] checking whether stat() ignores a trailing slash... no -[ 18s] checking for nanoseconds field of struct stat... st_mtim.tv_nsec -[ 18s] checking for iconv_open()... yes -[ 18s] checking for nl_langinfo(CODESET)... yes -[ 18s] checking for strtod in -lm... yes -[ 18s] checking for strtod() and other floating point functions... yes -[ 18s] checking for isinf()... yes -[ 18s] checking for isnan()... yes -[ 18s] checking --disable-acl argument... no -[ 18s] checking for acl_get_file in -lposix1e... no -[ 18s] checking for acl_get_file in -lacl... yes -[ 19s] checking for fgetxattr in -lattr... yes -[ 19s] checking for POSIX ACL support... yes -[ 19s] checking for acl_get in -lsec... no -[ 19s] checking for Solaris ACL support... no -[ 19s] checking for AIX ACL support... no -[ 19s] checking --enable-gpm argument... no -[ 19s] checking --disable-sysmouse argument... no -[ 19s] checking for sysmouse... no -[ 19s] checking for FD_CLOEXEC... yes -[ 19s] checking for rename... yes -[ 19s] checking for dirfd... yes -[ 19s] checking for flock... yes -[ 19s] checking for sysctl... not usable -[ 19s] checking for sysinfo... yes -[ 19s] checking for sysinfo.mem_unit... yes -[ 19s] checking for sysinfo.uptime... yes -[ 19s] checking for sysconf... yes -[ 19s] checking for _SC_SIGSTKSZ via sysconf()... yes -[ 19s] checking size of int... 4 -[ 19s] checking size of long... 8 -[ 19s] checking size of time_t... 8 -[ 20s] checking size of off_t... 8 -[ 20s] checking uint32_t is 32 bits... ok -[ 20s] checking whether memmove handles overlaps... yes -[ 20s] checking for _xpg4_setrunelocale in -lxpg4... no -[ 20s] checking how to create tags... ctags -[ 20s] checking how to run man with a section nr... man -[ 20s] checking --disable-nls argument... no -[ 20s] checking for msgfmt... msgfmt -[ 20s] checking for NLS... gettext() works -[ 20s] checking for dlfcn.h... yes -[ 20s] checking for dlopen()... yes -[ 20s] checking for dlsym()... yes -[ 20s] checking for setjmp.h... yes -[ 20s] checking for GCC 3 or later... yes -[ 20s] checking whether we need -D_FORTIFY_SOURCE=1... yes -[ 20s] checking whether we need to force -D_FILE_OFFSET_BITS=64... yes -[ 20s] checking linker --as-needed support... yes -[ 20s] configure: creating ./config.status -[ 20s] config.status: creating auto/config.mk -[ 20s] config.status: creating auto/config.h -[ 20s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 20s] + /usr/bin/make -O -j4 V=1 VERBOSE=1 VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/vim90 -[ 20s] cd xxd; CC="gcc" CFLAGS=" -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1" LDFLAGS="-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed" \ -[ 20s] /usr/bin/make -f Makefile -[ 20s] /bin/sh install-sh -c -d objects -[ 20s] touch objects/.dirstamp -[ 20s] creating auto/pathdef.c -[ 20s] /bin/sh: line 1: hostname: command not found -[ 20s] CC="gcc -Iproto -DHAVE_CONFIG_H " srcdir=. sh ./osdef.sh -[ 21s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/alloc.o alloc.c -[ 21s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arabic.o arabic.c -[ 21s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 21s] gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -DUNIX -o xxd xxd.c -[ 21s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 21s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/beval.o beval.c -[ 21s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arglist.o arglist.c -[ 21s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blob.o blob.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blowfish.o blowfish.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/autocmd.o autocmd.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/change.o change.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clientserver.o clientserver.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clipboard.o clipboard.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/buffer.o buffer.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdhist.o cmdhist.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt.o crypt.c -[ 22s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt_zip.o crypt_zip.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/debugger.o debugger.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/dict.o dict.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/diff.o diff.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/digraph.o digraph.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdexpand.o cmdexpand.c -[ 23s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cindent.o cindent.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/eval.o eval.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawline.o drawline.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawscreen.o drawscreen.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalbuffer.o evalbuffer.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalfunc.o evalfunc.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalwindow.o evalwindow.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalvars.o evalvars.c -[ 24s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds2.o ex_cmds2.c -[ 25s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/edit.o edit.c -[ 25s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_eval.o ex_eval.c -[ 26s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_getln.o ex_getln.c -[ 26s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds.o ex_cmds.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_docmd.o ex_docmd.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/findfile.o findfile.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/float.o float.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/filepath.o filepath.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fold.o fold.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_xim.o gui_xim.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hardcopy.o hardcopy.c -[ 27s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fileio.o fileio.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hashtab.o hashtab.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_cscope.o if_cscope.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/help.o help.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/getchar.o getchar.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_xcmdsrv.o if_xcmdsrv.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/highlight.o highlight.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/list.o list.c -[ 28s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/locale.o locale.c -[ 29s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/indent.o indent.c -[ 29s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/match.o match.c -[ 29s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mark.o mark.c -[ 29s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/map.o map.c -[ 30s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/insexpand.o insexpand.c -[ 30s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/menu.o menu.c -[ 30s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc2.o misc2.c -[ 30s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mbyte.o mbyte.c -[ 31s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memline.o memline.c -[ 31s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc1.o misc1.c -[ 31s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/move.o move.c -[ 31s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mouse.o mouse.c -[ 33s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/optionstr.o optionstr.c -[ 33s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ops.o ops.c -[ 33s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/normal.o normal.c -[ 33s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pathdef.o auto/pathdef.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupwin.o popupwin.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/option.o option.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupmenu.o popupmenu.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pty.o pty.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/quickfix.o quickfix.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/profiler.o profiler.c -[ 34s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/os_unix.o os_unix.c -[ 34s] os_unix.c: In function 'sig_winch': -[ 34s] os_unix.c:872:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 872 | signal(SIGWINCH, (void (*)())sig_winch); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'sig_tstp': -[ 34s] os_unix.c:884:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 884 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN : SIG_DFL); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:893:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 893 | signal(SIGTSTP, (void (*)())sig_tstp); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'catch_sigint': -[ 34s] os_unix.c:903:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 903 | signal(SIGINT, (void (*)())catch_sigint); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'catch_sigusr1': -[ 34s] os_unix.c:913:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 913 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'catch_sigpwr': -[ 34s] os_unix.c:923:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 923 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'mch_init': -[ 34s] os_unix.c:1367:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1367 | ignore_sigtstp = restricted || SIG_IGN == signal(SIGTSTP, SIG_ERR); -[ 34s] | ^~~~~~~~~~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'set_signals': -[ 34s] os_unix.c:1386:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1386 | signal(SIGWINCH, (void (*)())sig_winch); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1394:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1394 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1401:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1401 | signal(SIGCONT, sigcont_handler); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1407:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1407 | signal(SIGPIPE, SIG_IGN); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1418:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1418 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1425:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1425 | signal(SIGALRM, SIG_IGN); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c:1433:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1433 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'catch_int_signal': -[ 34s] os_unix.c:1457:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1457 | signal(SIGINT, (void (*)())catch_sigint); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'reset_signals': -[ 34s] os_unix.c:1467:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1467 | signal(SIGCONT, SIG_DFL); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'catch_signals': -[ 34s] os_unix.c:1517:6: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 1517 | signal(signal_info[i].sig, -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'may_core_dump': -[ 34s] os_unix.c:3518:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 3518 | signal(deadly_signal, SIG_DFL); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 34s] os_unix.c: In function 'mch_call_shell_fork': -[ 34s] os_unix.c:4817:7: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 34s] 4817 | signal(SIGHUP, SIG_IGN); -[ 34s] | ^~~~~~ -[ 34s] In file included from /usr/include/sys/param.h:28, -[ 34s] from os_unix.h:60, -[ 34s] from vim.h:238, -[ 34s] from os_unix.c:21: -[ 34s] /usr/include/signal.h:367:23: note: declared here -[ 34s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 34s] | ^~~~~~ -[ 35s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/scriptfile.o scriptfile.c -[ 35s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/register.o register.c -[ 35s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/session.o session.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/screen.o screen.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sha256.o sha256.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sound.o sound.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sign.o sign.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellfile.o spellfile.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spell.o spell.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellsuggest.o spellsuggest.c -[ 36s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/search.o search.c -[ 37s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/syntax.o syntax.c -[ 37s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/strings.o strings.c -[ 37s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/terminal.o terminal.c -[ 37s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/testing.o testing.c -[ 38s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/tag.o tag.c -[ 38s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/term.o term.c -[ 38s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textformat.o textformat.c -[ 38s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textprop.o textprop.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textobject.o textobject.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/time.o time.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/typval.o typval.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ui.o ui.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/undo.o undo.c -[ 39s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/userfunc.o userfunc.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9cmds.o vim9cmds.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9compile.o vim9compile.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9execute.o vim9execute.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/usercmd.o usercmd.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9expr.o vim9expr.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9script.o vim9script.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9instr.o vim9instr.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9type.o vim9type.c -[ 40s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/viminfo.o viminfo.c -[ 41s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/charset.o charset.c -[ 41s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/bufwrite.o bufwrite.c -[ 41s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/json.o json.c -[ 42s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memfile.o memfile.c -[ 42s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/main.o main.c -[ 42s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/window.o window.c -[ 43s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/message.o message.c -[ 48s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/regexp.o regexp.c -[ 48s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 48s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 48s] NOTE: build date/time is fixed: Nov 03 2022 00:00:00 -[ 48s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 48s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 48s] gcc -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o vim objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/charset.o objects/json.o objects/main.o objects/memfile.o objects/message.o -lm -lselinux -lncurses -lrt -lacl -lattr -[ 48s] link.sh: Linked fine -[ 48s] + cp vim vim-minimal -[ 48s] + make clean -[ 48s] cd testdir; make -f Makefile clean -[ 48s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 48s] rm -rf *.out *.failed *.res *.rej *.orig XfakeHOME Xdir1 Xfind -[ 48s] rm -f opt_test.vim test.log test_result.log messages -[ 48s] rm -rf test.out X* viminfo test.ok benchmark.out -[ 48s] rm -f valgrind.* -[ 48s] rm -f asan.* -[ 48s] rm -f guidialog guidialogfile -[ 48s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 48s] if test -d po; then \ -[ 48s] cd po; make checkclean; \ -[ 48s] fi -[ 48s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 48s] rm -f *.ck -[ 48s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 48s] rm -f *.o core vim.core vim vim xxd/*.o -[ 48s] rm -rf objects -[ 48s] rm -f xxd/xxd auto/osdef.h auto/pathdef.c auto/if_perl.c auto/gui_gtk_gresources.c auto/gui_gtk_gresources.h auto/os_haiku.rdef -[ 48s] rm -f conftest* *~ auto/link.sed -[ 48s] rm -f testdir/opt_test.vim -[ 48s] rm -f json_test kword_test memfile_test message_test -[ 48s] rm -f runtime pixmaps -[ 48s] rm -f mzscheme_base.c -[ 48s] rm -rf libvterm/.libs libterm/t/.libs libvterm/src/*.o libvterm/src/*.lo libvterm/t/*.o libvterm/t/*.lo libvterm/t/harness libvterm/libvterm.la -[ 48s] if test -d po; then \ -[ 48s] cd po; make prefix=/usr clean; \ -[ 48s] fi -[ 48s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 48s] rm -f *.ck -[ 48s] rm -f core core.* *.old.po *.mo *.pot sjiscorr -[ 48s] rm -f LINGUAS vim.desktop gvim.desktop tmp_*desktop -[ 48s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 48s] + mv os_unix.h.bak os_unix.h -[ 48s] + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 48s] + export CFLAGS -[ 48s] + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 48s] + export CXXFLAGS -[ 48s] + FFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 48s] + export FFLAGS -[ 48s] + FCFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 48s] + export FCFLAGS -[ 48s] + LDFLAGS='-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' -[ 48s] + export LDFLAGS -[ 48s] + '[' 1 = 1 ']' -[ 48s] +++ dirname ./configure -[ 48s] ++ find . -name config.guess -o -name config.sub -[ 48s] + '[' 1 = 1 ']' -[ 48s] + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' ']' -[ 48s] ++ find . -name ltmain.sh -[ 48s] + ./configure --build=aarch64-openEuler-linux-gnu --host=aarch64-openEuler-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-features=huge --enable-python3interp=dynamic --enable-perlinterp=dynamic --disable-tclinterp --with-x=yes --enable-xim --enable-multibyte --with-tlib=ncurses --enable-gtk3-check --enable-gui=gtk3 --enable-cscope --enable-fail-if-missing --with-python3-config-dir=/usr/lib64/python3.9/config-3.9-aarch64-linux-gnu --enable-netbeans --enable-selinux --enable-rubyinterp=dynamic --enable-luainterp=dynamic -[ 48s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 48s] checking whether make sets $(MAKE)... yes -[ 48s] checking for aarch64-openEuler-linux-gnu-gcc... no -[ 48s] checking for gcc... gcc -[ 49s] checking whether the C compiler works... yes -[ 49s] checking for C compiler default output file name... a.out -[ 49s] checking for suffix of executables... -[ 49s] checking whether we are cross compiling... no -[ 49s] checking for suffix of object files... o -[ 49s] checking whether the compiler supports GNU C... yes -[ 49s] checking whether gcc accepts -g... yes -[ 49s] checking for gcc option to enable C11 features... none needed -[ 49s] checking how to run the C preprocessor... gcc -E -[ 49s] checking for grep that handles long lines and -e... /usr/bin/grep -[ 49s] checking for egrep... /usr/bin/grep -E -[ 49s] checking for fgrep... /usr/bin/grep -F -[ 49s] checking for library containing strerror... none required -[ 49s] checking for gawk... gawk -[ 49s] checking for strip... strip -[ 49s] checking for stdio.h... yes -[ 49s] checking for stdlib.h... yes -[ 49s] checking for string.h... yes -[ 49s] checking for inttypes.h... yes -[ 49s] checking for stdint.h... yes -[ 49s] checking for strings.h... yes -[ 49s] checking for sys/stat.h... yes -[ 49s] checking for sys/types.h... yes -[ 49s] checking for unistd.h... yes -[ 50s] checking for sys/time.h... yes -[ 50s] checking for sys/select.h... yes -[ 50s] checking for sys/socket.h... yes -[ 50s] checking for egrep... (cached) /usr/bin/grep -E -[ 50s] checking for sys/wait.h that is POSIX.1 compatible... yes -[ 50s] checking for unsigned long long int... yes -[ 50s] checking for long long int... yes -[ 50s] checking if the compiler supports trailing commas... yes -[ 50s] checking if the compiler supports C++ comments... yes -[ 50s] checking --enable-fail-if-missing argument... yes -[ 50s] checking for clang version... N/A -[ 50s] checking for buggy tools... - sh is 'GNU bash, version 5.1.8(1)-release (aarch64-openEuler-linux-gnu) -[ 50s] Copyright (C) 2020 Free Software Foundation, Inc. -[ 50s] License GPLv3+: GNU GPL version 3 or later -[ 50s] -[ 50s] This is free software; you are free to change and redistribute it. -[ 50s] There is NO WARRANTY, to the extent permitted by law.' - probably OK. -[ 50s] checking uname... Linux -[ 50s] checking uname -r... 4.19.90-2003.4.0.0036.oe1.aarch64 -[ 50s] checking uname -m... aarch64 -[ 50s] checking for Haiku... no -[ 50s] checking for QNX... no -[ 50s] checking for Darwin (Mac OS X)... no -[ 50s] checking for AvailabilityMacros.h... no -[ 50s] checking --with-local-dir argument... Defaulting to /usr/local -[ 50s] checking --with-vim-name argument... Defaulting to vim -[ 50s] checking --with-ex-name argument... Defaulting to ex -[ 50s] checking --with-view-name argument... Defaulting to view -[ 50s] checking --with-global-runtime argument... no -[ 50s] checking --with-modified-by argument... no -[ 50s] checking if character set is EBCDIC... no -[ 50s] checking --disable-smack argument... no -[ 50s] checking for linux/xattr.h... yes -[ 50s] checking for attr/xattr.h... yes -[ 50s] checking for XATTR_NAME_SMACKEXEC in linux/xattr.h... no -[ 50s] checking --disable-selinux argument... no -[ 50s] checking for is_selinux_enabled in -lselinux... yes -[ 50s] checking for selinux/selinux.h... yes -[ 50s] checking --with-features argument... huge -[ 50s] checking --with-compiledby argument... no -[ 50s] checking --disable-xsmp argument... no -[ 50s] checking --disable-xsmp-interact argument... no -[ 50s] checking diff feature... enabled -[ 50s] checking --enable-luainterp argument... dynamic -[ 50s] checking --with-lua-prefix argument... no -[ 50s] checking LUA_PREFIX environment var... not set, default to /usr -[ 50s] checking --with-luajit... no -[ 50s] checking for lua... /usr/bin/lua -[ 50s] checking Lua version... 5.4 -[ 50s] checking if lua.h can be found in /usr/include... yes -[ 50s] checking if liblua*.so* can be found in /usr... yes -[ 50s] checking --enable-mzschemeinterp argument... no -[ 50s] checking --enable-perlinterp argument... dynamic -[ 50s] checking for perl... /usr/bin/perl -[ 50s] checking Perl version... OK -[ 50s] checking if compile and link flags for Perl are sane... yes -[ 50s] checking --enable-pythoninterp argument... no -[ 50s] checking --enable-python3interp argument... dynamic -[ 50s] checking --with-python3-command argument... no -[ 50s] checking for python3... /usr/bin/python3 -[ 50s] checking Python version... 3.9 -[ 51s] checking Python is 3.0 or better... yep -[ 51s] checking Python's abiflags... -[ 51s] checking Python's install prefix... /usr -[ 51s] checking Python's execution prefix... /usr -[ 51s] checking Python's configuration directory... (cached) /usr/lib64/python3.9/config-3.9-aarch64-linux-gnu -[ 51s] checking Python3's dll name... libpython3.9.so.1.0 -[ 51s] checking if -pthread should be used... yes -[ 51s] checking if compile and link flags for Python 3 are sane... yes -[ 51s] checking --enable-tclinterp argument... no -[ 51s] checking --enable-rubyinterp argument... dynamic -[ 51s] checking --with-ruby-command argument... defaulting to ruby -[ 51s] checking for ruby... /usr/bin/ruby -[ 51s] checking Ruby version... OK -[ 51s] checking Ruby rbconfig... RbConfig -[ 51s] checking Ruby header files... /usr/include -[ 51s] `did_you_mean' was not loaded. -[ 51s] `did_you_mean' was not loaded. -[ 51s] `did_you_mean' was not loaded. -[ 51s] `did_you_mean' was not loaded. -[ 51s] `did_you_mean' was not loaded. -[ 51s] `did_you_mean' was not loaded. -[ 51s] 6 -[ 52s] `did_you_mean' was not loaded. -[ 52s] `did_you_mean' was not loaded. -[ 52s] checking --enable-cscope argument... yes -[ 52s] checking --disable-netbeans argument... no -[ 52s] checking --disable-channel argument... no -[ 52s] checking for socket in -lsocket... no -[ 52s] checking whether compiling with IPv6 networking is possible... yes -[ 52s] checking for inet_ntop... yes -[ 52s] checking --enable-terminal argument... defaulting to yes -[ 52s] checking --enable-autoservername argument... no -[ 52s] checking --enable-multibyte argument... yes -[ 52s] checking --disable-rightleft argument... no -[ 52s] checking --disable-arabic argument... no -[ 52s] checking --enable-xim argument... yes -[ 52s] checking --enable-fontset argument... no -[ 52s] checking for xmkmf... no -[ 52s] checking for X... libraries , headers -[ 52s] checking for gethostbyname... yes -[ 52s] checking for connect... yes -[ 52s] checking for remove... yes -[ 52s] checking for shmat... yes -[ 52s] checking for IceConnectionNumber in -lICE... yes -[ 52s] checking if X11 header files can be found... yes -[ 52s] checking for _XdmcpAuthDoIt in -lXdmcp... no -[ 52s] checking for IceOpenConnection in -lICE... yes -[ 52s] checking for XpmCreatePixmapFromData in -lXpm... yes -[ 53s] checking if X11 header files implicitly declare return values... no -[ 53s] checking size of wchar_t is 2 bytes... no -[ 53s] checking --enable-gui argument... GTK+ 3.x GUI support -[ 53s] checking for aarch64-openEuler-linux-gnu-pkg-config... /usr/bin/aarch64-openEuler-linux-gnu-pkg-config -[ 53s] checking --disable-gtktest argument... gtk test enabled -[ 53s] checking for GTK - version >= 3.0.0... yes; found version 3.24.30 -[ 53s] checking version of Gdk-Pixbuf... OK. -[ 53s] checking for glib-compile-resources... /usr/bin/glib-compile-resources -[ 53s] checking glib-compile-resources... usable. -[ 53s] checking --disable-icon-cache-update argument... not set -[ 53s] checking for gtk-update-icon-cache... no -[ 53s] not found in PATH. -[ 53s] checking --disable-desktop-database-update argument... not set -[ 53s] checking for update-desktop-database... /usr/bin/update-desktop-database -[ 53s] checking for X11/SM/SMlib.h... yes -[ 53s] checking for X11/xpm.h... yes -[ 53s] checking for X11/Sunkeysym.h... yes -[ 53s] checking for XIMText in X11/Xlib.h... yes -[ 53s] checking for /proc link to executable... /proc/self/exe -[ 53s] checking for CYGWIN or MSYS environment... no -[ 53s] checking whether toupper is broken... no -[ 53s] checking whether __DATE__ and __TIME__ work... yes -[ 53s] checking whether __attribute__((unused)) is allowed... yes -[ 54s] checking for elf.h... yes -[ 54s] checking for main in -lelf... no -[ 54s] checking for dirent.h that defines DIR... yes -[ 54s] checking for library containing opendir... none required -[ 54s] checking for stdint.h... (cached) yes -[ 54s] checking for stdlib.h... (cached) yes -[ 54s] checking for string.h... (cached) yes -[ 54s] checking for sys/select.h... (cached) yes -[ 54s] checking for sys/utsname.h... yes -[ 54s] checking for termcap.h... yes -[ 54s] checking for fcntl.h... yes -[ 54s] checking for sgtty.h... yes -[ 54s] checking for sys/ioctl.h... yes -[ 54s] checking for sys/time.h... (cached) yes -[ 54s] checking for sys/types.h... (cached) yes -[ 54s] checking for termio.h... yes -[ 54s] checking for iconv.h... yes -[ 54s] checking for inttypes.h... (cached) yes -[ 54s] checking for langinfo.h... yes -[ 54s] checking for math.h... yes -[ 54s] checking for unistd.h... (cached) yes -[ 54s] checking for stropts.h... no -[ 54s] checking for errno.h... yes -[ 54s] checking for sys/resource.h... yes -[ 54s] checking for sys/systeminfo.h... no -[ 54s] checking for locale.h... yes -[ 54s] checking for sys/stream.h... no -[ 55s] checking for termios.h... yes -[ 55s] checking for libc.h... no -[ 55s] checking for sys/statfs.h... yes -[ 55s] checking for poll.h... yes -[ 55s] checking for sys/poll.h... yes -[ 55s] checking for pwd.h... yes -[ 55s] checking for utime.h... yes -[ 55s] checking for sys/param.h... yes -[ 55s] checking for sys/ptms.h... no -[ 55s] checking for libintl.h... yes -[ 55s] checking for libgen.h... yes -[ 55s] checking for util/debug.h... no -[ 55s] checking for util/msg18n.h... no -[ 55s] checking for frame.h... no -[ 55s] checking for sys/acl.h... yes -[ 55s] checking for sys/access.h... no -[ 55s] checking for sys/sysinfo.h... yes -[ 55s] checking for wchar.h... yes -[ 55s] checking for wctype.h... yes -[ 55s] checking for sys/ptem.h... no -[ 56s] checking for sys/sysctl.h... no -[ 56s] checking for pthread_np.h... no -[ 56s] checking for strings.h... (cached) yes -[ 56s] checking if strings.h can be included after string.h... yes -[ 56s] checking whether gcc needs -traditional... no -[ 56s] checking for an ANSI C-conforming const... yes -[ 56s] checking for working volatile... yes -[ 56s] checking for mode_t... yes -[ 56s] checking for off_t... yes -[ 56s] checking for pid_t... yes -[ 56s] checking for size_t... yes -[ 56s] checking for uid_t in sys/types.h... yes -[ 56s] checking for uint32_t... yes -[ 56s] checking for ino_t... yes -[ 56s] checking for dev_t... yes -[ 57s] checking whether byte ordering is bigendian... no -[ 57s] checking for inline... inline -[ 57s] checking for rlim_t... yes -[ 57s] checking for stack_t... yes -[ 57s] checking whether stack_t has an ss_base field... no -[ 57s] checking --with-tlib argument... ncurses -[ 57s] checking for linking with ncurses library... OK -[ 57s] checking for tgetent()... yes -[ 57s] checking whether we talk terminfo... yes -[ 57s] checking what tgetent() returns for an unknown terminal... zero -[ 57s] checking whether termcap.h contains ospeed... yes -[ 57s] checking whether termcap.h contains UP, BC and PC... yes -[ 57s] checking whether tputs() uses outfuntype... no -[ 57s] checking whether del_curterm() can be used... yes -[ 57s] checking whether sys/select.h and sys/time.h may both be included... yes -[ 57s] checking for /dev/ptc... no -[ 57s] checking for SVR4 ptys... yes -[ 57s] checking for ptyranges... don't know -[ 57s] checking for struct sigcontext... yes -[ 57s] checking getcwd implementation is broken... no -[ 57s] checking for fchdir... yes -[ 58s] checking for fchown... yes -[ 58s] checking for fchmod... yes -[ 58s] checking for fsync... yes -[ 58s] checking for getcwd... yes -[ 58s] checking for getpseudotty... no -[ 58s] checking for getpwent... yes -[ 58s] checking for getpwnam... yes -[ 58s] checking for getpwuid... yes -[ 58s] checking for getrlimit... yes -[ 58s] checking for gettimeofday... yes -[ 58s] checking for localtime_r... yes -[ 58s] checking for lstat... yes -[ 58s] checking for memset... yes -[ 58s] checking for mkdtemp... yes -[ 58s] checking for nanosleep... yes -[ 58s] checking for opendir... yes -[ 58s] checking for putenv... yes -[ 58s] checking for qsort... yes -[ 59s] checking for readlink... yes -[ 59s] checking for select... yes -[ 59s] checking for setenv... yes -[ 59s] checking for getpgid... yes -[ 59s] checking for setpgid... yes -[ 59s] checking for setsid... yes -[ 59s] checking for sigaltstack... yes -[ 59s] checking for sigstack... yes -[ 59s] checking for sigset... yes -[ 59s] checking for sigsetjmp... no -[ 59s] checking for sigaction... yes -[ 59s] checking for sigprocmask... yes -[ 59s] checking for sigvec... no -[ 59s] checking for strcasecmp... yes -[ 59s] checking for strcoll... yes -[ 59s] checking for strerror... yes -[ 59s] checking for strftime... yes -[ 59s] checking for stricmp... no -[ 60s] checking for strncasecmp... yes -[ 60s] checking for strnicmp... no -[ 60s] checking for strpbrk... yes -[ 60s] checking for strptime... yes -[ 60s] checking for strtol... yes -[ 60s] checking for tgetent... yes -[ 60s] checking for towlower... yes -[ 60s] checking for towupper... yes -[ 60s] checking for iswupper... yes -[ 60s] checking for tzset... yes -[ 60s] checking for usleep... yes -[ 60s] checking for utime... yes -[ 60s] checking for utimes... yes -[ 60s] checking for mblen... yes -[ 60s] checking for ftruncate... yes -[ 60s] checking for unsetenv... yes -[ 60s] checking for posix_openpt... yes -[ 61s] checking types of arguments for select... int,fd_set *,struct timeval * -[ 61s] checking for _LARGEFILE_SOURCE value needed for large files... no -[ 61s] checking for special C compiler options needed for large files... no -[ 61s] checking for _FILE_OFFSET_BITS value needed for large files... no -[ 61s] checking --enable-canberra argument... Defaulting to yes -[ 61s] checking for libcanberra... no; try installing libcanberra-dev -[ 61s] checking --enable-libsodium argument... Defaulting to yes -[ 61s] checking for libsodium... no; try installing libsodium-dev -[ 61s] checking for st_blksize... yes -[ 61s] checking for timer_create... yes; with -lrt -[ 61s] checking whether stat() ignores a trailing slash... no -[ 61s] checking for nanoseconds field of struct stat... st_mtim.tv_nsec -[ 61s] checking for iconv_open()... yes -[ 61s] checking for nl_langinfo(CODESET)... yes -[ 61s] checking for strtod in -lm... yes -[ 61s] checking for strtod() and other floating point functions... yes -[ 61s] checking for isinf()... yes -[ 61s] checking for isnan()... yes -[ 61s] checking --disable-acl argument... no -[ 62s] checking for acl_get_file in -lposix1e... no -[ 62s] checking for acl_get_file in -lacl... yes -[ 62s] checking for fgetxattr in -lattr... yes -[ 62s] checking for POSIX ACL support... yes -[ 62s] checking for acl_get in -lsec... no -[ 62s] checking for Solaris ACL support... no -[ 62s] checking for AIX ACL support... no -[ 62s] checking for pango_shape_full... yes -[ 62s] checking --enable-gpm argument... yes -[ 62s] checking for gpm... yes -[ 62s] checking --disable-sysmouse argument... no -[ 62s] checking for sysmouse... no -[ 62s] checking for FD_CLOEXEC... yes -[ 62s] checking for rename... yes -[ 62s] checking for dirfd... yes -[ 63s] checking for flock... yes -[ 63s] checking for sysctl... not usable -[ 63s] checking for sysinfo... yes -[ 63s] checking for sysinfo.mem_unit... yes -[ 63s] checking for sysinfo.uptime... yes -[ 63s] checking for sysconf... yes -[ 63s] checking for _SC_SIGSTKSZ via sysconf()... yes -[ 63s] checking size of int... 4 -[ 63s] checking size of long... 8 -[ 63s] checking size of time_t... 8 -[ 63s] checking size of off_t... 8 -[ 63s] checking uint32_t is 32 bits... ok -[ 63s] checking whether memmove handles overlaps... yes -[ 63s] checking whether X_LOCALE needed... no -[ 63s] checking whether Xutf8SetWMProperties() can be used... yes -[ 63s] checking for _xpg4_setrunelocale in -lxpg4... no -[ 63s] checking how to create tags... ctags -[ 63s] checking how to run man with a section nr... man -[ 63s] checking --disable-nls argument... no -[ 63s] checking for msgfmt... msgfmt -[ 64s] checking for NLS... gettext() works -[ 64s] checking for bind_textdomain_codeset... yes -[ 64s] checking for _nl_msg_cat_cntr... yes -[ 64s] checking if msgfmt supports --desktop... yes -[ 64s] checking for dlfcn.h... yes -[ 64s] checking for dlopen()... yes -[ 64s] checking for dlsym()... yes -[ 64s] checking for setjmp.h... yes -[ 64s] checking for GCC 3 or later... yes -[ 64s] checking whether we need -D_FORTIFY_SOURCE=1... yes -[ 64s] checking whether we need to force -D_FILE_OFFSET_BITS=64... yes -[ 64s] checking linker --as-needed support... yes -[ 64s] configure: creating ./config.status -[ 64s] config.status: creating auto/config.mk -[ 64s] config.status: creating auto/config.h -[ 64s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 64s] + /usr/bin/make -O -j4 V=1 VERBOSE=1 VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/vim90 -[ 64s] /bin/sh install-sh -c -d objects -[ 64s] touch objects/.dirstamp -[ 64s] if test -z "/usr/bin/glib-compile-resources"; then touch auto/gui_gtk_gresources.h; else \ -[ 64s] /usr/bin/glib-compile-resources --target=auto/gui_gtk_gresources.h --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml; \ -[ 64s] fi -[ 64s] /usr/bin/glib-compile-resources --target=auto/gui_gtk_gresources.c --sourcedir=../pixmaps --generate --c-name=gui_gtk --manual-register gui_gtk_res.xml -[ 64s] creating auto/pathdef.c -[ 64s] /bin/sh: line 1: hostname: command not found -[ 64s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_encoding.o libvterm/src/encoding.c -[ 64s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_keyboard.o libvterm/src/keyboard.c -[ 64s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_mouse.o libvterm/src/mouse.c -[ 64s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_parser.o libvterm/src/parser.c -[ 64s] CC="gcc -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread " srcdir=. sh ./osdef.sh -[ 65s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_pen.o libvterm/src/pen.c -[ 65s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_unicode.o libvterm/src/unicode.c -[ 65s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_vterm.o libvterm/src/vterm.c -[ 65s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_screen.o libvterm/src/screen.c -[ 65s] /usr/bin/perl -e 'unless ( $] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$_ $_\n" }}' > auto/if_perl.c -[ 65s] /usr/bin/perl /usr/share/perl5/vendor_perl/ExtUtils/xsubpp -prototypes -typemap \ -[ 65s] /usr/share/perl5/ExtUtils/typemap if_perl.xs >> auto/if_perl.c -[ 65s] gcc -c -I. -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_perlsfio.o if_perlsfio.c -[ 66s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_state.o libvterm/src/state.c -[ 66s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_lua.o if_lua.c -[ 67s] gcc -c -I. -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_ruby.o if_ruby.c -[ 67s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/netbeans.o netbeans.c -[ 68s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/job.o job.c -[ 69s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xemit.o xdiff/xemit.c -[ 69s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xdiffi.o xdiff/xdiffi.c -[ 69s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xutils.o xdiff/xutils.c -[ 70s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xprepare.o xdiff/xprepare.c -[ 70s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/channel.o channel.c -[ 70s] gcc -c -I. -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_python3.o if_python3.c -[ 71s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xpatience.o xdiff/xpatience.c -[ 71s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xhistogram.o xdiff/xhistogram.c -[ 71s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/charset.o charset.c -[ 71s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/json.o json.c -[ 71s] cd xxd; CC="gcc" CFLAGS=" -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1" LDFLAGS="-L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed" \ -[ 71s] /usr/bin/make -f Makefile -[ 72s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memfile.o memfile.c -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o af.mo af.po -[ 72s] 1318 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ca.mo ca.po -[ 72s] 2791 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o cs.mo cs.po -[ 72s] 1272 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o da.mo da.po -[ 72s] 1960 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o de.mo de.po -[ 72s] 2793 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o en_GB.mo en_GB.po -[ 72s] 100 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o eo.mo eo.po -[ 72s] 2334 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o es.mo es.po -[ 72s] 2782 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o fi.mo fi.po -[ 72s] 2786 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o fr.mo fr.po -[ 72s] 2186 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ga.mo ga.po -[ 72s] 2352 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o it.mo it.po -[ 72s] 2802 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.mo ja.po -[ 72s] 2782 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 72s] gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -DUNIX -o xxd xxd.c -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ko.UTF-8.mo ko.UTF-8.po -[ 72s] 1866 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ko.mo ko.po -[ 72s] 1866 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o lv.mo lv.po -[ 72s] 78 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o nb.mo nb.po -[ 72s] 1655 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o nl.mo nl.po -[ 72s] 1207 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o no.mo no.po -[ 72s] 1655 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.mo pl.po -[ 72s] 1858 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pt_BR.mo pt_BR.po -[ 72s] 1933 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ru.mo ru.po -[ 72s] 2037 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sk.mo sk.po -[ 72s] 1615 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sr.mo sr.po -[ 72s] 2801 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sv.mo sv.po -[ 72s] 1684 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/main.o main.c -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o tr.mo tr.po -[ 72s] 2800 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o uk.mo uk.po -[ 72s] 2786 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o vi.mo vi.po -[ 72s] 1410 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.UTF-8.mo zh_CN.UTF-8.po -[ 72s] 2795 translated messages, 2 fuzzy translations. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_TW.UTF-8.mo zh_TW.UTF-8.po -[ 72s] 1410 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_TW.mo zh_TW.po -[ 72s] 1410 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o cs.cp1250.mo cs.cp1250.po -[ 72s] 1272 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 72s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.euc-jp.mo ja.euc-jp.po -[ 72s] 2782 translated messages. -[ 72s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.sjis.mo ja.sjis.po -[ 73s] 2782 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.UTF-8.mo pl.UTF-8.po -[ 73s] 1858 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.cp1250.mo pl.cp1250.po -[ 73s] 1858 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ru.cp1251.mo ru.cp1251.po -[ 73s] 2037 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sk.cp1250.mo sk.cp1250.po -[ 73s] 1615 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o uk.cp1251.mo uk.cp1251.po -[ 73s] 2786 translated messages. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.mo zh_CN.po -[ 73s] 2795 translated messages, 2 fuzzy translations. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.cp936.mo zh_CN.cp936.po -[ 73s] 2795 translated messages, 2 fuzzy translations. -[ 73s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 73s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/alloc.o alloc.c -[ 73s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arabic.o arabic.c -[ 73s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/message.o message.c -[ 74s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 74s] echo af ca cs cs.cp1250 da de en_GB eo es fi fr ga it ja ja.euc-jp ja.sjis ko ko.UTF-8 lv nb nl no pl pl.UTF-8 pl.cp1250 pt_BR ru ru.cp1251 sk sk.cp1250 sr sv tr uk uk.cp1251 vi zh_CN zh_CN.UTF-8 zh_CN.cp936 zh_TW zh_TW.UTF-8 | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -[ 74s] msgfmt --desktop -d . --template gvim.desktop.in -o tmp_gvim.desktop -[ 74s] rm -f LINGUAS -[ 74s] if command -v desktop-file-validate; then desktop-file-validate tmp_gvim.desktop; fi -[ 74s] /usr/bin/desktop-file-validate -[ 74s] mv tmp_gvim.desktop gvim.desktop -[ 74s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 74s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arglist.o arglist.c -[ 74s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 74s] echo af ca cs cs.cp1250 da de en_GB eo es fi fr ga it ja ja.euc-jp ja.sjis ko ko.UTF-8 lv nb nl no pl pl.UTF-8 pl.cp1250 pt_BR ru ru.cp1251 sk sk.cp1250 sr sv tr uk uk.cp1251 vi zh_CN zh_CN.UTF-8 zh_CN.cp936 zh_TW zh_TW.UTF-8 | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -[ 74s] msgfmt --desktop -d . --template vim.desktop.in -o tmp_vim.desktop -[ 74s] rm -f LINGUAS -[ 74s] if command -v desktop-file-validate; then desktop-file-validate tmp_vim.desktop; fi -[ 74s] /usr/bin/desktop-file-validate -[ 74s] mv tmp_vim.desktop vim.desktop -[ 74s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 74s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/beval.o beval.c -[ 74s] make[1]: Nothing to be done for 'converted'. -[ 75s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/autocmd.o autocmd.c -[ 75s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blob.o blob.c -[ 76s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blowfish.o blowfish.c -[ 76s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clientserver.o clientserver.c -[ 76s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/change.o change.c -[ 78s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/buffer.o buffer.c -[ 78s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cindent.o cindent.c -[ 78s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clipboard.o clipboard.c -[ 78s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdexpand.o cmdexpand.c -[ 79s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt.o crypt.c -[ 79s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdhist.o cmdhist.c -[ 79s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt_zip.o crypt_zip.c -[ 79s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/debugger.o debugger.c -[ 80s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/dict.o dict.c -[ 80s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/digraph.o digraph.c -[ 81s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/diff.o diff.c -[ 81s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawscreen.o drawscreen.c -[ 83s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalbuffer.o evalbuffer.c -[ 83s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/edit.o edit.c -[ 83s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawline.o drawline.c -[ 84s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/eval.o eval.c -[ 85s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalwindow.o evalwindow.c -[ 85s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalvars.o evalvars.c -[ 86s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds2.o ex_cmds2.c -[ 86s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalfunc.o evalfunc.c -[ 87s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds.o ex_cmds.c -[ 88s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_eval.o ex_eval.c -[ 90s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_getln.o ex_getln.c -[ 90s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/filepath.o filepath.c -[ 90s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_docmd.o ex_docmd.c -[ 91s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/float.o float.c -[ 91s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fileio.o fileio.c -[ 91s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/findfile.o findfile.c -[ 92s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fold.o fold.c -[ 92s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_xim.o gui_xim.c -[ 93s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/getchar.o getchar.c -[ 93s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hardcopy.o hardcopy.c -[ 93s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hashtab.o hashtab.c -[ 93s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/help.o help.c -[ 94s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_xcmdsrv.o if_xcmdsrv.c -[ 95s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/highlight.o highlight.c -[ 95s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_cscope.o if_cscope.c -[ 95s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/indent.o indent.c -[ 96s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/locale.o locale.c -[ 96s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/list.o list.c -[ 97s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/insexpand.o insexpand.c -[ 97s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mark.o mark.c -[ 97s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/map.o map.c -[ 98s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/match.o match.c -[ 99s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mbyte.o mbyte.c -[ 99s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/menu.o menu.c -[ 99s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc1.o misc1.c -[ 100s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memline.o memline.c -[ 100s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc2.o misc2.c -[ 100s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mouse.o mouse.c -[ 101s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/move.o move.c -[ 103s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ops.o ops.c -[ 103s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/optionstr.o optionstr.c -[ 104s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/normal.o normal.c -[ 104s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pathdef.o auto/pathdef.c -[ 105s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/option.o option.c -[ 105s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupmenu.o popupmenu.c -[ 106s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pty.o pty.c -[ 106s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/profiler.o profiler.c -[ 106s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/os_unix.o os_unix.c -[ 106s] os_unix.c: In function 'sig_winch': -[ 106s] os_unix.c:872:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 872 | signal(SIGWINCH, (void (*)())sig_winch); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'sig_tstp': -[ 106s] os_unix.c:884:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 884 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN : SIG_DFL); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:893:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 893 | signal(SIGTSTP, (void (*)())sig_tstp); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'catch_sigint': -[ 106s] os_unix.c:903:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 903 | signal(SIGINT, (void (*)())catch_sigint); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'catch_sigusr1': -[ 106s] os_unix.c:913:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 913 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'catch_sigpwr': -[ 106s] os_unix.c:923:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 923 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'mch_init': -[ 106s] os_unix.c:1367:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1367 | ignore_sigtstp = restricted || SIG_IGN == signal(SIGTSTP, SIG_ERR); -[ 106s] | ^~~~~~~~~~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'set_signals': -[ 106s] os_unix.c:1386:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1386 | signal(SIGWINCH, (void (*)())sig_winch); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1394:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1394 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1401:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1401 | signal(SIGCONT, sigcont_handler); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1407:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1407 | signal(SIGPIPE, SIG_IGN); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1418:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1418 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1425:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1425 | signal(SIGALRM, SIG_IGN); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1433:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1433 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c:1446:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1446 | signal(SIGHUP, SIG_IGN); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'catch_int_signal': -[ 106s] os_unix.c:1457:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1457 | signal(SIGINT, (void (*)())catch_sigint); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'reset_signals': -[ 106s] os_unix.c:1467:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1467 | signal(SIGCONT, SIG_DFL); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'catch_signals': -[ 106s] os_unix.c:1517:6: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 1517 | signal(signal_info[i].sig, -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'may_core_dump': -[ 106s] os_unix.c:3518:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 3518 | signal(deadly_signal, SIG_DFL); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'mch_call_shell_fork': -[ 106s] os_unix.c:4817:7: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 4817 | signal(SIGHUP, SIG_IGN); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] os_unix.c: In function 'gpm_open': -[ 106s] os_unix.c:7260:6: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 106s] 7260 | signal(SIGTSTP, restricted ? SIG_IGN : (void (*)())sig_tstp); -[ 106s] | ^~~~~~ -[ 106s] In file included from /usr/include/sys/param.h:28, -[ 106s] from os_unix.h:60, -[ 106s] from vim.h:238, -[ 106s] from os_unix.c:21: -[ 106s] /usr/include/signal.h:367:23: note: declared here -[ 106s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 106s] | ^~~~~~ -[ 106s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupwin.o popupwin.c -[ 108s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/register.o register.c -[ 109s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/screen.o screen.c -[ 110s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/quickfix.o quickfix.c -[ 110s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/scriptfile.o scriptfile.c -[ 111s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/session.o session.c -[ 111s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sha256.o sha256.c -[ 112s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/search.o search.c -[ 112s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sound.o sound.c -[ 113s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sign.o sign.c -[ 114s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spell.o spell.c -[ 115s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellsuggest.o spellsuggest.c -[ 116s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellfile.o spellfile.c -[ 116s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/strings.o strings.c -[ 119s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/syntax.o syntax.c -[ 119s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/tag.o tag.c -[ 119s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/term.o term.c -[ 120s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textformat.o textformat.c -[ 121s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/testing.o testing.c -[ 122s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/terminal.o terminal.c -[ 122s] terminal.c: In function 'vtermAttr2hl.isra': -[ 122s] terminal.c:2889:1: note: parameter passing for argument of type 'VTermScreenCellAttrs' changed in GCC 9.1 -[ 122s] 2889 | vtermAttr2hl(VTermScreenCellAttrs *cellattrs) -[ 122s] | ^~~~~~~~~~~~ -[ 122s] terminal.c: In function 'cell2attr.isra': -[ 122s] terminal.c:2929:1: note: parameter passing for argument of type 'VTermScreenCellAttrs' changed in GCC 9.1 -[ 122s] 2929 | cell2attr( -[ 122s] | ^~~~~~~~~ -[ 122s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textobject.o textobject.c -[ 123s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textprop.o textprop.c -[ 123s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/time.o time.c -[ 123s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/typval.o typval.c -[ 124s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/regexp.o regexp.c -[ 124s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ui.o ui.c -[ 125s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/usercmd.o usercmd.c -[ 125s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9cmds.o vim9cmds.c -[ 125s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/undo.o undo.c -[ 127s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9compile.o vim9compile.c -[ 128s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9expr.o vim9expr.c -[ 128s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/userfunc.o userfunc.c -[ 128s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9script.o vim9script.c -[ 129s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9instr.o vim9instr.c -[ 129s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9execute.o vim9execute.c -[ 129s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9type.o vim9type.c -[ 131s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/viminfo.o viminfo.c -[ 131s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/bufwrite.o bufwrite.c -[ 131s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/window.o window.c -[ 132s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_gtk.o gui_gtk.c -[ 132s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_gtk_f.o gui_gtk_f.c -[ 133s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui.o gui.c -[ 133s] gcc -c -I. -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_gtk_gresources.o auto/gui_gtk_gresources.c -[ 133s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_beval.o gui_beval.c -[ 133s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_gtk_x11.o gui_gtk_x11.c -[ 135s] gcc -c -I. -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_perl.o auto/if_perl.c -[ 135s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -I/usr/include/gtk-3.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/libxml2 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/gio-unix-2.0 -I/usr/include/atk-1.0 -I/usr/include/at-spi2-atk/2.0 -I/usr/include/dbus-1.0 -I/usr/lib64/dbus-1.0/include -I/usr/include/at-spi-2.0 -pthread -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 135s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 135s] NOTE: build date/time is fixed: Nov 03 2022 00:00:00 -[ 135s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 135s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 135s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o vim objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/gui.o objects/gui_gtk.o objects/gui_gtk_x11.o objects/gui_gtk_f.o objects/gui_beval.o objects/gui_gtk_gresources.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/json.o objects/main.o objects/memfile.o objects/message.o -lgtk-3 -lgdk-3 -lz -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0 -lSM -lICE -lXpm -lXt -lX11 -lSM -lICE -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 136s] link.sh: Linked fine -[ 136s] + cp vim vim-X11 -[ 136s] + make clean -[ 136s] cd testdir; make -f Makefile clean -[ 136s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 136s] rm -rf *.out *.failed *.res *.rej *.orig XfakeHOME Xdir1 Xfind -[ 136s] rm -f opt_test.vim test.log test_result.log messages -[ 136s] rm -rf test.out X* viminfo test.ok benchmark.out -[ 136s] rm -f valgrind.* -[ 136s] rm -f asan.* -[ 136s] rm -f guidialog guidialogfile -[ 136s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 136s] if test -d po; then \ -[ 136s] cd po; make checkclean; \ -[ 136s] fi -[ 136s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 136s] rm -f *.ck -[ 136s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 136s] rm -f *.o core vim.core vim vim xxd/*.o -[ 136s] rm -rf objects -[ 136s] rm -f xxd/xxd auto/osdef.h auto/pathdef.c auto/if_perl.c auto/gui_gtk_gresources.c auto/gui_gtk_gresources.h auto/os_haiku.rdef -[ 136s] rm -f conftest* *~ auto/link.sed -[ 136s] rm -f testdir/opt_test.vim -[ 136s] rm -f json_test kword_test memfile_test message_test -[ 136s] rm -f runtime pixmaps -[ 136s] rm -f mzscheme_base.c -[ 136s] rm -rf libvterm/.libs libterm/t/.libs libvterm/src/*.o libvterm/src/*.lo libvterm/t/*.o libvterm/t/*.lo libvterm/t/harness libvterm/libvterm.la -[ 136s] if test -d po; then \ -[ 136s] cd po; make prefix=/usr clean; \ -[ 136s] fi -[ 136s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 136s] rm -f *.ck -[ 136s] rm -f core core.* *.old.po *.mo *.pot sjiscorr -[ 136s] rm -f LINGUAS vim.desktop gvim.desktop tmp_*desktop -[ 136s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 136s] + CFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 136s] + export CFLAGS -[ 136s] + CXXFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -I/usr/include/m -D__linux__ -D_REENTRANT' -[ 136s] + export CXXFLAGS -[ 136s] + FFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 136s] + export FFLAGS -[ 136s] + FCFLAGS='-O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fexceptions -I/usr/lib64/gfortran/modules' -[ 136s] + export FCFLAGS -[ 136s] + LDFLAGS='-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' -[ 136s] + export LDFLAGS -[ 136s] + '[' 1 = 1 ']' -[ 136s] +++ dirname ./configure -[ 136s] ++ find . -name config.guess -o -name config.sub -[ 136s] + '[' 1 = 1 ']' -[ 136s] + '[' x '!=' 'x-Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld' ']' -[ 136s] ++ find . -name ltmain.sh -[ 136s] + ./configure --build=aarch64-openEuler-linux-gnu --host=aarch64-openEuler-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-features=huge --enable-python3interp=dynamic --enable-perlinterp=dynamic --disable-tclinterp --with-x=no --enable-gui=no --enable-multibyte --enable-cscope --with-tlib=ncurses --with-python3-config-dir=/usr/lib64/python3.9/config-3.9-aarch64-linux-gnu --enable-fail-if-missing --enable-netbeans --enable-selinux --enable-rubyinterp=dynamic --enable-luainterp=dynamic -[ 136s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 136s] checking whether make sets $(MAKE)... yes -[ 136s] checking for aarch64-openEuler-linux-gnu-gcc... no -[ 136s] checking for gcc... gcc -[ 136s] checking whether the C compiler works... yes -[ 136s] checking for C compiler default output file name... a.out -[ 136s] checking for suffix of executables... -[ 136s] checking whether we are cross compiling... no -[ 136s] checking for suffix of object files... o -[ 137s] checking whether the compiler supports GNU C... yes -[ 137s] checking whether gcc accepts -g... yes -[ 137s] checking for gcc option to enable C11 features... none needed -[ 137s] checking how to run the C preprocessor... gcc -E -[ 137s] checking for grep that handles long lines and -e... /usr/bin/grep -[ 137s] checking for egrep... /usr/bin/grep -E -[ 137s] checking for fgrep... /usr/bin/grep -F -[ 137s] checking for library containing strerror... none required -[ 137s] checking for gawk... gawk -[ 137s] checking for strip... strip -[ 137s] checking for stdio.h... yes -[ 137s] checking for stdlib.h... yes -[ 137s] checking for string.h... yes -[ 137s] checking for inttypes.h... yes -[ 137s] checking for stdint.h... yes -[ 137s] checking for strings.h... yes -[ 137s] checking for sys/stat.h... yes -[ 137s] checking for sys/types.h... yes -[ 137s] checking for unistd.h... yes -[ 137s] checking for sys/time.h... yes -[ 137s] checking for sys/select.h... yes -[ 137s] checking for sys/socket.h... yes -[ 137s] checking for egrep... (cached) /usr/bin/grep -E -[ 137s] checking for sys/wait.h that is POSIX.1 compatible... yes -[ 137s] checking for unsigned long long int... yes -[ 138s] checking for long long int... yes -[ 138s] checking if the compiler supports trailing commas... yes -[ 138s] checking if the compiler supports C++ comments... yes -[ 138s] checking --enable-fail-if-missing argument... yes -[ 138s] checking for clang version... N/A -[ 138s] checking for buggy tools... - sh is 'GNU bash, version 5.1.8(1)-release (aarch64-openEuler-linux-gnu) -[ 138s] Copyright (C) 2020 Free Software Foundation, Inc. -[ 138s] License GPLv3+: GNU GPL version 3 or later -[ 138s] -[ 138s] This is free software; you are free to change and redistribute it. -[ 138s] There is NO WARRANTY, to the extent permitted by law.' - probably OK. -[ 138s] checking uname... Linux -[ 138s] checking uname -r... 4.19.90-2003.4.0.0036.oe1.aarch64 -[ 138s] checking uname -m... aarch64 -[ 138s] checking for Haiku... no -[ 138s] checking for QNX... no -[ 138s] checking for Darwin (Mac OS X)... no -[ 138s] checking for AvailabilityMacros.h... no -[ 138s] checking --with-local-dir argument... Defaulting to /usr/local -[ 138s] checking --with-vim-name argument... Defaulting to vim -[ 138s] checking --with-ex-name argument... Defaulting to ex -[ 138s] checking --with-view-name argument... Defaulting to view -[ 138s] checking --with-global-runtime argument... no -[ 138s] checking --with-modified-by argument... no -[ 138s] checking if character set is EBCDIC... no -[ 138s] checking --disable-smack argument... no -[ 138s] checking for linux/xattr.h... yes -[ 138s] checking for attr/xattr.h... yes -[ 138s] checking for XATTR_NAME_SMACKEXEC in linux/xattr.h... no -[ 138s] checking --disable-selinux argument... no -[ 138s] checking for is_selinux_enabled in -lselinux... yes -[ 138s] checking for selinux/selinux.h... yes -[ 138s] checking --with-features argument... huge -[ 138s] checking --with-compiledby argument... no -[ 138s] checking --disable-xsmp argument... no -[ 138s] checking --disable-xsmp-interact argument... no -[ 138s] checking diff feature... enabled -[ 138s] checking --enable-luainterp argument... dynamic -[ 138s] checking --with-lua-prefix argument... no -[ 138s] checking LUA_PREFIX environment var... not set, default to /usr -[ 138s] checking --with-luajit... no -[ 138s] checking for lua... /usr/bin/lua -[ 138s] checking Lua version... 5.4 -[ 138s] checking if lua.h can be found in /usr/include... yes -[ 138s] checking if liblua*.so* can be found in /usr... yes -[ 138s] checking --enable-mzschemeinterp argument... no -[ 138s] checking --enable-perlinterp argument... dynamic -[ 138s] checking for perl... /usr/bin/perl -[ 138s] checking Perl version... OK -[ 138s] checking if compile and link flags for Perl are sane... yes -[ 138s] checking --enable-pythoninterp argument... no -[ 138s] checking --enable-python3interp argument... dynamic -[ 138s] checking --with-python3-command argument... no -[ 138s] checking for python3... /usr/bin/python3 -[ 138s] checking Python version... 3.9 -[ 138s] checking Python is 3.0 or better... yep -[ 138s] checking Python's abiflags... -[ 138s] checking Python's install prefix... /usr -[ 138s] checking Python's execution prefix... /usr -[ 138s] checking Python's configuration directory... (cached) /usr/lib64/python3.9/config-3.9-aarch64-linux-gnu -[ 138s] checking Python3's dll name... libpython3.9.so.1.0 -[ 138s] checking if -pthread should be used... yes -[ 139s] checking if compile and link flags for Python 3 are sane... yes -[ 139s] checking --enable-tclinterp argument... no -[ 139s] checking --enable-rubyinterp argument... dynamic -[ 139s] checking --with-ruby-command argument... defaulting to ruby -[ 139s] checking for ruby... /usr/bin/ruby -[ 139s] checking Ruby version... OK -[ 139s] checking Ruby rbconfig... RbConfig -[ 139s] checking Ruby header files... /usr/include -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] 6 -[ 139s] `did_you_mean' was not loaded. -[ 139s] `did_you_mean' was not loaded. -[ 139s] checking --enable-cscope argument... yes -[ 139s] checking --disable-netbeans argument... no -[ 139s] checking --disable-channel argument... no -[ 139s] checking for socket in -lsocket... no -[ 139s] checking whether compiling with IPv6 networking is possible... yes -[ 140s] checking for inet_ntop... yes -[ 140s] checking --enable-terminal argument... defaulting to yes -[ 140s] checking --enable-autoservername argument... no -[ 140s] checking --enable-multibyte argument... yes -[ 140s] checking --disable-rightleft argument... no -[ 140s] checking --disable-arabic argument... no -[ 140s] checking --enable-xim argument... defaulting to auto -[ 140s] checking --enable-fontset argument... no -[ 140s] defaulting to: don't HAVE_X11 -[ 140s] checking --enable-gui argument... no GUI support -[ 140s] checking for aarch64-openEuler-linux-gnu-pkg-config... /usr/bin/aarch64-openEuler-linux-gnu-pkg-config -[ 140s] checking for X11/SM/SMlib.h... yes -[ 140s] checking for /proc link to executable... /proc/self/exe -[ 140s] checking for CYGWIN or MSYS environment... no -[ 140s] checking whether toupper is broken... no -[ 140s] checking whether __DATE__ and __TIME__ work... yes -[ 140s] checking whether __attribute__((unused)) is allowed... yes -[ 140s] checking for elf.h... yes -[ 140s] checking for main in -lelf... no -[ 140s] checking for dirent.h that defines DIR... yes -[ 140s] checking for library containing opendir... none required -[ 140s] checking for stdint.h... (cached) yes -[ 140s] checking for stdlib.h... (cached) yes -[ 140s] checking for string.h... (cached) yes -[ 140s] checking for sys/select.h... (cached) yes -[ 140s] checking for sys/utsname.h... yes -[ 140s] checking for termcap.h... yes -[ 140s] checking for fcntl.h... yes -[ 140s] checking for sgtty.h... yes -[ 140s] checking for sys/ioctl.h... yes -[ 140s] checking for sys/time.h... (cached) yes -[ 140s] checking for sys/types.h... (cached) yes -[ 140s] checking for termio.h... yes -[ 140s] checking for iconv.h... yes -[ 140s] checking for inttypes.h... (cached) yes -[ 140s] checking for langinfo.h... yes -[ 140s] checking for math.h... yes -[ 140s] checking for unistd.h... (cached) yes -[ 140s] checking for stropts.h... no -[ 141s] checking for errno.h... yes -[ 141s] checking for sys/resource.h... yes -[ 141s] checking for sys/systeminfo.h... no -[ 141s] checking for locale.h... yes -[ 141s] checking for sys/stream.h... no -[ 141s] checking for termios.h... yes -[ 141s] checking for libc.h... no -[ 141s] checking for sys/statfs.h... yes -[ 141s] checking for poll.h... yes -[ 141s] checking for sys/poll.h... yes -[ 141s] checking for pwd.h... yes -[ 141s] checking for utime.h... yes -[ 141s] checking for sys/param.h... yes -[ 141s] checking for sys/ptms.h... no -[ 141s] checking for libintl.h... yes -[ 141s] checking for libgen.h... yes -[ 141s] checking for util/debug.h... no -[ 141s] checking for util/msg18n.h... no -[ 141s] checking for frame.h... no -[ 142s] checking for sys/acl.h... yes -[ 142s] checking for sys/access.h... no -[ 142s] checking for sys/sysinfo.h... yes -[ 142s] checking for wchar.h... yes -[ 142s] checking for wctype.h... yes -[ 142s] checking for sys/ptem.h... no -[ 142s] checking for sys/sysctl.h... no -[ 142s] checking for pthread_np.h... no -[ 142s] checking for strings.h... (cached) yes -[ 142s] checking if strings.h can be included after string.h... yes -[ 142s] checking whether gcc needs -traditional... no -[ 142s] checking for an ANSI C-conforming const... yes -[ 142s] checking for working volatile... yes -[ 142s] checking for mode_t... yes -[ 142s] checking for off_t... yes -[ 142s] checking for pid_t... yes -[ 142s] checking for size_t... yes -[ 142s] checking for uid_t in sys/types.h... yes -[ 143s] checking for uint32_t... yes -[ 143s] checking for ino_t... yes -[ 143s] checking for dev_t... yes -[ 143s] checking whether byte ordering is bigendian... no -[ 143s] checking for inline... inline -[ 143s] checking for rlim_t... yes -[ 143s] checking for stack_t... yes -[ 143s] checking whether stack_t has an ss_base field... no -[ 143s] checking --with-tlib argument... ncurses -[ 143s] checking for linking with ncurses library... OK -[ 143s] checking for tgetent()... yes -[ 143s] checking whether we talk terminfo... yes -[ 143s] checking what tgetent() returns for an unknown terminal... zero -[ 143s] checking whether termcap.h contains ospeed... yes -[ 143s] checking whether termcap.h contains UP, BC and PC... yes -[ 143s] checking whether tputs() uses outfuntype... no -[ 143s] checking whether del_curterm() can be used... yes -[ 143s] checking whether sys/select.h and sys/time.h may both be included... yes -[ 143s] checking for /dev/ptc... no -[ 144s] checking for SVR4 ptys... yes -[ 144s] checking for ptyranges... don't know -[ 144s] checking for struct sigcontext... yes -[ 144s] checking getcwd implementation is broken... no -[ 144s] checking for fchdir... yes -[ 144s] checking for fchown... yes -[ 144s] checking for fchmod... yes -[ 144s] checking for fsync... yes -[ 144s] checking for getcwd... yes -[ 144s] checking for getpseudotty... no -[ 144s] checking for getpwent... yes -[ 144s] checking for getpwnam... yes -[ 144s] checking for getpwuid... yes -[ 144s] checking for getrlimit... yes -[ 144s] checking for gettimeofday... yes -[ 144s] checking for localtime_r... yes -[ 144s] checking for lstat... yes -[ 144s] checking for memset... yes -[ 145s] checking for mkdtemp... yes -[ 145s] checking for nanosleep... yes -[ 145s] checking for opendir... yes -[ 145s] checking for putenv... yes -[ 145s] checking for qsort... yes -[ 145s] checking for readlink... yes -[ 145s] checking for select... yes -[ 145s] checking for setenv... yes -[ 145s] checking for getpgid... yes -[ 145s] checking for setpgid... yes -[ 145s] checking for setsid... yes -[ 145s] checking for sigaltstack... yes -[ 145s] checking for sigstack... yes -[ 145s] checking for sigset... yes -[ 145s] checking for sigsetjmp... no -[ 145s] checking for sigaction... yes -[ 145s] checking for sigprocmask... yes -[ 146s] checking for sigvec... no -[ 146s] checking for strcasecmp... yes -[ 146s] checking for strcoll... yes -[ 146s] checking for strerror... yes -[ 146s] checking for strftime... yes -[ 146s] checking for stricmp... no -[ 146s] checking for strncasecmp... yes -[ 146s] checking for strnicmp... no -[ 146s] checking for strpbrk... yes -[ 146s] checking for strptime... yes -[ 146s] checking for strtol... yes -[ 146s] checking for tgetent... yes -[ 146s] checking for towlower... yes -[ 146s] checking for towupper... yes -[ 146s] checking for iswupper... yes -[ 146s] checking for tzset... yes -[ 146s] checking for usleep... yes -[ 146s] checking for utime... yes -[ 147s] checking for utimes... yes -[ 147s] checking for mblen... yes -[ 147s] checking for ftruncate... yes -[ 147s] checking for unsetenv... yes -[ 147s] checking for posix_openpt... yes -[ 147s] checking types of arguments for select... int,fd_set *,struct timeval * -[ 147s] checking for _LARGEFILE_SOURCE value needed for large files... no -[ 147s] checking for special C compiler options needed for large files... no -[ 147s] checking for _FILE_OFFSET_BITS value needed for large files... no -[ 147s] checking --enable-canberra argument... Defaulting to yes -[ 147s] checking for libcanberra... no; try installing libcanberra-dev -[ 147s] checking --enable-libsodium argument... Defaulting to yes -[ 147s] checking for libsodium... no; try installing libsodium-dev -[ 147s] checking for st_blksize... yes -[ 147s] checking for timer_create... yes; with -lrt -[ 147s] checking whether stat() ignores a trailing slash... no -[ 147s] checking for nanoseconds field of struct stat... st_mtim.tv_nsec -[ 147s] checking for iconv_open()... yes -[ 147s] checking for nl_langinfo(CODESET)... yes -[ 148s] checking for strtod in -lm... yes -[ 148s] checking for strtod() and other floating point functions... yes -[ 148s] checking for isinf()... yes -[ 148s] checking for isnan()... yes -[ 148s] checking --disable-acl argument... no -[ 148s] checking for acl_get_file in -lposix1e... no -[ 148s] checking for acl_get_file in -lacl... yes -[ 148s] checking for fgetxattr in -lattr... yes -[ 148s] checking for POSIX ACL support... yes -[ 148s] checking for acl_get in -lsec... no -[ 148s] checking for Solaris ACL support... no -[ 148s] checking for AIX ACL support... no -[ 148s] checking --enable-gpm argument... yes -[ 148s] checking for gpm... yes -[ 148s] checking --disable-sysmouse argument... no -[ 148s] checking for sysmouse... no -[ 148s] checking for FD_CLOEXEC... yes -[ 148s] checking for rename... yes -[ 149s] checking for dirfd... yes -[ 149s] checking for flock... yes -[ 149s] checking for sysctl... not usable -[ 149s] checking for sysinfo... yes -[ 149s] checking for sysinfo.mem_unit... yes -[ 149s] checking for sysinfo.uptime... yes -[ 149s] checking for sysconf... yes -[ 149s] checking for _SC_SIGSTKSZ via sysconf()... yes -[ 149s] checking size of int... 4 -[ 149s] checking size of long... 8 -[ 149s] checking size of time_t... 8 -[ 149s] checking size of off_t... 8 -[ 149s] checking uint32_t is 32 bits... ok -[ 149s] checking whether memmove handles overlaps... yes -[ 149s] checking for _xpg4_setrunelocale in -lxpg4... no -[ 149s] checking how to create tags... ctags -[ 149s] checking how to run man with a section nr... man -[ 149s] checking --disable-nls argument... no -[ 149s] checking for msgfmt... msgfmt -[ 149s] checking for NLS... gettext() works -[ 150s] checking for bind_textdomain_codeset... yes -[ 150s] checking for _nl_msg_cat_cntr... yes -[ 150s] checking if msgfmt supports --desktop... yes -[ 150s] checking for dlfcn.h... yes -[ 150s] checking for dlopen()... yes -[ 150s] checking for dlsym()... yes -[ 150s] checking for setjmp.h... yes -[ 150s] checking for GCC 3 or later... yes -[ 150s] checking whether we need -D_FORTIFY_SOURCE=1... yes -[ 150s] checking whether we need to force -D_FILE_OFFSET_BITS=64... yes -[ 150s] checking linker --as-needed support... yes -[ 150s] configure: creating ./config.status -[ 150s] config.status: creating auto/config.mk -[ 150s] config.status: creating auto/config.h -[ 150s] configure: WARNING: unrecognized options: --disable-dependency-tracking -[ 150s] + /usr/bin/make -O -j4 V=1 VERBOSE=1 VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/vim90 -[ 150s] /bin/sh install-sh -c -d objects -[ 150s] touch objects/.dirstamp -[ 150s] cd xxd; CC="gcc" CFLAGS=" -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1" LDFLAGS="-L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed" \ -[ 150s] /usr/bin/make -f Makefile -[ 150s] creating auto/pathdef.c -[ 150s] /bin/sh: line 1: hostname: command not found -[ 150s] /usr/bin/perl -e 'unless ( $] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$_ $_\n" }}' > auto/if_perl.c -[ 150s] /usr/bin/perl /usr/share/perl5/vendor_perl/ExtUtils/xsubpp -prototypes -typemap \ -[ 150s] /usr/share/perl5/ExtUtils/typemap if_perl.xs >> auto/if_perl.c -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o af.mo af.po -[ 150s] 1318 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ca.mo ca.po -[ 150s] 2791 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o cs.mo cs.po -[ 150s] 1272 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o da.mo da.po -[ 150s] 1960 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] CC="gcc -Iproto -DHAVE_CONFIG_H " srcdir=. sh ./osdef.sh -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o de.mo de.po -[ 150s] 2793 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o en_GB.mo en_GB.po -[ 150s] 100 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o eo.mo eo.po -[ 150s] 2334 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_encoding.o libvterm/src/encoding.c -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o es.mo es.po -[ 150s] 2782 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o fi.mo fi.po -[ 150s] 2786 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o fr.mo fr.po -[ 150s] 2186 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ga.mo ga.po -[ 150s] 2352 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o it.mo it.po -[ 150s] 2802 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_keyboard.o libvterm/src/keyboard.c -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.mo ja.po -[ 150s] 2782 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_mouse.o libvterm/src/mouse.c -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ko.UTF-8.mo ko.UTF-8.po -[ 150s] 1866 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ko.mo ko.po -[ 150s] 1866 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o lv.mo lv.po -[ 150s] 78 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 150s] gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -DUNIX -o xxd xxd.c -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/xxd' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o nb.mo nb.po -[ 150s] 1655 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 150s] OLD_PO_FILE_INPUT=yes msgfmt -v -o nl.mo nl.po -[ 150s] 1207 translated messages. -[ 150s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o no.mo no.po -[ 151s] 1655 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.mo pl.po -[ 151s] 1858 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pt_BR.mo pt_BR.po -[ 151s] 1933 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ru.mo ru.po -[ 151s] 2037 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sk.mo sk.po -[ 151s] 1615 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sr.mo sr.po -[ 151s] 2801 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_parser.o libvterm/src/parser.c -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sv.mo sv.po -[ 151s] 1684 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o tr.mo tr.po -[ 151s] 2800 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o uk.mo uk.po -[ 151s] 2786 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o vi.mo vi.po -[ 151s] 1410 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.UTF-8.mo zh_CN.UTF-8.po -[ 151s] 2795 translated messages, 2 fuzzy translations. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_TW.UTF-8.mo zh_TW.UTF-8.po -[ 151s] 1410 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_TW.mo zh_TW.po -[ 151s] 1410 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_pen.o libvterm/src/pen.c -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o cs.cp1250.mo cs.cp1250.po -[ 151s] 1272 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.euc-jp.mo ja.euc-jp.po -[ 151s] 2782 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ja.sjis.mo ja.sjis.po -[ 151s] 2782 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.UTF-8.mo pl.UTF-8.po -[ 151s] 1858 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o pl.cp1250.mo pl.cp1250.po -[ 151s] 1858 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_unicode.o libvterm/src/unicode.c -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o ru.cp1251.mo ru.cp1251.po -[ 151s] 2037 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o sk.cp1250.mo sk.cp1250.po -[ 151s] 1615 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o uk.cp1251.mo uk.cp1251.po -[ 151s] 2786 translated messages. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.mo zh_CN.po -[ 151s] 2795 translated messages, 2 fuzzy translations. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] OLD_PO_FILE_INPUT=yes msgfmt -v -o zh_CN.cp936.mo zh_CN.cp936.po -[ 151s] 2795 translated messages, 2 fuzzy translations. -[ 151s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 151s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_screen.o libvterm/src/screen.c -[ 151s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_vterm.o libvterm/src/vterm.c -[ 152s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 152s] echo af ca cs cs.cp1250 da de en_GB eo es fi fr ga it ja ja.euc-jp ja.sjis ko ko.UTF-8 lv nb nl no pl pl.UTF-8 pl.cp1250 pt_BR ru ru.cp1251 sk sk.cp1250 sr sv tr uk uk.cp1251 vi zh_CN zh_CN.UTF-8 zh_CN.cp936 zh_TW zh_TW.UTF-8 | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -[ 152s] msgfmt --desktop -d . --template gvim.desktop.in -o tmp_gvim.desktop -[ 152s] rm -f LINGUAS -[ 152s] if command -v desktop-file-validate; then desktop-file-validate tmp_gvim.desktop; fi -[ 152s] /usr/bin/desktop-file-validate -[ 152s] mv tmp_gvim.desktop gvim.desktop -[ 152s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 152s] gcc -c -I. -Ilibvterm/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DINLINE="" -DVSNPRINTF=vim_vsnprintf -DSNPRINTF=vim_snprintf -DIS_COMBINING_FUNCTION=utf_iscomposing_uint -DWCWIDTH_FUNCTION=utf_uint2cells -o objects/vterm_state.o libvterm/src/state.c -[ 152s] gcc -c -I. -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_perlsfio.o if_perlsfio.c -[ 153s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 153s] echo af ca cs cs.cp1250 da de en_GB eo es fi fr ga it ja ja.euc-jp ja.sjis ko ko.UTF-8 lv nb nl no pl pl.UTF-8 pl.cp1250 pt_BR ru ru.cp1251 sk sk.cp1250 sr sv tr uk uk.cp1251 vi zh_CN zh_CN.UTF-8 zh_CN.cp936 zh_TW zh_TW.UTF-8 | tr " " "\n" |sed -e '/\./d' | sort > LINGUAS -[ 153s] msgfmt --desktop -d . --template vim.desktop.in -o tmp_vim.desktop -[ 153s] rm -f LINGUAS -[ 153s] if command -v desktop-file-validate; then desktop-file-validate tmp_vim.desktop; fi -[ 153s] /usr/bin/desktop-file-validate -[ 153s] mv tmp_vim.desktop vim.desktop -[ 153s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 153s] make[1]: Nothing to be done for 'converted'. -[ 153s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_lua.o if_lua.c -[ 153s] gcc -c -I. -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_perl.o auto/if_perl.c -[ 154s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/job.o job.c -[ 154s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/netbeans.o netbeans.c -[ 155s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xdiffi.o xdiff/xdiffi.c -[ 155s] gcc -c -I. -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_ruby.o if_ruby.c -[ 155s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xemit.o xdiff/xemit.c -[ 155s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xprepare.o xdiff/xprepare.c -[ 156s] gcc -c -I. -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_python3.o if_python3.c -[ 156s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xhistogram.o xdiff/xhistogram.c -[ 156s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xutils.o xdiff/xutils.c -[ 156s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/channel.o channel.c -[ 156s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/xpatience.o xdiff/xpatience.c -[ 157s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/json.o json.c -[ 157s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memfile.o memfile.c -[ 157s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/charset.o charset.c -[ 157s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/alloc.o alloc.c -[ 157s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arabic.o arabic.c -[ 158s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/main.o main.c -[ 158s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/arglist.o arglist.c -[ 158s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/beval.o beval.c -[ 158s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/message.o message.c -[ 159s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/autocmd.o autocmd.c -[ 159s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blob.o blob.c -[ 159s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/blowfish.o blowfish.c -[ 159s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/change.o change.c -[ 160s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clipboard.o clipboard.c -[ 160s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/clientserver.o clientserver.c -[ 160s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdhist.o cmdhist.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/buffer.o buffer.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt.o crypt.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/crypt_zip.o crypt_zip.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cindent.o cindent.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/cmdexpand.o cmdexpand.c -[ 161s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/debugger.o debugger.c -[ 162s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/dict.o dict.c -[ 162s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/digraph.o digraph.c -[ 163s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/diff.o diff.c -[ 163s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawscreen.o drawscreen.c -[ 164s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/drawline.o drawline.c -[ 164s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalbuffer.o evalbuffer.c -[ 165s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/edit.o edit.c -[ 165s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalwindow.o evalwindow.c -[ 166s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/eval.o eval.c -[ 167s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalvars.o evalvars.c -[ 167s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds2.o ex_cmds2.c -[ 167s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/evalfunc.o evalfunc.c -[ 168s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_eval.o ex_eval.c -[ 168s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds.o ex_cmds.c -[ 169s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/filepath.o filepath.c -[ 170s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_getln.o ex_getln.c -[ 170s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/float.o float.c -[ 170s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/findfile.o findfile.c -[ 171s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_docmd.o ex_docmd.c -[ 171s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/gui_xim.o gui_xim.c -[ 171s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fileio.o fileio.c -[ 172s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hashtab.o hashtab.c -[ 172s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/fold.o fold.c -[ 172s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/getchar.o getchar.c -[ 173s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/help.o help.c -[ 173s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/hardcopy.o hardcopy.c -[ 173s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_cscope.o if_cscope.c -[ 173s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/if_xcmdsrv.o if_xcmdsrv.c -[ 174s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/highlight.o highlight.c -[ 174s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/indent.o indent.c -[ 174s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/locale.o locale.c -[ 174s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/list.o list.c -[ 175s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/insexpand.o insexpand.c -[ 175s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/match.o match.c -[ 175s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mark.o mark.c -[ 176s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/map.o map.c -[ 176s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mbyte.o mbyte.c -[ 177s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc1.o misc1.c -[ 177s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/menu.o menu.c -[ 177s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/misc2.o misc2.c -[ 177s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memline.o memline.c -[ 178s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/mouse.o mouse.c -[ 178s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/move.o move.c -[ 179s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ops.o ops.c -[ 180s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/optionstr.o optionstr.c -[ 180s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pathdef.o auto/pathdef.c -[ 180s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/normal.o normal.c -[ 181s] gcc -c -I. -DDYNAMIC_LUA_DLL=\"liblua-5.4.so\" -I/usr/include -DDYNAMIC_PERL_DLL=\"libperl.so\" -D_REENTRANT -D_GNU_SOURCE -O2 -g -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -fwrapv -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/lib64/perl5/CORE -I/usr/include/python3.9 -DPYTHON3_HOME='L"/usr"' -pthread -DDYNAMIC_PYTHON3_DLL=\"libpython3.9.so.1.0\" -DDYNAMIC_RUBY_DLL=\"libruby.so.3.0\" -I/usr/include -I/usr/include -DRUBY_VERSION=30 -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/option.o option.c -[ 181s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupmenu.o popupmenu.c -[ 181s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/os_unix.o os_unix.c -[ 181s] os_unix.c: In function 'sig_winch': -[ 181s] os_unix.c:872:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 872 | signal(SIGWINCH, (void (*)())sig_winch); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'sig_tstp': -[ 181s] os_unix.c:884:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 884 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN : SIG_DFL); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:893:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 893 | signal(SIGTSTP, (void (*)())sig_tstp); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'catch_sigint': -[ 181s] os_unix.c:903:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 903 | signal(SIGINT, (void (*)())catch_sigint); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'catch_sigusr1': -[ 181s] os_unix.c:913:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 913 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'catch_sigpwr': -[ 181s] os_unix.c:923:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 923 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'mch_init': -[ 181s] os_unix.c:1367:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1367 | ignore_sigtstp = restricted || SIG_IGN == signal(SIGTSTP, SIG_ERR); -[ 181s] | ^~~~~~~~~~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'set_signals': -[ 181s] os_unix.c:1386:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1386 | signal(SIGWINCH, (void (*)())sig_winch); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1394:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1394 | signal(SIGTSTP, ignore_sigtstp ? SIG_IGN -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1401:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1401 | signal(SIGCONT, sigcont_handler); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1407:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1407 | signal(SIGPIPE, SIG_IGN); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1418:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1418 | signal(SIGUSR1, (void (*)())catch_sigusr1); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1425:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1425 | signal(SIGALRM, SIG_IGN); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c:1433:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1433 | signal(SIGPWR, (void (*)())catch_sigpwr); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'catch_int_signal': -[ 181s] os_unix.c:1457:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1457 | signal(SIGINT, (void (*)())catch_sigint); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'reset_signals': -[ 181s] os_unix.c:1467:5: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1467 | signal(SIGCONT, SIG_DFL); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'catch_signals': -[ 181s] os_unix.c:1517:6: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 1517 | signal(signal_info[i].sig, -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'may_core_dump': -[ 181s] os_unix.c:3518:2: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 3518 | signal(deadly_signal, SIG_DFL); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'mch_call_shell_fork': -[ 181s] os_unix.c:4817:7: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 4817 | signal(SIGHUP, SIG_IGN); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 181s] os_unix.c: In function 'gpm_open': -[ 181s] os_unix.c:7260:6: warning: 'sigset' is deprecated: Use the signal and sigprocmask functions instead [-Wdeprecated-declarations] -[ 181s] 7260 | signal(SIGTSTP, restricted ? SIG_IGN : (void (*)())sig_tstp); -[ 181s] | ^~~~~~ -[ 181s] In file included from /usr/include/sys/param.h:28, -[ 181s] from os_unix.h:60, -[ 181s] from vim.h:238, -[ 181s] from os_unix.c:21: -[ 181s] /usr/include/signal.h:367:23: note: declared here -[ 181s] 367 | extern __sighandler_t sigset (int __sig, __sighandler_t __disp) __THROW -[ 181s] | ^~~~~~ -[ 182s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/pty.o pty.c -[ 182s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/profiler.o profiler.c -[ 183s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/popupwin.o popupwin.c -[ 183s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/register.o register.c -[ 185s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/quickfix.o quickfix.c -[ 185s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/scriptfile.o scriptfile.c -[ 186s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/screen.o screen.c -[ 186s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/session.o session.c -[ 187s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sha256.o sha256.c -[ 187s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sound.o sound.c -[ 187s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/search.o search.c -[ 187s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/sign.o sign.c -[ 190s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spell.o spell.c -[ 190s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellsuggest.o spellsuggest.c -[ 191s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/spellfile.o spellfile.c -[ 192s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/strings.o strings.c -[ 193s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/syntax.o syntax.c -[ 193s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/tag.o tag.c -[ 194s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/term.o term.c -[ 194s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/testing.o testing.c -[ 194s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textformat.o textformat.c -[ 195s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textobject.o textobject.c -[ 196s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/textprop.o textprop.c -[ 196s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/time.o time.c -[ 196s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/terminal.o terminal.c -[ 196s] terminal.c: In function 'vtermAttr2hl.isra': -[ 196s] terminal.c:2889:1: note: parameter passing for argument of type 'VTermScreenCellAttrs' changed in GCC 9.1 -[ 196s] 2889 | vtermAttr2hl(VTermScreenCellAttrs *cellattrs) -[ 196s] | ^~~~~~~~~~~~ -[ 196s] terminal.c: In function 'cell2attr.isra': -[ 196s] terminal.c:2929:1: note: parameter passing for argument of type 'VTermScreenCellAttrs' changed in GCC 9.1 -[ 196s] 2929 | cell2attr( -[ 196s] | ^~~~~~~~~ -[ 196s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ui.o ui.c -[ 197s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/typval.o typval.c -[ 197s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/usercmd.o usercmd.c -[ 198s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/undo.o undo.c -[ 199s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/regexp.o regexp.c -[ 199s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9cmds.o vim9cmds.c -[ 200s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9compile.o vim9compile.c -[ 200s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/userfunc.o userfunc.c -[ 201s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9expr.o vim9expr.c -[ 201s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9instr.o vim9instr.c -[ 201s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9script.o vim9script.c -[ 202s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9type.o vim9type.c -[ 202s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/vim9execute.o vim9execute.c -[ 203s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/viminfo.o viminfo.c -[ 203s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/bufwrite.o bufwrite.c -[ 204s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/window.o window.c -[ 204s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 204s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 204s] NOTE: build date/time is fixed: Nov 03 2022 00:00:00 -[ 204s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 204s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 204s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o vim objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/json.o objects/main.o objects/memfile.o objects/message.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 205s] link.sh: Linked fine -[ 205s] + cp vim vim-enhanced -[ 205s] + RPM_EC=0 -[ 205s] ++ jobs -p -[ 205s] + exit 0 -[ 205s] Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.3NY2Ok -[ 205s] + umask 022 -[ 205s] + cd /home/abuild/rpmbuild/BUILD -[ 205s] + '[' /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 '!=' / ']' -[ 205s] + rm -rf /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 205s] ++ dirname /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 205s] + mkdir -p /home/abuild/rpmbuild/BUILDROOT -[ 205s] + mkdir /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 205s] + cd vim90 -[ 205s] + pushd src -[ 205s] ~/rpmbuild/BUILD/vim90/src ~/rpmbuild/BUILD/vim90 -[ 205s] + /usr/bin/make install DESTDIR=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 'INSTALL=/usr/bin/install -p' BINDIR=/usr/bin VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/vim90 -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin -[ 205s] if test -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim; then \ -[ 205s] mv -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim.rm; \ -[ 205s] rm -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim.rm; \ -[ 205s] fi -[ 205s] cp vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin -[ 205s] strip /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim -[ 205s] cp vimtutor /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vimtutor -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vimtutor -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90 -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90 -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/print -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/print -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/colors -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/colors -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/syntax -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/syntax -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/dist -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/dist -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/xml -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/xml -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import/dist -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import/dist -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/plugin -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/plugin -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/compiler -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/compiler -[ 205s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 "" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/vim.1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/vimtutor.1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/vimdiff.1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/evim.1 -[ 205s] cd ../runtime/doc; if test -z "" -a -f tags; then \ -[ 205s] mv -f tags tags.dist; fi -[ 205s] generating help tags -[ 205s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/doc' -[ 205s] help tags updated -[ 205s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/doc' -[ 205s] cd ../runtime/doc; \ -[ 205s] files=`ls *.txt tags`; \ -[ 205s] files="$files `ls *.??x tags-?? 2>/dev/null || true`"; \ -[ 205s] cp $files /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc; \ -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc; \ -[ 205s] chmod 644 $files -[ 205s] cp ../runtime/doc/*.pl /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/doc/*.pl -[ 205s] cd ../runtime/doc; if test -f tags.dist; then mv -f tags.dist tags; fi -[ 205s] cp ../runtime/menu.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/menu.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/menu.vim -[ 205s] cp ../runtime/synmenu.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/synmenu.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/synmenu.vim -[ 205s] cp ../runtime/delmenu.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/delmenu.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/delmenu.vim -[ 205s] cp ../runtime/defaults.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/defaults.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/defaults.vim -[ 205s] cp ../runtime/evim.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/evim.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/evim.vim -[ 205s] cp ../runtime/mswin.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/mswin.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/mswin.vim -[ 205s] cp ../runtime/bugreport.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/bugreport.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/bugreport.vim -[ 205s] cp ../runtime/vimrc_example.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90 -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/vimrc_example.vim -[ 205s] cp ../runtime/gvimrc_example.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90 -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/gvimrc_example.vim -[ 205s] cp ../runtime/filetype.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/filetype.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/filetype.vim -[ 205s] cp ../runtime/ftoff.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftoff.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftoff.vim -[ 205s] cp ../runtime/scripts.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/scripts.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/scripts.vim -[ 205s] cp ../runtime/ftplugin.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin.vim -[ 205s] cp ../runtime/ftplugof.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugof.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugof.vim -[ 205s] cp ../runtime/indent.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent.vim -[ 205s] cp ../runtime/indoff.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indoff.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indoff.vim -[ 205s] cp ../runtime/optwin.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/optwin.vim -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/optwin.vim -[ 205s] cd ../runtime/print; cp *.ps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/print -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/print; chmod 644 *.ps -[ 205s] cd ../runtime/colors; cp -r *.vim lists tools README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/colors -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/colors; chmod 755 lists tools -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/colors; chmod 644 *.vim README.txt lists/*.vim tools/*.vim -[ 205s] cd ../runtime/syntax; cp *.vim README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/syntax -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/syntax; chmod 644 *.vim README.txt -[ 205s] cd ../runtime/indent; cp *.vim README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/indent; chmod 644 *.vim README.txt -[ 205s] cd ../runtime/autoload; cp *.vim README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload; chmod 644 *.vim README.txt -[ 205s] cd ../runtime/autoload/dist; cp *.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/dist -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/dist; chmod 644 *.vim -[ 205s] cd ../runtime/autoload/xml; cp *.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/xml -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/autoload/xml; chmod 644 *.vim -[ 205s] cd ../runtime/import/dist; cp *.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import/dist -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/import/dist; chmod 644 *.vim -[ 205s] cd ../runtime/plugin; cp *.vim README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/plugin -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/plugin; chmod 644 *.vim README.txt -[ 205s] cd ../runtime/ftplugin; cp *.vim README.txt logtalk.dict /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/ftplugin; chmod 644 *.vim README.txt logtalk.dict -[ 205s] cd ../runtime/compiler; cp *.vim README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/compiler -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/compiler; chmod 644 *.vim README.txt -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros -[ 205s] cp -r ../runtime/macros/* /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros -[ 205s] chmod 755 `find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros -type d -print` -[ 205s] chmod 644 `find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros -type f -print` -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros/less.sh -[ 205s] cvs=`find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/macros \( -name CVS -o -name AAPDIR -o -name "*.info" \) -print`; \ -[ 205s] if test -n "$cvs"; then \ -[ 205s] rm -rf $cvs; \ -[ 205s] fi -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/pack -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/pack -[ 205s] cp -r ../runtime/pack/* /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/pack -[ 205s] chmod 755 `find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/pack -type d -print` -[ 205s] chmod 644 `find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/pack -type f -print` -[ 205s] cp ../runtime/tutor/README* ../runtime/tutor/tutor* /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor -[ 205s] rm -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor/*.info -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor/* -[ 205s] if test -f ../runtime/spell/en.latin1.spl; then \ -[ 205s] cp ../runtime/spell/*.spl ../runtime/spell/*.sug ../runtime/spell/*.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell; \ -[ 205s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell/*.spl /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell/*.sug /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/spell/*.vim; \ -[ 205s] fi -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin; ln -s vim ex -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin; ln -s vim view -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin; ln -s vim rvim -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin; ln -s vim rview -[ 205s] cd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin; ln -s vim vimdiff -[ 205s] /bin/sh ./installml.sh install "" \ -[ 205s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 205s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/ex.1 -[ 205s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/view.1 -[ 205s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/rvim.1 -[ 205s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/rview.1 -[ 205s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools -[ 205s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1 "-da" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1 "-da" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1 "-da.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1 "-de" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1 "-de" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1 "-de.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1 "-fr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/xxd.1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1 "-fr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/xxd.1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1 "-fr.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/xxd.1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1 "-it" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1 -[ 205s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/xxd.1 -[ 205s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1 "-it" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 205s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1 "-it.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1 "-ja.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1 "-pl" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1 "-pl" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1 "-pl.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1 "-ru" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1 "-ru.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/xxd.1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1 "-tr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1 "-tr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1 -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1 "-tr.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] creating /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1 -[ 206s] if test -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd; then \ -[ 206s] mv -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd.rm; \ -[ 206s] rm -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd.rm; \ -[ 206s] fi -[ 206s] cp xxd/xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin -[ 206s] strip /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd -[ 206s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/xxd -[ 206s] /bin/sh ./installman.sh xxd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 "" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1/xxd.1 -[ 206s] cp -r ../runtime/tools/* /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools -[ 206s] cvs=`find /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools \( -name CVS -o -name AAPDIR \) -print`; \ -[ 206s] if test -n "$cvs"; then \ -[ 206s] rm -rf $cvs; \ -[ 206s] fi -[ 206s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/* -[ 206s] perlpath=`./which.sh perl` && sed -e "s+/usr/bin/perl+$perlpath+" ../runtime/tools/efm_perl.pl >/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/efm_perl.pl -[ 206s] awkpath=`./which.sh nawk` && sed -e "s+/usr/bin/nawk+$awkpath+" ../runtime/tools/mve.awk >/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/mve.awk; if test -z "$awkpath"; then \ -[ 206s] awkpath=`./which.sh gawk` && sed -e "s+/usr/bin/nawk+$awkpath+" ../runtime/tools/mve.awk >/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/mve.awk; if test -z "$awkpath"; then \ -[ 206s] awkpath=`./which.sh awk` && sed -e "s+/usr/bin/nawk+$awkpath+" ../runtime/tools/mve.awk >/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/mve.awk; fi; fi -[ 206s] chmod 755 `grep -l "^#!" /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tools/*` -[ 206s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] make[1]: Nothing to be done for 'first'. -[ 206s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] make[1]: Nothing to be done for 'converted'. -[ 206s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang -[ 206s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang -[ 206s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/keymap -[ 206s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/keymap -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1 "-da" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/vimdiff.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1 "-da" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/vimdiff.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1 "-da.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/vimdiff.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1 "-de" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1/vim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1 "-de" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1/vim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1 "-de.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1/vim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1 "-fr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1 "-fr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1 "-fr.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1 "-it" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1 "-it" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1 "-it.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1 "-ja.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1 "-pl" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1 "-pl" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1 "-pl.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1 "-ru" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1 "-ru.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1 "-tr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1 "-tr" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/evim.1 -[ 206s] /bin/sh ./installman.sh install /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1 "-tr.UTF-8" /usr/share/vim /usr/share/vim/vim90 /etc ../runtime/doc 644 vim vimdiff evim -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/vim.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/vimtutor.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/vimdiff.1 -[ 206s] installing /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/evim.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.ISO8859-1/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/da.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.ISO8859-1/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/de.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.ISO8859-1/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/fr.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.ISO8859-1/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/it.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ja/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.ISO8859-2/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/pl.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.KOI8-R/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.ISO8859-9/man1/rview.1 -[ 206s] /bin/sh ./installml.sh install "" \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1 vim vimdiff evim ex view rvim rview gvim gview rgvim rgview gvimdiff eview -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/ex.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/view.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/rvim.1 -[ 206s] creating link /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/tr.UTF-8/man1/rview.1 -[ 206s] if test -n "yes" -a -f po/Makefile; then \ -[ 206s] cd po; /usr/bin/make prefix=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr LOCALEDIR=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang \ -[ 206s] INSTALL_DATA=cp FILEMOD=644 install; \ -[ 206s] fi -[ 206s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] for lang in af ca cs cs.cp1250 da de en_GB eo es fi fr ga it ja ja.euc-jp ja.sjis ko ko.UTF-8 lv nb nl no pl pl.UTF-8 pl.cp1250 pt_BR ru ru.cp1251 sk sk.cp1250 sr sv tr uk uk.cp1251 vi zh_CN zh_CN.UTF-8 zh_CN.cp936 zh_TW zh_TW.UTF-8 ; do \ -[ 206s] dir=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang/$lang/; \ -[ 206s] if test ! -x "$dir"; then \ -[ 206s] mkdir $dir; chmod 755 $dir; \ -[ 206s] fi; \ -[ 206s] dir=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang/$lang/LC_MESSAGES; \ -[ 206s] if test ! -x "$dir"; then \ -[ 206s] mkdir $dir; chmod 755 $dir; \ -[ 206s] fi; \ -[ 206s] if test -r $lang.mo; then \ -[ 206s] cp $lang.mo $dir/vim.mo; \ -[ 206s] chmod 644 $dir/vim.mo; \ -[ 206s] fi; \ -[ 206s] done -[ 206s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 206s] if test -d ../runtime/lang; then \ -[ 206s] cp ../runtime/lang/README.txt ../runtime/lang/*.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang; \ -[ 206s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang/README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang/*.vim; \ -[ 206s] fi -[ 206s] if test -d ../runtime/keymap; then \ -[ 206s] cp ../runtime/keymap/README.txt ../runtime/keymap/*.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/keymap; \ -[ 206s] chmod 644 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/keymap/README.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/keymap/*.vim; \ -[ 206s] fi -[ 206s] if test -n "/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64"; then \ -[ 206s] /bin/sh install-sh -c -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/32x32/apps \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/16x16/apps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications; \ -[ 206s] fi -[ 206s] if test -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps -a -w /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps \ -[ 206s] -a ! -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps/gvim.png; then \ -[ 206s] cp ../runtime/vim48x48.png /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps/gvim.png; \ -[ 206s] if test -z "/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64" -a -x "" \ -[ 206s] -a -w /usr/share/icons/hicolor \ -[ 206s] -a -f /usr/share/icons/hicolor/index.theme; then \ -[ 206s] -q /usr/share/icons/hicolor; \ -[ 206s] fi \ -[ 206s] fi -[ 206s] if test -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/32x32/apps -a -w /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/32x32/apps \ -[ 206s] -a ! -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/32x32/apps/gvim.png; then \ -[ 206s] cp ../runtime/vim32x32.png /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/32x32/apps/gvim.png; \ -[ 206s] fi -[ 206s] if test -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/16x16/apps -a -w /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/16x16/apps \ -[ 206s] -a ! -f /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/16x16/apps/gvim.png; then \ -[ 206s] cp ../runtime/vim16x16.png /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/locolor/16x16/apps/gvim.png; \ -[ 206s] fi -[ 206s] if test -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications -a -w /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications; then \ -[ 206s] if test -f po/vim.desktop -a -f po/gvim.desktop; then \ -[ 206s] cp po/vim.desktop po/gvim.desktop \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications; \ -[ 206s] else \ -[ 206s] cp ../runtime/vim.desktop \ -[ 206s] ../runtime/gvim.desktop \ -[ 206s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications; \ -[ 206s] fi; \ -[ 206s] if test -z "/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64" -a -x ""; then \ -[ 206s] -q /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications; \ -[ 206s] fi \ -[ 206s] fi -[ 206s] + make installgtutorbin DESTDIR=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 BINDIR=/usr/bin VIMRCLOC=/etc VIMRUNTIMEDIR=/usr/share/vim/vim90 -[ 206s] cp gvimtutor /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvimtutor -[ 206s] chmod 755 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvimtutor -[ 206s] + install -m755 vim-minimal /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vi -[ 206s] + install -m755 vim-enhanced /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim -[ 206s] + install -m755 vim-X11 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvim -[ 206s] + popd -[ 206s] ~/rpmbuild/BUILD/vim90 -[ 206s] + rm -f README.txt.info README_ami.txt.info README_amibin.txt.info README_amisrc.txt.info -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/autoload -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/autoload -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/colors -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/colors -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/compiler -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/compiler -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/doc -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/doc -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/ftdetect -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/ftdetect -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/ftplugin -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/ftplugin -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/indent -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/indent -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/keymap -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/keymap -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/lang -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/lang -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/plugin -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/plugin -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/print -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/print -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/spell -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/spell -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/syntax -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/syntax -[ 206s] + for dir in {autoload,colors,compiler,doc,ftdetect,ftplugin,indent,keymap,lang,plugin,print,spell,syntax,tutor} -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/tutor -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/after/tutor -[ 206s] + install -m644 /home/abuild/rpmbuild/BUILD/vim90/runtime/doc/uganda.txt /home/abuild/rpmbuild/BUILD/vim90/LICENSE -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/16x16/apps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/32x32/apps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/48x48/apps /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/icons/hicolor/64x64/apps -[ 206s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/metainfo -[ 206s] + cat -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvi,rview,view,ex} -[ 206s] + ln -sf vi /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/rvi -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvi,rview,view,ex} -[ 206s] + ln -sf vi /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/rview -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvi,rview,view,ex} -[ 206s] + ln -sf vi /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/view -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvi,rview,view,ex} -[ 206s] + ln -sf vi /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/ex -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvim,vimdiff} -[ 206s] + ln -sf vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/rvim -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{rvim,vimdiff} -[ 206s] + ln -sf vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vimdiff -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{gview,gex,evim,gvimdiff,vimx} -[ 206s] + ln -sf gvim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gview -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{gview,gex,evim,gvimdiff,vimx} -[ 206s] + ln -sf gvim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gex -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{gview,gex,evim,gvimdiff,vimx} -[ 206s] + ln -sf gvim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/evim -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{gview,gex,evim,gvimdiff,vimx} -[ 206s] + ln -sf gvim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvimdiff -[ 206s] + for file in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/{gview,gex,evim,gvimdiff,vimx} -[ 206s] + ln -sf gvim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vimx -[ 206s] + pushd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 -[ 206s] ~/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man1 ~/rpmbuild/BUILD/vim90 -[ 206s] + sed -i s,/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64,, vim.1 vimtutor.1 -[ 206s] + rm -f rvim.1 -[ 206s] + install -p vim.1 vi.1 -[ 206s] + ln -sf vi.1.gz rvi.1.gz -[ 206s] + ln -sf vim.1.gz vimdiff.1.gz -[ 206s] + popd -[ 206s] ~/rpmbuild/BUILD/vim90 -[ 206s] + desktop-file-install --dir /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/applications /home/abuild/rpmbuild/BUILD/vim90/runtime/gvim.desktop -[ 206s] + appstream-util validate-relax --nonet /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/metainfo/gvim.appdata.xml -[ 207s] /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/metainfo/gvim.appdata.xml: OK -[ 207s] + pushd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor -[ 207s] ~/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/tutor ~/rpmbuild/BUILD/vim90 -[ 207s] + ln -sf menu_ja_jp.ujis.vim /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vim90/lang/menu_ja_jp.eucjp.vim -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.ca -o tutor.ca.bak -[ 207s] + mv tutor.ca.bak tutor.ca -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.it -o tutor.it.bak -[ 207s] + mv tutor.it.bak tutor.it -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.fr -o tutor.fr.bak -[ 207s] + mv tutor.fr.bak tutor.fr -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.es -o tutor.es.bak -[ 207s] + mv tutor.es.bak tutor.es -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.de -o tutor.de.bak -[ 207s] + mv tutor.de.bak tutor.de -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.sv -o tutor.sv.bak -[ 207s] + mv tutor.sv.bak tutor.sv -[ 207s] + for files in {tutor.ca,tutor.it,tutor.fr,tutor.es,tutor.de,tutor.sv,tutor.no} -[ 207s] + iconv -f CP1252 -t UTF8 tutor.no -o tutor.no.bak -[ 207s] + mv tutor.no.bak tutor.no -[ 207s] + iconv -f ISO-8859-2 -t UTF8 tutor.pl -o tutor.pl.bak -[ 207s] + mv tutor.pl.bak tutor.pl -[ 207s] + iconv -f ISO-8859-2 -t UTF8 tutor.sk -o tutor.sk.bak -[ 207s] + mv tutor.sk.bak tutor.sk -[ 207s] + iconv -f KOI8R -t UTF8 tutor.ru -o tutor.ru.bak -[ 207s] + mv tutor.ru.bak tutor.ru -[ 207s] + popd -[ 207s] ~/rpmbuild/BUILD/vim90 -[ 207s] + install -Dpm644 /home/abuild/rpmbuild/SOURCES/virc /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/etc/virc -[ 207s] + install -pm644 /home/abuild/rpmbuild/SOURCES/vimrc /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/etc/vimrc -[ 207s] + pushd /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man -[ 207s] ~/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man ~/rpmbuild/BUILD/vim90 -[ 207s] ++ find da/ de/ fr/ it/ ja/ pl/ tr/ -type f -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file da/man1/vim.1 -[ 207s] + [[ da/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 da/man1/vim.1 -o da/man1/vim.1.bak -[ 207s] + mv da/man1/vim.1.bak da/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file da/man1/vimtutor.1 -[ 207s] + [[ da/man1/vimtutor.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 da/man1/vimtutor.1 -o da/man1/vimtutor.1.bak -[ 207s] + mv da/man1/vimtutor.1.bak da/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file da/man1/vimdiff.1 -[ 207s] + [[ da/man1/vimdiff.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 da/man1/vimdiff.1 -o da/man1/vimdiff.1.bak -[ 207s] + mv da/man1/vimdiff.1.bak da/man1/vimdiff.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file de/man1/vim.1 -[ 207s] + [[ de/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 de/man1/vim.1 -o de/man1/vim.1.bak -[ 207s] + mv de/man1/vim.1.bak de/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file fr/man1/evim.1 -[ 207s] + [[ fr/man1/evim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 fr/man1/evim.1 -o fr/man1/evim.1.bak -[ 207s] + mv fr/man1/evim.1.bak fr/man1/evim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file fr/man1/vim.1 -[ 207s] + [[ fr/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 fr/man1/vim.1 -o fr/man1/vim.1.bak -[ 207s] + mv fr/man1/vim.1.bak fr/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file fr/man1/vimtutor.1 -[ 207s] + [[ fr/man1/vimtutor.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 fr/man1/vimtutor.1 -o fr/man1/vimtutor.1.bak -[ 207s] + mv fr/man1/vimtutor.1.bak fr/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file fr/man1/xxd.1 -[ 207s] + [[ fr/man1/xxd.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 fr/man1/xxd.1 -o fr/man1/xxd.1.bak -[ 207s] + mv fr/man1/xxd.1.bak fr/man1/xxd.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file fr/man1/vimdiff.1 -[ 207s] + [[ fr/man1/vimdiff.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 fr/man1/vimdiff.1 -o fr/man1/vimdiff.1.bak -[ 207s] + mv fr/man1/vimdiff.1.bak fr/man1/vimdiff.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file it/man1/evim.1 -[ 207s] + [[ it/man1/evim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 it/man1/evim.1 -o it/man1/evim.1.bak -[ 207s] + mv it/man1/evim.1.bak it/man1/evim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file it/man1/vim.1 -[ 207s] + [[ it/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 it/man1/vim.1 -o it/man1/vim.1.bak -[ 207s] + mv it/man1/vim.1.bak it/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file it/man1/vimtutor.1 -[ 207s] + [[ it/man1/vimtutor.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 it/man1/vimtutor.1 -o it/man1/vimtutor.1.bak -[ 207s] + mv it/man1/vimtutor.1.bak it/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file it/man1/xxd.1 -[ 207s] + [[ it/man1/xxd.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 it/man1/xxd.1 -o it/man1/xxd.1.bak -[ 207s] + mv it/man1/xxd.1.bak it/man1/xxd.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file it/man1/vimdiff.1 -[ 207s] + [[ it/man1/vimdiff.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 it/man1/vimdiff.1 -o it/man1/vimdiff.1.bak -[ 207s] + mv it/man1/vimdiff.1.bak it/man1/vimdiff.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file ja/man1/evim.1 -[ 207s] + [[ ja/man1/evim.1: troff or preprocessor input, Unicode text, UTF-8 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 ja/man1/evim.1 -o ja/man1/evim.1.bak -[ 207s] + mv ja/man1/evim.1.bak ja/man1/evim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file ja/man1/vim.1 -[ 207s] + [[ ja/man1/vim.1: troff or preprocessor input, Unicode text, UTF-8 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 ja/man1/vim.1 -o ja/man1/vim.1.bak -[ 207s] + mv ja/man1/vim.1.bak ja/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file ja/man1/vimtutor.1 -[ 207s] + [[ ja/man1/vimtutor.1: troff or preprocessor input, Unicode text, UTF-8 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 ja/man1/vimtutor.1 -o ja/man1/vimtutor.1.bak -[ 207s] + mv ja/man1/vimtutor.1.bak ja/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file ja/man1/xxd.1 -[ 207s] + [[ ja/man1/xxd.1: troff or preprocessor input, Unicode text, UTF-8 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 ja/man1/xxd.1 -o ja/man1/xxd.1.bak -[ 207s] + mv ja/man1/xxd.1.bak ja/man1/xxd.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file ja/man1/vimdiff.1 -[ 207s] + [[ ja/man1/vimdiff.1: troff or preprocessor input, Unicode text, UTF-8 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 ja/man1/vimdiff.1 -o ja/man1/vimdiff.1.bak -[ 207s] + mv ja/man1/vimdiff.1.bak ja/man1/vimdiff.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file pl/man1/evim.1 -[ 207s] + [[ pl/man1/evim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 pl/man1/evim.1 -o pl/man1/evim.1.bak -[ 207s] + mv pl/man1/evim.1.bak pl/man1/evim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file pl/man1/vim.1 -[ 207s] + [[ pl/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 pl/man1/vim.1 -o pl/man1/vim.1.bak -[ 207s] + mv pl/man1/vim.1.bak pl/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file pl/man1/vimtutor.1 -[ 207s] + [[ pl/man1/vimtutor.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 pl/man1/vimtutor.1 -o pl/man1/vimtutor.1.bak -[ 207s] + mv pl/man1/vimtutor.1.bak pl/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file pl/man1/xxd.1 -[ 207s] + [[ pl/man1/xxd.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 pl/man1/xxd.1 -o pl/man1/xxd.1.bak -[ 207s] + mv pl/man1/xxd.1.bak pl/man1/xxd.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file pl/man1/vimdiff.1 -[ 207s] + [[ pl/man1/vimdiff.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 pl/man1/vimdiff.1 -o pl/man1/vimdiff.1.bak -[ 207s] + mv pl/man1/vimdiff.1.bak pl/man1/vimdiff.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file tr/man1/evim.1 -[ 207s] + [[ tr/man1/evim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 tr/man1/evim.1 -o tr/man1/evim.1.bak -[ 207s] + mv tr/man1/evim.1.bak tr/man1/evim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file tr/man1/vim.1 -[ 207s] + [[ tr/man1/vim.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 tr/man1/vim.1 -o tr/man1/vim.1.bak -[ 207s] + mv tr/man1/vim.1.bak tr/man1/vim.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file tr/man1/vimtutor.1 -[ 207s] + [[ tr/man1/vimtutor.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 tr/man1/vimtutor.1 -o tr/man1/vimtutor.1.bak -[ 207s] + mv tr/man1/vimtutor.1.bak tr/man1/vimtutor.1 -[ 207s] + for files in `find ??/ -type f` -[ 207s] ++ file tr/man1/vimdiff.1 -[ 207s] + [[ tr/man1/vimdiff.1: troff or preprocessor input, ISO-8859 text == *UTF-8\ Unicode\ text* ]] -[ 207s] + iconv -f latin1 -t UTF8 tr/man1/vimdiff.1 -o tr/man1/vimdiff.1.bak -[ 207s] + mv tr/man1/vimdiff.1.bak tr/man1/vimdiff.1 -[ 207s] + popd -[ 207s] ~/rpmbuild/BUILD/vim90 -[ 207s] + mv /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru.UTF-8 /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/ru -[ 207s] + install -d /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/man5 -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + for files in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/man/{man1/{rvim.1,gvim.1,gex.1,gview.1,vimx.1},man5/vimrc.5} -[ 207s] + echo '.so man1/vim.1' -[ 207s] + echo '.so man1/vimdiff.1' -[ 207s] + echo '.so man1/vimtutor.1' -[ 207s] + echo '.so man1/vi.1' -[ 207s] + touch /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/vim/vimfiles/doc/tags -[ 207s] + pushd runtime -[ 207s] ~/rpmbuild/BUILD/vim90/runtime ~/rpmbuild/BUILD/vim90 -[ 207s] + ln -sf ../../vim/vim90/doc docs -[ 207s] + popd -[ 207s] ~/rpmbuild/BUILD/vim90 -[ 207s] + /usr/bin/find-debuginfo -j4 --strict-build-id -i --build-id-seed 9.0-1.oe2203 --unique-debug-suffix -9.0-1.oe2203.aarch64 --unique-debug-src-base vim-9.0-1.oe2203.aarch64 -S debugsourcefiles.list /home/abuild/rpmbuild/BUILD/vim90 -[ 207s] explicitly decompress any DWARF compressed ELF sections in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim -[ 207s] explicitly decompress any DWARF compressed ELF sections in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvim -[ 207s] explicitly decompress any DWARF compressed ELF sections in /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vi -[ 207s] extracting debug info from /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vim -[ 207s] extracting debug info from /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/vi -[ 207s] extracting debug info from /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/bin/gvim -[ 208s] cpio: src/auto/gui_gtk_gresources.c: Cannot stat: No such file or directory -[ 208s] cpio: src/auto/gui_gtk_gresources.h: Cannot stat: No such file or directory -[ 208s] cpio: src/if_perl.c: Cannot stat: No such file or directory -[ 208s] 22860 blocks -[ 208s] + /usr/lib/rpm/check-buildroot -[ 208s] + /usr/lib/rpm/brp-ldconfig -[ 208s] + /usr/lib/rpm/brp-compress -[ 209s] + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip -[ 212s] + /usr/lib/rpm/brp-python-bytecompile /usr/bin/python 1 1 -[ 212s] + /usr/lib/rpm/brp-python-hardlink -[ 212s] Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.fAGDIE -[ 212s] + umask 022 -[ 212s] + cd /home/abuild/rpmbuild/BUILD -[ 212s] + cd vim90 -[ 212s] + export TERM=xterm -[ 212s] + TERM=xterm -[ 212s] + LC_ALL=en_US.UTF-8 -[ 212s] + make -j1 test -[ 212s] Starting make in the src directory. -[ 212s] If there are problems, cd to the src directory and run make there -[ 212s] cd src && make test -[ 212s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src' -[ 212s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/json_test.o json_test.c -[ 213s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 213s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 213s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o json_test objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/memfile.o objects/message.o objects/json_test.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 214s] link.sh: Linked fine -[ 214s] ./json_test || exit 1; echo passed; -[ 214s] passed -[ 214s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/kword_test.o kword_test.c -[ 215s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 215s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 215s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o kword_test objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/json.o objects/memfile.o objects/message.o objects/kword_test.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 216s] link.sh: Linked fine -[ 216s] ./kword_test || exit 1; echo passed; -[ 216s] passed -[ 216s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/memfile_test.o memfile_test.c -[ 216s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 217s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 217s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o memfile_test objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/json.o objects/message.o objects/memfile_test.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 217s] link.sh: Linked fine -[ 217s] ./memfile_test || exit 1; echo passed; -[ 217s] passed -[ 217s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/message_test.o message_test.c -[ 219s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 219s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 219s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o message_test objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/json.o objects/memfile.o objects/message_test.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 220s] link.sh: Linked fine -[ 220s] ./message_test || exit 1; echo passed; -[ 220s] passed -[ 220s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/libvterm' -[ 220s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/encoding.lo -c src/encoding.c -[ 220s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/keyboard.lo -c src/keyboard.c -[ 220s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/mouse.lo -c src/mouse.c -[ 220s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/parser.lo -c src/parser.c -[ 221s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/pen.lo -c src/pen.c -[ 221s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/screen.lo -c src/screen.c -[ 222s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/state.lo -c src/state.c -[ 225s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/unicode.lo -c src/unicode.c -[ 225s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o src/vterm.lo -c src/vterm.c -[ 225s] libtool --quiet --mode=link --tag=CC gcc -rpath /usr/local/lib -version-info 0:0:0 -o libvterm.la src/encoding.lo src/keyboard.lo src/mouse.lo src/parser.lo src/pen.lo src/screen.lo src/state.lo src/unicode.lo src/vterm.lo -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -[ 225s] libtool --quiet --mode=compile --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o t/harness.lo -c t/harness.c -[ 227s] libtool --quiet --mode=link --tag=CC gcc -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -Wall -Iinclude -std=c99 -Wpedantic -DINLINE="" -o t/harness t/harness.lo libvterm.la -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -static -[ 227s] for T in `ls t/[0-9]*.test`; do echo "** $T **"; perl t/run-test.pl $T || exit 1; done -[ 227s] ** t/02parser.test ** -[ 227s] > Basic text -[ 227s] > C0 -[ 227s] > C1 8bit -[ 227s] > C1 7bit -[ 227s] > High bytes -[ 227s] > Mixed -[ 227s] > Escape -[ 227s] > Escape 2-byte -[ 227s] > Split write Escape -[ 227s] > Escape cancels Escape, starts another -[ 227s] > CAN cancels Escape, returns to normal mode -[ 227s] > C0 in Escape interrupts and continues -[ 227s] > CSI 0 args -[ 227s] > CSI 1 arg -[ 227s] > CSI 2 args -[ 227s] > CSI 1 arg 1 sub -[ 227s] > CSI many digits -[ 227s] > CSI leading zero -[ 227s] > CSI qmark -[ 227s] > CSI greater -[ 227s] > CSI SP -[ 227s] > Mixed CSI -[ 227s] > Split write -[ 227s] > Escape cancels CSI, starts Escape -[ 227s] > CAN cancels CSI, returns to normal mode -[ 227s] > C0 in Escape interrupts and continues -[ 227s] > OSC BEL -[ 227s] > OSC ST (7bit) -[ 227s] > OSC ST (8bit) -[ 227s] > OSC in parts -[ 227s] > OSC BEL without semicolon -[ 227s] > OSC ST without semicolon -[ 227s] > Escape cancels OSC, starts Escape -[ 227s] > CAN cancels OSC, returns to normal mode -[ 227s] > C0 in OSC interrupts and continues -[ 227s] > DCS BEL -[ 227s] > DCS ST (7bit) -[ 227s] > DCS ST (8bit) -[ 227s] > Split write of 7bit ST -[ 227s] > Escape cancels DCS, starts Escape -[ 227s] > CAN cancels DCS, returns to normal mode -[ 227s] > C0 in OSC interrupts and continues -[ 227s] > APC BEL -[ 227s] > APC ST (7bit) -[ 227s] > APC ST (8bit) -[ 227s] > PM BEL -[ 227s] > PM ST (7bit) -[ 227s] > PM ST (8bit) -[ 227s] > SOS BEL -[ 227s] > SOS ST (7bit) -[ 227s] > SOS ST (8bit) -[ 227s] > SOS can contain any C0 or C1 code -[ 227s] > NUL ignored -[ 227s] > NUL ignored within CSI -[ 227s] > DEL ignored -[ 227s] > DEL ignored within CSI -[ 227s] > DEL inside text" -[ 227s] ** t/03encoding_utf8.test ** -[ 227s] > Low -[ 227s] > 2 byte -[ 227s] > 3 byte -[ 227s] > 4 byte -[ 227s] > Early termination -[ 227s] > Early restart -[ 227s] > Overlong -[ 227s] > UTF-16 Surrogates -[ 227s] > Split write -[ 227s] ** t/10state_putglyph.test ** -[ 227s] > Low -[ 227s] > UTF-8 1 char -[ 227s] > UTF-8 split writes -[ 227s] > UTF-8 wide char -[ 227s] > UTF-8 emoji wide char -[ 227s] > UTF-8 combining chars -[ 227s] > Combining across buffers -[ 227s] > DECSCA protected -[ 227s] ** t/11state_movecursor.test ** -[ 227s] > Implicit -[ 227s] > Backspace -[ 227s] > Horizontal Tab -[ 227s] > Carriage Return -[ 227s] > Linefeed -[ 227s] > Backspace bounded by lefthand edge -[ 227s] > Backspace cancels phantom -[ 227s] > HT bounded by righthand edge -[ 227s] > Index -[ 227s] > Reverse Index -[ 227s] > Newline -[ 227s] > Cursor Forward -[ 227s] > Cursor Down -[ 227s] > Cursor Up -[ 227s] > Cursor Backward -[ 227s] > Cursor Next Line -[ 227s] > Cursor Previous Line -[ 227s] > Cursor Horizontal Absolute -[ 227s] > Cursor Position -[ 227s] > Cursor Position cancels phantom -[ 227s] > Bounds Checking -[ 227s] > Horizontal Position Absolute -[ 227s] > Horizontal Position Relative -[ 227s] > Horizontal Position Backward -[ 227s] > Horizontal and Vertical Position -[ 227s] > Vertical Position Absolute -[ 227s] > Vertical Position Relative -[ 227s] > Vertical Position Backward -[ 227s] > Horizontal Tab -[ 227s] > Cursor Horizontal Tab -[ 227s] > Cursor Backward Tab -[ 227s] ** t/12state_scroll.test ** -[ 227s] > Linefeed -[ 227s] > Index -[ 227s] > Reverse Index -[ 227s] > Linefeed in DECSTBM -[ 227s] > Linefeed outside DECSTBM -[ 227s] > Index in DECSTBM -[ 227s] > Reverse Index in DECSTBM -[ 227s] > Linefeed in DECSTBM+DECSLRM -[ 227s] > IND/RI in DECSTBM+DECSLRM -[ 227s] > DECRQSS on DECSTBM -[ 227s] > DECRQSS on DECSLRM -[ 227s] > Setting invalid DECSLRM with !DECVSSM is still rejected -[ 227s] > Scroll Down -[ 227s] > Scroll Up -[ 227s] > SD/SU in DECSTBM -[ 227s] > SD/SU in DECSTBM+DECSLRM -[ 227s] > Invalid boundaries -[ 227s] > Scroll Down move+erase emulation -[ 227s] > Scroll Up move+erase emulation -[ 227s] > DECSTBM resets cursor position -[ 227s] ** t/13state_edit.test ** -[ 227s] > ICH -[ 227s] > ICH with DECSLRM -[ 227s] > ICH outside DECSLRM -[ 227s] > DCH -[ 227s] > DCH with DECSLRM -[ 227s] > DCH outside DECSLRM -[ 227s] > ECH -[ 227s] > IL -[ 227s] > IL with DECSTBM -[ 227s] > IL outside DECSTBM -[ 227s] > IL with DECSTBM+DECSLRM -[ 227s] > DL -[ 227s] > DL with DECSTBM -[ 227s] > DL outside DECSTBM -[ 227s] > DL with DECSTBM+DECSLRM -[ 227s] > DECIC -[ 227s] > DECIC with DECSTBM+DECSLRM -[ 227s] > DECIC outside DECSLRM -[ 227s] > DECDC -[ 227s] > DECDC with DECSTBM+DECSLRM -[ 227s] > DECDC outside DECSLRM -[ 227s] > EL 0 -[ 227s] > EL 1 -[ 227s] > EL 2 -[ 227s] > SEL -[ 227s] > ED 0 -[ 227s] > ED 1 -[ 227s] > ED 2 -[ 227s] > SED -[ 227s] > DECRQSS on DECSCA -[ 227s] > ICH move+erase emuation -[ 227s] > DCH move+erase emulation -[ 227s] ** t/14state_encoding.test ** -[ 227s] > Default -[ 227s] > Designate G0=UK -[ 227s] > Designate G0=DEC drawing -[ 227s] > Designate G1 + LS1 -[ 227s] > LS0 -[ 227s] > Designate G2 + LS2 -[ 227s] > Designate G3 + LS3 -[ 227s] > SS2 -[ 227s] > SS3 -[ 227s] > LS1R -[ 227s] > LS2R -[ 227s] > LS3R -[ 227s] > Mixed US-ASCII and UTF-8 -[ 227s] ** t/15state_mode.test ** -[ 227s] > Insert/Replace Mode -[ 227s] > Insert mode only happens once for UTF-8 combining -[ 227s] > Newline/Linefeed mode -[ 227s] > DEC origin mode -[ 227s] > DECRQM on DECOM -[ 227s] > Origin mode with DECSLRM -[ 227s] > Origin mode bounds cursor to scrolling region -[ 227s] > Origin mode without scroll region -[ 227s] ** t/16state_resize.test ** -[ 227s] > Placement -[ 227s] > Resize -[ 227s] > Resize without reset -[ 227s] > Resize shrink moves cursor -[ 227s] > Resize grow doesn't cancel phantom -[ 227s] ** t/17state_mouse.test ** -[ 227s] > DECRQM on with mouse off -[ 227s] > Mouse in simple button report mode -[ 227s] > Press 1 -[ 227s] > Release 1 -[ 227s] > Ctrl-Press 1 -[ 227s] > Button 2 -[ 227s] > Position -[ 227s] > Wheel events -[ 227s] > DECRQM on mouse button mode -[ 227s] > Drag events -[ 227s] > DECRQM on mouse drag mode -[ 227s] > Non-drag motion events -[ 227s] > DECRQM on mouse motion mode -[ 227s] > Bounds checking -[ 227s] > DECRQM on standard encoding mode -[ 227s] > UTF-8 extended encoding mode -[ 227s] > DECRQM on UTF-8 extended encoding mode -[ 227s] > SGR extended encoding mode -[ 227s] > DECRQM on SGR extended encoding mode -[ 227s] > rxvt extended encoding mode -[ 227s] > DECRQM on rxvt extended encoding mode -[ 227s] > Mouse disabled reports nothing -[ 227s] ** t/18state_termprops.test ** -[ 227s] > Cursor visibility -[ 227s] > Cursor blink -[ 227s] > Cursor shape -[ 227s] > Title -[ 227s] > Title split write -[ 227s] ** t/20state_wrapping.test ** -[ 227s] > 79th Column -[ 227s] > 80th Column Phantom -[ 227s] > Line Wraparound -[ 227s] > Line Wraparound during combined write -[ 227s] > DEC Auto Wrap Mode -[ 227s] > 80th column causes linefeed on wraparound -[ 227s] > 80th column phantom linefeed phantom cancelled by explicit cursor move -[ 227s] ** t/21state_tabstops.test ** -[ 227s] > Initial -[ 227s] > HTS -[ 227s] > TBC 0 -[ 227s] > TBC 3 -[ 227s] > Tabstops after resize -[ 227s] ** t/22state_save.test ** -[ 227s] > Set up state -[ 227s] > Save -[ 227s] > Change state -[ 227s] > Restore -[ 227s] > Save/restore using DECSC/DECRC -[ 227s] > Save twice, restore twice happens on both edge transitions -[ 227s] ** t/25state_input.test ** -[ 227s] > Unmodified ASCII -[ 227s] > Ctrl modifier on ASCII letters -[ 227s] > Alt modifier on ASCII letters -[ 227s] > Ctrl-Alt modifier on ASCII letters -[ 227s] > Special handling of Ctrl-I -[ 227s] > Special handling of Space -[ 227s] > Cursor keys in reset (cursor) mode -[ 227s] > Cursor keys in application mode -[ 227s] > Shift-Tab should be different -[ 227s] > Enter in linefeed mode -[ 227s] > Enter in newline mode -[ 227s] > Unmodified F1 is SS3 P -[ 227s] > Modified F1 is CSI P -[ 227s] > Keypad in DECKPNM -[ 227s] > Keypad in DECKPAM -[ 227s] > Bracketed paste mode off -[ 227s] > Bracketed paste mode on -[ 227s] > Focus reporting disabled -[ 227s] > Focus reporting enabled -[ 227s] ** t/26state_query.test ** -[ 227s] > DA -[ 227s] > DSR -[ 227s] > CPR -[ 227s] > DECCPR -[ 227s] > DECRQSS on DECSCUSR -[ 227s] > DECRQSS on SGR -[ 227s] > DECRQSS on SGR ANSI colours -[ 227s] > DECRQSS on SGR ANSI hi-bright colours -[ 227s] > DECRQSS on SGR RGB8 colours -[ 227s] > S8C1T on DSR -[ 227s] > Truncation on attempted buffer overflow -[ 227s] ** t/27state_reset.test ** -[ 227s] > RIS homes cursor -[ 227s] > RIS cancels scrolling region -[ 227s] > RIS erases screen -[ 227s] > RIS clears tabstops -[ 227s] ** t/28state_dbl_wh.test ** -[ 228s] > Single Width, Single Height -[ 228s] > Double Width, Single Height -[ 228s] > Double Height -[ 228s] > Double Width scrolling -[ 228s] ** t/29state_fallback.test ** -[ 228s] > Unrecognised control -[ 228s] > Unrecognised CSI -[ 228s] > Unrecognised OSC -[ 228s] > Unrecognised DCS -[ 228s] > Unrecognised APC -[ 228s] > Unrecognised PM -[ 228s] > Unrecognised SOS -[ 228s] ** t/30state_pen.test ** -[ 228s] > Reset -[ 228s] > Bold -[ 228s] > Underline -[ 228s] > Italic -[ 228s] > Blink -[ 228s] > Reverse -[ 228s] > Font Selection -[ 228s] > Foreground -[ 228s] > Background -[ 228s] > Bold+ANSI colour == highbright -[ 228s] ** t/31state_rep.test ** -[ 228s] > REP no argument -[ 228s] > REP zero (zero should be interpreted as one) -[ 228s] > REP lowercase a times two -[ 228s] > REP with UTF-8 1 char -[ 228s] > REP with UTF-8 wide char -[ 228s] > REP with UTF-8 combining character -[ 228s] > REP till end of line -[ 228s] ** t/32state_flow.test ** -[ 228s] > Spillover text marks continuation on second line -[ 228s] > CRLF in column 80 does not mark continuation -[ 228s] > EL cancels continuation of following line -[ 228s] ** t/40state_selection.test ** -[ 228s] > Set clipboard; final chunk len 4 -[ 228s] > Set clipboard; final chunk len 3 -[ 228s] > Set clipboard; final chunk len 2 -[ 228s] > Set clipboard; split between chunks -[ 228s] > Set clipboard; split within chunk -[ 228s] > Query clipboard -[ 228s] > Send clipboard; final chunk len 4 -[ 228s] > Send clipboard; final chunk len 3 -[ 228s] > Send clipboard; final chunk len 2 -[ 228s] > Send clipboard; split between chunks -[ 228s] > Send clipboard; split within chunk -[ 228s] ** t/60screen_ascii.test ** -[ 228s] > Get -[ 228s] > Erase -[ 228s] > Copycell -[ 228s] > Space padding -[ 228s] > Linefeed padding -[ 228s] > Altscreen -[ 228s] ** t/61screen_unicode.test ** -[ 228s] > Single width UTF-8 -[ 228s] > Wide char -[ 228s] > Combining char -[ 228s] > 10 combining accents should not crash -[ 228s] > 40 combining accents in two split writes of 20 should not crash -[ 228s] > Outputting CJK doublewidth in 80th column should wraparound to next line and not crash" -[ 228s] ** t/62screen_damage.test ** -[ 228s] > Putglyph -[ 228s] > Erase -[ 228s] > Scroll damages entire line in two chunks -[ 228s] > Scroll down damages entire screen in two chunks -[ 228s] > Altscreen damages entire area -[ 228s] > Scroll invokes moverect but not damage -[ 228s] > Merge to cells -[ 228s] > Merge entire rows -[ 228s] > Merge entire screen -[ 228s] > Merge entire screen with moverect -[ 228s] > Merge scroll -[ 228s] > Merge scroll with damage -[ 228s] > Merge scroll with damage past region -[ 228s] > Damage entirely outside scroll region -[ 228s] > Damage overlapping scroll region -[ 228s] > Merge scroll*2 with damage -[ 228s] ** t/63screen_resize.test ** -[ 228s] > Resize wider preserves cells -[ 228s] > Resize wider allows print in new area -[ 228s] > Resize shorter with blanks just truncates -[ 228s] > Resize shorter with content must scroll -[ 228s] > Resize shorter does not lose line with cursor -[ 228s] > Resize shorter does not send the cursor to a negative row -[ 228s] > Resize taller attempts to pop scrollback -[ 228s] > Resize can operate on altscreen -[ 228s] ** t/64screen_pen.test ** -[ 228s] > Plain -[ 228s] > Bold -[ 228s] > Italic -[ 228s] > Underline -[ 228s] > Reset -[ 228s] > Font -[ 228s] > Foreground -[ 228s] > Background -[ 228s] > EL sets reverse and colours to end of line -[ 228s] > DECSCNM xors reverse for entire screen -[ 228s] ** t/65screen_protect.test ** -[ 228s] > Selective erase -[ 228s] > Non-selective erase -[ 228s] ** t/66screen_extent.test ** -[ 228s] > Bold extent -[ 228s] ** t/67screen_dbl_wh.test ** -[ 228s] > Single Width, Single Height -[ 228s] > Double Width, Single Height -[ 228s] > Double Height -[ 228s] > Late change -[ 228s] > DWL doesn't spill over on scroll -[ 228s] ** t/68screen_termprops.test ** -[ 228s] > Cursor visibility -[ 228s] > Title -[ 228s] ** t/90vttest_01-movement-1.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_01-movement-2.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_01-movement-3.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_01-movement-4.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_02-screen-1.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_02-screen-2.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_02-screen-3.test ** -[ 228s] > Output -[ 228s] ** t/90vttest_02-screen-4.test ** -[ 228s] > Output -[ 228s] ** t/92lp1640917.test ** -[ 228s] > Mouse reporting should not break by idempotent DECSM 1002 -[ 228s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/libvterm' -[ 228s] make -f Makefile vim -[ 228s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src' -[ 228s] gcc -c -I. -Iproto -DHAVE_CONFIG_H -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/generic-hardened-cc1 -fasynchronous-unwind-tables -fstack-clash-protection -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/m -D__linux__ -D_REENTRANT -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 version.c -o objects/version.o -[ 229s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 229s] NOTE: build date/time is fixed: Nov 03 2022 00:00:00 -[ 229s] =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= -[ 229s] link.sh: $LINK_AS_NEEDED set to 'yes': invoking linker directly. -[ 229s] gcc -L. -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -L/usr/local/lib -Wl,--as-needed -o vim objects/alloc.o objects/arabic.o objects/arglist.o objects/autocmd.o objects/beval.o objects/buffer.o objects/change.o objects/blob.o objects/blowfish.o objects/cindent.o objects/clientserver.o objects/clipboard.o objects/cmdexpand.o objects/cmdhist.o objects/crypt.o objects/crypt_zip.o objects/debugger.o objects/dict.o objects/diff.o objects/digraph.o objects/drawline.o objects/drawscreen.o objects/edit.o objects/eval.o objects/evalbuffer.o objects/evalfunc.o objects/evalvars.o objects/evalwindow.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/filepath.o objects/findfile.o objects/float.o objects/fold.o objects/getchar.o objects/gui_xim.o objects/hardcopy.o objects/hashtab.o objects/help.o objects/highlight.o objects/if_cscope.o objects/if_xcmdsrv.o objects/indent.o objects/insexpand.o objects/list.o objects/locale.o objects/map.o objects/mark.o objects/match.o objects/mbyte.o objects/memline.o objects/menu.o objects/misc1.o objects/misc2.o objects/mouse.o objects/move.o objects/normal.o objects/ops.o objects/option.o objects/optionstr.o objects/os_unix.o objects/pathdef.o objects/popupmenu.o objects/popupwin.o objects/profiler.o objects/pty.o objects/quickfix.o objects/regexp.o objects/register.o objects/screen.o objects/scriptfile.o objects/search.o objects/session.o objects/sha256.o objects/sign.o objects/sound.o objects/spell.o objects/spellfile.o objects/spellsuggest.o objects/strings.o objects/syntax.o objects/tag.o objects/term.o objects/terminal.o objects/testing.o objects/textformat.o objects/textobject.o objects/textprop.o objects/time.o objects/typval.o objects/ui.o objects/undo.o objects/usercmd.o objects/userfunc.o objects/version.o objects/vim9cmds.o objects/vim9compile.o objects/vim9execute.o objects/vim9expr.o objects/vim9instr.o objects/vim9script.o objects/vim9type.o objects/viminfo.o objects/window.o objects/bufwrite.o objects/vterm_encoding.o objects/vterm_keyboard.o objects/vterm_mouse.o objects/vterm_parser.o objects/vterm_pen.o objects/vterm_screen.o objects/vterm_state.o objects/vterm_unicode.o objects/vterm_vterm.o objects/if_lua.o objects/if_perl.o objects/if_perlsfio.o objects/if_python3.o objects/if_ruby.o objects/netbeans.o objects/job.o objects/channel.o objects/xdiffi.o objects/xemit.o objects/xprepare.o objects/xutils.o objects/xhistogram.o objects/xpatience.o objects/charset.o objects/json.o objects/main.o objects/memfile.o objects/message.o -lm -lselinux -lncurses -lrt -lacl -lattr -lgpm -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/generic-hardened-ld -fstack-protector-strong -L/usr/local/lib -L/usr/lib64/perl5/CORE -lperl -lpthread -ldl -lm -lcrypt -lutil -lc -[ 229s] link.sh: Linked fine -[ 229s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src' -[ 229s] if test -n "yes" -a -f po/Makefile; then \ -[ 229s] cd po; make -f Makefile check VIM=../vim; \ -[ 229s] fi -[ 229s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 229s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq af.po -[ 229s] touch af.ck -[ 229s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ca.po -[ 230s] touch ca.ck -[ 230s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq cs.po -[ 231s] touch cs.ck -[ 231s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq cs.cp1250.po -[ 231s] touch cs.cp1250.ck -[ 231s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq da.po -[ 232s] touch da.ck -[ 232s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq de.po -[ 233s] touch de.ck -[ 233s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq en_GB.po -[ 233s] touch en_GB.ck -[ 233s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq eo.po -[ 234s] touch eo.ck -[ 234s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq es.po -[ 235s] touch es.ck -[ 235s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq fi.po -[ 236s] touch fi.ck -[ 236s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq fr.po -[ 236s] touch fr.ck -[ 236s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ga.po -[ 237s] touch ga.ck -[ 237s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq it.po -[ 238s] touch it.ck -[ 238s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ja.po -[ 239s] touch ja.ck -[ 239s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ja.euc-jp.po -[ 240s] touch ja.euc-jp.ck -[ 240s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ja.sjis.po -[ 241s] touch ja.sjis.ck -[ 241s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ko.UTF-8.po -[ 241s] touch ko.UTF-8.ck -[ 241s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ko.po -[ 242s] touch ko.ck -[ 242s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq lv.po -[ 242s] touch lv.ck -[ 242s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq nb.po -[ 243s] touch nb.ck -[ 243s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq nl.po -[ 243s] touch nl.ck -[ 243s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq no.po -[ 243s] touch no.ck -[ 243s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq pl.UTF-8.po -[ 244s] touch pl.UTF-8.ck -[ 244s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq pl.po -[ 245s] touch pl.ck -[ 245s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq pl.cp1250.po -[ 245s] touch pl.cp1250.ck -[ 245s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq pt_BR.po -[ 246s] touch pt_BR.ck -[ 246s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ru.po -[ 247s] touch ru.ck -[ 247s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq ru.cp1251.po -[ 247s] touch ru.cp1251.ck -[ 247s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq sk.po -[ 248s] touch sk.ck -[ 248s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq sk.cp1250.po -[ 249s] touch sk.cp1250.ck -[ 249s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq sr.po -[ 249s] touch sr.ck -[ 249s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq sv.po -[ 250s] touch sv.ck -[ 250s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq tr.po -[ 251s] touch tr.ck -[ 251s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq uk.po -[ 252s] touch uk.ck -[ 252s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq uk.cp1251.po -[ 253s] touch uk.cp1251.ck -[ 253s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq vi.po -[ 253s] touch vi.ck -[ 253s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq zh_CN.UTF-8.po -[ 254s] touch zh_CN.UTF-8.ck -[ 254s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq zh_CN.po -[ 255s] touch zh_CN.ck -[ 255s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq zh_CN.cp936.po -[ 256s] touch zh_CN.cp936.ck -[ 256s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq zh_TW.UTF-8.po -[ 257s] touch zh_TW.UTF-8.ck -[ 257s] ../vim -u NONE -e -X -S check.vim -c "if error == 0 | q | endif" -c cq zh_TW.po -[ 257s] touch zh_TW.ck -[ 257s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/po' -[ 257s] if test vim != vim -a ! -r vim; then \ -[ 257s] ln -s vim vim; \ -[ 257s] fi -[ 257s] cd testdir; make -f Makefile VIMPROG=../vim SCRIPTSOURCE=../../runtime -[ 257s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 257s] rm -f test.log test_result.log messages -[ 257s] rm -rf test20.failed test.ok test.out X* viminfo -[ 257s] cp test20.ok test.ok -[ 257s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test20.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 257s] rm -rf X* test.ok viminfo -[ 257s] rm -rf test21.failed test.ok test.out X* viminfo -[ 257s] cp test21.ok test.ok -[ 258s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test21.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 258s] rm -rf X* test.ok viminfo -[ 258s] rm -rf test22.failed test.ok test.out X* viminfo -[ 258s] cp test22.ok test.ok -[ 258s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test22.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 258s] rm -rf X* test.ok viminfo -[ 258s] rm -rf test23.failed test.ok test.out X* viminfo -[ 258s] cp test23.ok test.ok -[ 258s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test23.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 259s] rm -rf X* test.ok viminfo -[ 259s] rm -rf test24.failed test.ok test.out X* viminfo -[ 259s] cp test24.ok test.ok -[ 259s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test24.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 259s] rm -rf X* test.ok viminfo -[ 259s] rm -rf test25.failed test.ok test.out X* viminfo -[ 259s] cp test25.ok test.ok -[ 259s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test25.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 260s] rm -rf X* test.ok viminfo -[ 260s] rm -rf test26.failed test.ok test.out X* viminfo -[ 260s] cp test26.ok test.ok -[ 260s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test26.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 260s] rm -rf X* test.ok viminfo -[ 260s] rm -rf test27.failed test.ok test.out X* viminfo -[ 260s] cp test27.ok test.ok -[ 260s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim -U NONE --noplugin --not-a-term -s dotest.in test27.in --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 262s] rm -rf X* test.ok viminfo -[ 262s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_arabic.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 262s] Executing Test_W17_arabic_requires_utf8() -[ 262s] Executing Test_arabic_chars_in_search_cmd() -[ 262s] Executing Test_arabic_input() -[ 262s] Executing Test_arabic_toggle() -[ 262s] Executing Test_arabic_toggle_keymap() -[ 262s] Executing Test_delcombine() -[ 262s] Executing Test_shape_combination_final() -[ 262s] Executing Test_shape_combination_isolated() -[ 262s] Executing Test_shape_final() -[ 262s] Executing Test_shape_initial() -[ 262s] Executing Test_shape_iso_to_medial() -[ 262s] Executing Test_shape_isolated() -[ 262s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_arglist.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 262s] Executing Test_all_not_allowed_from_cmdwin() -[ 262s] Executing Test_arg_all_expand() -[ 262s] Executing Test_argadd() -[ 262s] Executing Test_argadd_empty_curbuf() -[ 263s] Executing Test_argc() -[ 263s] Executing Test_argdedupe() -[ 263s] Executing Test_argdelete() -[ 263s] Executing Test_argdelete_completion() -[ 263s] Executing Test_argdo() -[ 263s] Executing Test_argedit() -[ 263s] Executing Test_argidx() -[ 263s] Executing Test_arglist_autocmd() -[ 263s] Executing Test_arglistid() -[ 263s] Executing Test_argpos() -[ 263s] Executing Test_args_with_quote() -[ 263s] Executing Test_argument() -[ 263s] Executing Test_argv() -[ 263s] Executing Test_clear_arglist_in_all() -[ 263s] Executing Test_large_arg() -[ 263s] Executing Test_list_arguments() -[ 263s] Executing Test_quit_with_arglist() -[ 263s] Executing Test_zero_argadd() -[ 263s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_assert.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 263s] Executing Test_assert_beeps() -[ 263s] Executing Test_assert_equal() -[ 263s] Executing Test_assert_equal_dict() -[ 263s] Executing Test_assert_equalfile() -[ 264s] Executing Test_assert_exception() -[ 264s] Executing Test_assert_fail_fails() -[ 264s] Executing Test_assert_fails_in_try_block() -[ 264s] Executing Test_assert_false() -[ 264s] Executing Test_assert_inrange() -[ 264s] Executing Test_assert_notequal() -[ 264s] Executing Test_assert_report() -[ 264s] Executing Test_assert_true() -[ 264s] Executing Test_assert_with_msg() -[ 264s] Executing Test_compare_fail() -[ 264s] Executing Test_match() -[ 264s] Executing Test_mouse_position() -[ 264s] Executing Test_notmatch() -[ 264s] Executing Test_override() -[ 264s] Executing Test_user_is_happy() -[ 264s] Executing Test_wrong_error_type() -[ 264s] Executing Test_zz_quit_detected() -[ 264s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_autochdir.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 264s] Executing Test_acd_win_execute() -[ 264s] Executing Test_multibyte() -[ 264s] Executing Test_set_filename() -[ 264s] Executing Test_set_filename_other_window() -[ 264s] Executing Test_verbose_pwd() -[ 264s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_autocmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 264s] Executing Test_Acmd_BufAll() -[ 264s] Executing Test_Acmd_BufEnter() -[ 264s] Executing Test_BufDelete_changebuf() -[ 264s] Executing Test_BufEnter() -[ 264s] Executing Test_BufLeave_Wipe() -[ 264s] Executing Test_BufNew_arglocal() -[ 264s] Executing Test_BufReadCmd() -[ 265s] Executing Test_BufReadCmdHelp() -[ 265s] Executing Test_BufReadCmdHelpJump() -[ 265s] Executing Test_BufReadPre_changebuf() -[ 265s] Executing Test_BufReadPre_delfile() -[ 265s] Executing Test_BufWritePre() -[ 265s] Executing Test_BufWrite_lockmarks() -[ 266s] Executing Test_BufleaveWithDelete() -[ 266s] Executing Test_ChangedP() -[ 266s] Executing Test_Changed_ChangedI() -[ 266s] Executing Test_Changed_FirstTime() -[ 266s] Executing Test_Cmd_Autocmds() -[ 266s] Executing Test_Cmdline() -[ 266s] Executing Test_CursorHold_autocmd() -[ 266s] Executing Test_FileChangedRO_winclose() -[ 266s] Executing Test_FileType_spell() -[ 266s] Executing Test_Filter_noshelltemp() -[ 266s] Executing Test_OptionSet() -[ 266s] Executing Test_OptionSet_diffmode() -[ 266s] Executing Test_OptionSet_diffmode_close() -[ 266s] Executing Test_OptionSet_modeline() -[ 266s] Executing Test_QuitPre() -[ 266s] Executing Test_ReadWrite_Autocmds() -[ 266s] Executing Test_SpellFileMissing_bwipe() -[ 266s] Executing Test_TermChanged() -[ 266s] Executing Test_TextChangedI_with_setline() -[ 266s] Executing Test_TextYankPost() -[ 266s] Executing Test_Visual_doautoall_redraw() -[ 266s] Executing Test_WinClosed() -[ 266s] Executing Test_WinClosed_throws() -[ 266s] Executing Test_WinClosed_throws_with_tabs() -[ 266s] Executing Test_WinScrolled() -[ 266s] Executing Test_WinScrolled_close_curwin() -[ 267s] Executing Test_WinScrolled_mouse() -[ 267s] Executing Test_ai_CTRL_O() -[ 267s] Executing Test_argdelete_in_next() -[ 267s] Executing Test_augroup_deleted() -[ 267s] Executing Test_augroup_warning() -[ 267s] Executing Test_autocmd_CmdWinEnter() -[ 267s] Executing Test_autocmd_FileReadCmd() -[ 267s] Executing Test_autocmd_SafeState() -[ 267s] Executing Test_autocmd_add() -[ 267s] Executing Test_autocmd_blast_badd() -[ 267s] Executing Test_autocmd_bufreadpre() -[ 267s] Executing Test_autocmd_bufunload_avoiding_SEGV_01() -[ 267s] Executing Test_autocmd_bufunload_avoiding_SEGV_02() -[ 267s] Executing Test_autocmd_bufunload_with_tabnext() -[ 267s] Executing Test_autocmd_bufwinleave_with_tabfirst() -[ 267s] Executing Test_autocmd_bufwipe_in_SessLoadPost() -[ 267s] Executing Test_autocmd_bufwipe_in_SessLoadPost2() -[ 267s] Executing Test_autocmd_closes_window() -[ 267s] Executing Test_autocmd_closing_cmdwin() -[ 267s] Executing Test_autocmd_deep_nesting() -[ 267s] Executing Test_autocmd_delete() -[ 267s] Executing Test_autocmd_dummy_wipeout() -[ 267s] Executing Test_autocmd_get() -[ 267s] Executing Test_autocmd_in_try_block() -[ 267s] Executing Test_autocmd_invalid_args() -[ 267s] Executing Test_autocmd_nested() -[ 267s] Executing Test_autocmd_normal_mess() -[ 267s] Executing Test_autocmd_once() -[ 267s] Executing Test_autocmd_quit_psearch() -[ 267s] Executing Test_autocmd_sigusr1() -[ 267s] Executing Test_autocmd_user() -[ 267s] Executing Test_autocmd_vimgrep() -[ 267s] Executing Test_autocmd_was_using_freed_memory() -[ 267s] Executing Test_autocmd_window() -[ 267s] Executing Test_autocmd_with_block() -[ 267s] Executing Test_autocommand_all_events() -[ 267s] Executing Test_buflocal_autocmd() -[ 267s] Executing Test_bufunload() -[ 267s] Executing Test_bufunload_all() -[ 268s] Executing Test_bufwipeout_changes_window() -[ 268s] Executing Test_change_mark_in_autocmds() -[ 268s] Executing Test_close_autocmd_tab() -[ 268s] Executing Test_close_autocmd_window() -[ 268s] Executing Test_closing_autocmd_window() -[ 269s] Executing Test_cursorhold_insert() -[ 269s] Executing Test_cursorhold_insert_ctrl_g_U() -[ 270s] Executing Test_cursorhold_insert_ctrl_x() -[ 270s] Executing Test_cursorhold_insert_with_timer_interrupt() -[ 270s] Executing Test_dirchanged_auto() -[ 270s] Executing Test_dirchanged_global() -[ 270s] Executing Test_dirchanged_local() -[ 270s] Executing Test_early_bar() -[ 270s] Executing Test_empty_doau() -[ 270s] Executing Test_noname_autocmd() -[ 270s] Executing Test_three_windows() -[ 270s] Executing Test_throw_in_BufWritePre() -[ 270s] Executing Test_v_event_readonly() -[ 270s] Executing Test_vim_did_enter() -[ 270s] Executing Test_win_tab_autocmd() -[ 271s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_autoload.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 271s] Executing Test_autoload_dict_func() -[ 271s] Executing Test_autoload_vim9script() -[ 271s] Executing Test_source_autoload() -[ 271s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_backspace_opt.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 271s] Executing Test_backspace_ctrl_u() -[ 271s] Executing Test_backspace_option() -[ 271s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_balloon.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 271s] Executing Test_balloon_eval_term() -[ 272s] Executing Test_balloon_eval_term_visual() -[ 272s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_balloon_gui.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 272s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_blob.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 272s] Executing Test_blob2list() -[ 272s] Executing Test_blob2string() -[ 272s] Executing Test_blob_add() -[ 272s] Executing Test_blob_alloc_failure() -[ 272s] Executing Test_blob_assign() -[ 274s] Executing Test_blob_compare() -[ 276s] Executing Test_blob_concatenate() -[ 276s] Executing Test_blob_create() -[ 277s] Executing Test_blob_empty() -[ 277s] Executing Test_blob_filter() -[ 277s] Executing Test_blob_for_loop() -[ 277s] Executing Test_blob_func_remove() -[ 278s] Executing Test_blob_get() -[ 279s] Executing Test_blob_get_range() -[ 279s] Executing Test_blob_index() -[ 279s] Executing Test_blob_index_assign() -[ 280s] Executing Test_blob_insert() -[ 281s] Executing Test_blob_json_encode() -[ 282s] Executing Test_blob_lock() -[ 282s] Executing Test_blob_map() -[ 282s] Executing Test_blob_read_write() -[ 282s] Executing Test_blob_reverse() -[ 282s] Executing Test_blob_sort() -[ 282s] Executing Test_blob_to_string() -[ 282s] Executing Test_list2blob() -[ 282s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_blockedit.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 282s] Executing Test_blockappend_eol_cursor() -[ 282s] Executing Test_blockappend_eol_cursor2() -[ 282s] Executing Test_blockinsert_autoindent() -[ 282s] Executing Test_blockinsert_delete() -[ 282s] Executing Test_blockinsert_indent() -[ 283s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_breakindent.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 283s] Executing Test_breakindent01() -[ 283s] Executing Test_breakindent01_vartabs() -[ 283s] Executing Test_breakindent02() -[ 283s] Executing Test_breakindent02_vartabs() -[ 283s] Executing Test_breakindent03() -[ 283s] Executing Test_breakindent03_vartabs() -[ 283s] Executing Test_breakindent04() -[ 283s] Executing Test_breakindent04_vartabs() -[ 283s] Executing Test_breakindent05() -[ 283s] Executing Test_breakindent05_vartabs() -[ 283s] Executing Test_breakindent06() -[ 283s] Executing Test_breakindent06_vartabs() -[ 283s] Executing Test_breakindent07() -[ 283s] Executing Test_breakindent07_vartabs() -[ 283s] Executing Test_breakindent07a() -[ 283s] Executing Test_breakindent07a_vartabs() -[ 283s] Executing Test_breakindent08() -[ 283s] Executing Test_breakindent08_vartabs() -[ 283s] Executing Test_breakindent08a() -[ 283s] Executing Test_breakindent08a_vartabs() -[ 283s] Executing Test_breakindent09() -[ 283s] Executing Test_breakindent09_vartabs() -[ 283s] Executing Test_breakindent10() -[ 283s] Executing Test_breakindent10_vartabs() -[ 283s] Executing Test_breakindent11() -[ 283s] Executing Test_breakindent11_vartabs() -[ 283s] Executing Test_breakindent12() -[ 283s] Executing Test_breakindent12_vartabs() -[ 283s] Executing Test_breakindent13() -[ 283s] Executing Test_breakindent13_vartabs() -[ 283s] Executing Test_breakindent14() -[ 283s] Executing Test_breakindent14_vartabs() -[ 283s] Executing Test_breakindent15() -[ 283s] Executing Test_breakindent15_vartabs() -[ 283s] Executing Test_breakindent16() -[ 283s] Executing Test_breakindent16_vartabs() -[ 283s] Executing Test_breakindent17_vartabs() -[ 283s] Executing Test_breakindent18_vartabs() -[ 283s] Executing Test_breakindent19_sbr_nextpage() -[ 283s] Executing Test_breakindent20_cpo_n_nextpage() -[ 283s] Executing Test_breakindent20_list() -[ 283s] Executing Test_breakindent_column() -[ 283s] Executing Test_cursor_position_with_showbreak() -[ 283s] Executing Test_no_extra_indent() -[ 283s] Executing Test_no_spurious_match() -[ 283s] Executing Test_window_resize_with_linebreak() -[ 283s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_buffer.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 283s] Executing Test_badd_options() -[ 283s] Executing Test_balt() -[ 283s] Executing Test_bdel_with_confirm() -[ 283s] Executing Test_bdelete_cmd() -[ 283s] Executing Test_buf_pattern_invalid() -[ 283s] Executing Test_bufadd_autocmd_bwipe() -[ 283s] Executing Test_buffer_edit_altfile() -[ 283s] Executing Test_buffer_error() -[ 283s] Executing Test_buffer_maxmem() -[ 283s] Executing Test_buffer_sbuf_cleanup() -[ 283s] Executing Test_buffer_scheme() -[ 283s] Executing Test_buffer_statusmsg() -[ 283s] Executing Test_buffer_switchbuf() -[ 283s] Executing Test_buflist_alloc_failure() -[ 283s] Executing Test_buflist_browse() -[ 284s] Executing Test_bunload_with_offset() -[ 284s] Executing Test_goto_buf_with_confirm() -[ 284s] Executing Test_load_buf_with_text_locked() -[ 284s] Executing Test_sball_with_count() -[ 284s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_bufline.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 284s] Executing Test_appendbufline() -[ 284s] Executing Test_appendbufline_no_E315() -[ 284s] Executing Test_appendbufline_redraw() -[ 284s] Executing Test_deletebufline() -[ 284s] Executing Test_deletebufline_select_mode() -[ 284s] Executing Test_setbufline_getbufline() -[ 284s] Executing Test_setbufline_getbufline_fold() -[ 284s] Executing Test_setbufline_getbufline_fold_tab() -[ 284s] Executing Test_setbufline_select_mode() -[ 284s] Executing Test_setline_startup() -[ 285s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_bufwintabinfo.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 285s] Executing Test_get_buf_options() -[ 285s] Executing Test_get_win_options() -[ 285s] Executing Test_getbufinfo_lastused() -[ 285s] Executing Test_getbufinfo_lines() -[ 285s] Executing Test_getbufwintabinfo() -[ 285s] Executing Test_getwininfo_au() -[ 286s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 286s] Executing Test_cd_completion() -[ 286s] Executing Test_cd_from_non_existing_dir() -[ 286s] Executing Test_cd_large_path() -[ 286s] Executing Test_cd_minus() -[ 286s] Executing Test_cd_no_arg() -[ 286s] Executing Test_cd_unknown_dir() -[ 286s] Executing Test_cd_up_and_down() -[ 286s] Executing Test_chdir_func() -[ 286s] Executing Test_getcwd_actual_dir() -[ 286s] Executing Test_lcd_split() -[ 286s] Executing Test_prev_dir() -[ 286s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cdo.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 286s] Executing Test_cdo() -[ 287s] Executing Test_cdo_print() -[ 287s] Executing Test_ldo() -[ 288s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_changedtick.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 288s] Executing Test_changedtick_bdel() -[ 288s] Executing Test_changedtick_dict_entry() -[ 288s] Executing Test_changedtick_fixed() -[ 288s] Executing Test_changedtick_increments() -[ 288s] Executing Test_changedtick_islocked() -[ 288s] Executing Test_changedtick_not_incremented_with_write() -[ 289s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_changelist.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 289s] Executing Test_changelist() -[ 289s] Executing Test_changelist_index() -[ 289s] Executing Test_changelist_index_move_split() -[ 289s] Executing Test_getchangelist() -[ 290s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_charsearch.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 290s] Executing Test_charsearch() -[ 290s] Executing Test_charsearch_composing_char() -[ 290s] Executing Test_charsearch_hkmap() -[ 290s] Executing Test_charsearch_latin1() -[ 290s] Executing Test_csearch_virtualedit() -[ 290s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_checkpath.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 290s] Executing Test_checkpath1() -[ 290s] Executing Test_checkpath2() -[ 290s] Executing Test_checkpath3() -[ 291s] Executing Test_checkpath_errors() -[ 291s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cindent.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 291s] Executing Test_backslash_at_end_of_line() -[ 291s] Executing Test_cindent_1() -[ 291s] Executing Test_cindent_10() -[ 291s] Executing Test_cindent_11() -[ 291s] Executing Test_cindent_12() -[ 291s] Executing Test_cindent_13() -[ 291s] Executing Test_cindent_14() -[ 291s] Executing Test_cindent_15() -[ 291s] Executing Test_cindent_16() -[ 291s] Executing Test_cindent_17() -[ 291s] Executing Test_cindent_18() -[ 291s] Executing Test_cindent_19() -[ 291s] Executing Test_cindent_2() -[ 291s] Executing Test_cindent_20() -[ 291s] Executing Test_cindent_21() -[ 291s] Executing Test_cindent_22() -[ 291s] Executing Test_cindent_23() -[ 291s] Executing Test_cindent_24() -[ 291s] Executing Test_cindent_25() -[ 291s] Executing Test_cindent_26() -[ 291s] Executing Test_cindent_27() -[ 291s] Executing Test_cindent_28() -[ 291s] Executing Test_cindent_29() -[ 291s] Executing Test_cindent_3() -[ 291s] Executing Test_cindent_30() -[ 291s] Executing Test_cindent_31() -[ 291s] Executing Test_cindent_32() -[ 291s] Executing Test_cindent_33() -[ 291s] Executing Test_cindent_34() -[ 291s] Executing Test_cindent_35() -[ 291s] Executing Test_cindent_36() -[ 291s] Executing Test_cindent_37() -[ 291s] Executing Test_cindent_38() -[ 291s] Executing Test_cindent_39() -[ 291s] Executing Test_cindent_4() -[ 291s] Executing Test_cindent_40() -[ 291s] Executing Test_cindent_41() -[ 291s] Executing Test_cindent_42() -[ 291s] Executing Test_cindent_43() -[ 291s] Executing Test_cindent_44() -[ 291s] Executing Test_cindent_45() -[ 291s] Executing Test_cindent_46() -[ 291s] Executing Test_cindent_47() -[ 291s] Executing Test_cindent_48() -[ 291s] Executing Test_cindent_49() -[ 291s] Executing Test_cindent_5() -[ 291s] Executing Test_cindent_50() -[ 291s] Executing Test_cindent_51() -[ 291s] Executing Test_cindent_52() -[ 291s] Executing Test_cindent_53() -[ 291s] Executing Test_cindent_54() -[ 291s] Executing Test_cindent_55() -[ 291s] Executing Test_cindent_56() -[ 291s] Executing Test_cindent_6() -[ 291s] Executing Test_cindent_7() -[ 291s] Executing Test_cindent_8() -[ 291s] Executing Test_cindent_9() -[ 291s] Executing Test_cindent_case() -[ 291s] Executing Test_cindent_change_multline() -[ 291s] Executing Test_cindent_check_funcdecl() -[ 291s] Executing Test_cindent_expr() -[ 291s] Executing Test_cindent_func() -[ 291s] Executing Test_cindent_pragma() -[ 291s] Executing Test_cindent_rawstring() -[ 291s] Executing Test_cindent_scopedecls() -[ 291s] Executing Test_cino_extern_c() -[ 291s] Executing Test_cino_hash() -[ 291s] Executing Test_find_brace_backwards() -[ 291s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cjk_linebreak.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 291s] Executing Test_cjk_linebreak_after() -[ 291s] Executing Test_cjk_linebreak_after_rigorous() -[ 291s] Executing Test_cjk_linebreak_before() -[ 291s] Executing Test_cjk_linebreak_before_rigorous() -[ 291s] Executing Test_cjk_linebreak_join_punct() -[ 291s] Executing Test_cjk_linebreak_nobetween() -[ 291s] Executing Test_cjk_linebreak_nobetween_rigorous() -[ 291s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_clientserver.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 292s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_close_count.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 292s] Executing Test_close_count() -[ 292s] Executing Test_hidden_close_count() -[ 292s] Executing Test_hide_count() -[ 292s] Executing Test_winclose_command() -[ 292s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cmdline.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 292s] Executing Test_buffers_lastused() -[ 292s] Executing Test_cmd_backtick() -[ 292s] Executing Test_cmd_bang() -[ 292s] Executing Test_cmd_bang_E135() -[ 292s] Executing Test_cmd_map_cmdlineChanged() -[ 292s] Executing Test_cmdline_complete_bang() -[ 292s] Executing Test_cmdline_complete_breakadd() -[ 292s] Executing Test_cmdline_complete_breakdel() -[ 292s] Executing Test_cmdline_complete_dlist() -[ 292s] Executing Test_cmdline_complete_env_variable() -[ 292s] Executing Test_cmdline_complete_expression() -[ 292s] Executing Test_cmdline_complete_languages() -[ 292s] Executing Test_cmdline_complete_scriptnames() -[ 292s] Executing Test_cmdline_complete_substitute() -[ 292s] Executing Test_cmdline_complete_substitute_short() -[ 292s] Executing Test_cmdline_complete_user_cmd() -[ 292s] Executing Test_cmdline_complete_user_func() -[ 292s] Executing Test_cmdline_complete_user_names() -[ 292s] Executing Test_cmdline_complete_various() -[ 293s] Executing Test_cmdline_complete_wildoptions() -[ 293s] Executing Test_cmdline_composing_chars() -[ 293s] Executing Test_cmdline_ctrl_g() -[ 293s] Executing Test_cmdline_edit() -[ 293s] Executing Test_cmdline_edit_rightleft() -[ 293s] Executing Test_cmdline_expand_home() -[ 293s] Executing Test_cmdline_expand_special() -[ 293s] Executing Test_cmdline_expr() -[ 293s] Executing Test_cmdline_expr_register() -[ 293s] Executing Test_cmdline_inputmethod() -[ 293s] Executing Test_cmdline_keymap_ctrl_hat() -[ 293s] Executing Test_cmdline_overstrike() -[ 293s] Executing Test_cmdline_paste() -[ 293s] Executing Test_cmdline_remove_char() -[ 293s] Executing Test_cmdline_revins() -[ 293s] Executing Test_cmdline_search_range() -[ 293s] Executing Test_cmdline_wildignorecase() -[ 293s] Executing Test_cmdline_write_alternatefile() -[ 293s] Executing Test_cmdlineclear_tabenter() -[ 293s] Executing Test_cmdwin_autocmd() -[ 293s] Executing Test_cmdwin_blocked_commands() -[ 293s] Executing Test_cmdwin_bug() -[ 293s] Executing Test_cmdwin_cedit() -[ 293s] Executing Test_cmdwin_ex_mode_with_modifier() -[ 293s] Executing Test_cmdwin_feedkeys() -[ 293s] Executing Test_cmdwin_freed_buffer_ptr() -[ 293s] Executing Test_cmdwin_insert_mode_close() -[ 293s] Executing Test_cmdwin_interrupted() -[ 293s] Executing Test_cmdwin_jump_to_win() -[ 294s] Executing Test_cmdwin_multi_input() -[ 294s] Executing Test_cmdwin_no_terminal() -[ 295s] Executing Test_cmdwin_restore() -[ 295s] Executing Test_cmdwin_split_often() -[ 295s] Executing Test_cmdwin_tabpage() -[ 295s] Executing Test_cmdwin_virtual_edit() -[ 295s] Executing Test_complete_autoload_error() -[ 295s] Executing Test_complete_list() -[ 295s] Executing Test_complete_tab() -[ 295s] Executing Test_complete_wildmenu() -[ 295s] Executing Test_custom_complete_autoload() -[ 296s] Executing Test_expand_star_star() -[ 296s] Executing Test_fullcommand() -[ 296s] Executing Test_fuzzy_completion_abbr() -[ 296s] Executing Test_fuzzy_completion_arglist() -[ 296s] Executing Test_fuzzy_completion_autocmd() -[ 296s] Executing Test_fuzzy_completion_autocmd_event() -[ 296s] Executing Test_fuzzy_completion_behave() -[ 296s] Executing Test_fuzzy_completion_bufname() -[ 296s] Executing Test_fuzzy_completion_bufname_fullpath() -[ 296s] Executing Test_fuzzy_completion_cmd_alnum() -[ 296s] Executing Test_fuzzy_completion_cmd_k() -[ 296s] Executing Test_fuzzy_completion_cmd_sort_results() -[ 296s] Executing Test_fuzzy_completion_cmdname() -[ 296s] Executing Test_fuzzy_completion_cscope() -[ 296s] Executing Test_fuzzy_completion_custom_func() -[ 296s] Executing Test_fuzzy_completion_diff() -[ 296s] Executing Test_fuzzy_completion_env() -[ 296s] Executing Test_fuzzy_completion_expr() -[ 296s] Executing Test_fuzzy_completion_history() -[ 296s] Executing Test_fuzzy_completion_hlgroup() -[ 296s] Executing Test_fuzzy_completion_lang() -[ 296s] Executing Test_fuzzy_completion_mapclear() -[ 296s] Executing Test_fuzzy_completion_mapname() -[ 296s] Executing Test_fuzzy_completion_menu() -[ 296s] Executing Test_fuzzy_completion_messages() -[ 296s] Executing Test_fuzzy_completion_option() -[ 296s] Executing Test_fuzzy_completion_sign() -[ 296s] Executing Test_fuzzy_completion_syntax_cmd() -[ 296s] Executing Test_fuzzy_completion_syntax_group() -[ 296s] Executing Test_fuzzy_completion_syntime() -[ 296s] Executing Test_fuzzy_completion_term_option() -[ 296s] Executing Test_fuzzy_completion_userdefined_cmd() -[ 296s] Executing Test_fuzzy_completion_userdefined_func() -[ 296s] Executing Test_fuzzy_completion_userdefined_snr_func() -[ 296s] Executing Test_fuzzy_completion_userdefined_var() -[ 296s] Executing Test_getcmdtype() -[ 296s] Executing Test_getcmdwin_autocmd() -[ 296s] Executing Test_getcmdwintype() -[ 296s] Executing Test_getcompletion() -[ 296s] Executing Test_getcompletion_wildoptions() -[ 296s] Executing Test_highlight_completion() -[ 296s] Executing Test_highlight_easter_egg() -[ 296s] Executing Test_illegal_address1() -[ 296s] Executing Test_illegal_address2() -[ 296s] Executing Test_interrupt_compl() -[ 296s] Executing Test_lnum_and_pattern_as_range() -[ 296s] Executing Test_long_error_message() -[ 296s] Executing Test_map_completion() -[ 296s] Executing Test_mark_from_line_zero() -[ 296s] Executing Test_match_completion() -[ 296s] Executing Test_read_shellcmd() -[ 296s] Executing Test_recalling_cmdline() -[ 296s] Executing Test_recursive_register() -[ 296s] Executing Test_redraw_in_autocmd() -[ 296s] Executing Test_report_error_with_composing() -[ 296s] Executing Test_screenpos_and_completion() -[ 296s] Executing Test_setcmdpos() -[ 296s] Executing Test_shellcmd_completion() -[ 296s] Executing Test_suffixes_opt() -[ 296s] Executing Test_tick_mark_in_range() -[ 296s] Executing Test_verbose_option() -[ 296s] Executing Test_verbosefile() -[ 296s] Executing Test_wildmenu_dirstack() -[ 297s] Executing Test_wildmenu_pum() -[ 298s] Executing Test_wildmenu_pum_from_terminal() -[ 298s] Executing Test_wildmenu_screendump() -[ 298s] Executing Test_wildmenu_with_pum_foldexpr() -[ 299s] Executing Test_wildmenumode_with_pum() -[ 299s] Executing Test_wildmode() -[ 299s] Executing Test_zero_line_search() -[ 299s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_command_count.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 299s] Executing Test_command_count_0() -[ 299s] Executing Test_command_count_1() -[ 299s] Executing Test_command_count_2() -[ 299s] Executing Test_command_count_3() -[ 299s] Executing Test_command_count_4() -[ 299s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_comments.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 299s] Executing Test_comment_O() -[ 299s] Executing Test_comment_autoformat() -[ 299s] Executing Test_comment_blank() -[ 299s] Executing Test_comment_firstline() -[ 299s] Executing Test_comment_format_firstline_comment() -[ 299s] Executing Test_comment_format_lines() -[ 299s] Executing Test_comment_join_lines_fo_j() -[ 299s] Executing Test_comment_multibyte_leader() -[ 299s] Executing Test_comment_nested() -[ 299s] Executing Test_comment_rightalign() -[ 299s] Executing Test_comment_space() -[ 299s] Executing Test_comment_threepiece() -[ 299s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_comparators.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 299s] Executing Test_Comparators() -[ 300s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_conceal.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 300s] Executing Test_conceal_cursor_pos() -[ 300s] Executing Test_conceal_eol() -[ 300s] Executing Test_conceal_resize_term() -[ 300s] Executing Test_conceal_two_windows() -[ 301s] Executing Test_conceal_with_cursorline() -[ 301s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_const.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 301s] Executing Test_cannot_modify_existing_variable() -[ 301s] Executing Test_const_with_compound_assign() -[ 301s] Executing Test_const_with_condition() -[ 301s] Executing Test_const_with_eval_name() -[ 301s] Executing Test_const_with_index_access() -[ 301s] Executing Test_const_with_special_variables() -[ 301s] Executing Test_define_l_var_with_lock() -[ 301s] Executing Test_define_script_var_with_lock() -[ 301s] Executing Test_define_var_with_lock() -[ 301s] Executing Test_destructuring_with_lock() -[ 301s] Executing Test_lock_depth_is_2() -[ 301s] Executing Test_lockvar() -[ 302s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cpoptions.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 302s] Executing Test_cpo_A() -[ 302s] Executing Test_cpo_B() -[ 302s] Executing Test_cpo_C() -[ 302s] Executing Test_cpo_D() -[ 302s] Executing Test_cpo_E() -[ 302s] Executing Test_cpo_F() -[ 302s] Executing Test_cpo_H() -[ 302s] Executing Test_cpo_I() -[ 302s] Executing Test_cpo_J() -[ 302s] Executing Test_cpo_L() -[ 302s] Executing Test_cpo_M() -[ 302s] Executing Test_cpo_O() -[ 302s] Executing Test_cpo_P() -[ 302s] Executing Test_cpo_R() -[ 302s] Executing Test_cpo_S() -[ 302s] Executing Test_cpo_X() -[ 302s] Executing Test_cpo_Z() -[ 303s] Executing Test_cpo_a() -[ 303s] Executing Test_cpo_ampersand() -[ 303s] Executing Test_cpo_b() -[ 303s] Executing Test_cpo_backslash() -[ 303s] Executing Test_cpo_brace() -[ 303s] Executing Test_cpo_c() -[ 303s] Executing Test_cpo_d() -[ 303s] Executing Test_cpo_dollar() -[ 303s] Executing Test_cpo_dot() -[ 303s] Executing Test_cpo_e() -[ 303s] Executing Test_cpo_f() -[ 303s] Executing Test_cpo_g() -[ 303s] Executing Test_cpo_gt() -[ 303s] Executing Test_cpo_hash() -[ 303s] Executing Test_cpo_l() -[ 303s] Executing Test_cpo_minus() -[ 303s] Executing Test_cpo_n() -[ 303s] Executing Test_cpo_o() -[ 303s] Executing Test_cpo_percent() -[ 303s] Executing Test_cpo_plus() -[ 303s] Executing Test_cpo_q() -[ 303s] Executing Test_cpo_r() -[ 303s] Executing Test_cpo_semicolon() -[ 303s] Executing Test_cpo_star() -[ 303s] Executing Test_cpo_u() -[ 303s] Executing Test_cpo_w() -[ 303s] Executing Test_cpo_x() -[ 303s] Executing Test_cpo_y() -[ 304s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_crypt.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 304s] Executing Test_crypt_blowfish() -[ 304s] Executing Test_crypt_blowfish2() -[ 304s] Executing Test_crypt_key_mismatch() -[ 305s] Executing Test_crypt_set_key_changes_buffer() -[ 306s] Executing Test_crypt_sodium() -[ 306s] Executing Test_crypt_zip() -[ 306s] Executing Test_encrypt_xchacha20_missing() -[ 306s] Executing Test_head_only_2() -[ 306s] Executing Test_head_only_3() -[ 306s] Executing Test_head_only_4() -[ 306s] Executing Test_uncrypt_blowfish() -[ 307s] Executing Test_uncrypt_blowfish2() -[ 307s] Executing Test_uncrypt_blowfish2a() -[ 307s] Executing Test_uncrypt_unknown_method() -[ 307s] Executing Test_uncrypt_xchacha20() -[ 307s] Executing Test_uncrypt_xchacha20_2() -[ 307s] Executing Test_uncrypt_xchacha20_3_persistent_undo() -[ 307s] Executing Test_uncrypt_xchacha20_invalid() -[ 307s] Executing Test_uncrypt_zip() -[ 308s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cscope.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 308s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cursor_func.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 308s] Executing Test_charcol() -[ 308s] Executing Test_curswant_maxcol() -[ 308s] Executing Test_curswant_with_autocommand() -[ 308s] Executing Test_curswant_with_cursorcolumn() -[ 308s] Executing Test_curswant_with_cursorline() -[ 308s] Executing Test_getcharpos() -[ 308s] Executing Test_getcursorcharpos() -[ 308s] Executing Test_move_cursor() -[ 308s] Executing Test_screenpos() -[ 308s] Executing Test_screenpos_fold() -[ 308s] Executing Test_screenpos_number() -[ 308s] Executing Test_setcharpos() -[ 308s] Executing Test_setcursorcharpos() -[ 308s] Executing Test_virtcol2col() -[ 308s] Executing Test_wrong_arguments() -[ 308s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_cursorline.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 308s] Executing Test_cursorline_callback() -[ 309s] Executing Test_cursorline_cursorbind_horizontal_scroll() -[ 309s] Executing Test_cursorline_highlight1() -[ 309s] Executing Test_cursorline_highlight2() -[ 309s] Executing Test_cursorline_redraw() -[ 309s] Executing Test_cursorline_screenline() -[ 310s] Executing Test_cursorline_screenline_update() -[ 310s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_curswant.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 310s] Executing Test_curswant() -[ 310s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_debugger.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 310s] Executing Test_Backtrace_Autocmd() -[ 310s] Executing Test_Backtrace_CmdLine() -[ 310s] Executing Test_Backtrace_DefFunction() -[ 310s] Executing Test_Backtrace_Through_Source() -[ 310s] Executing Test_Debugger() -[ 311s] Executing Test_Debugger_break_at_return() -[ 311s] Executing Test_Debugger_breakadd() -[ 312s] Executing Test_Debugger_breakadd_expr() -[ 312s] Executing Test_Debugger_breakadd_vim9_expr() -[ 312s] Executing Test_DefFunction_expr() -[ 312s] Executing Test_breakpt_else_intr() -[ 312s] Executing Test_breakpt_endif_intr() -[ 312s] Executing Test_breakpt_endwhile_intr() -[ 312s] Executing Test_breakpt_scriptlocal_func() -[ 312s] Executing Test_debug_backtrace_level() -[ 312s] Executing Test_debug_def_and_legacy_function() -[ 312s] Executing Test_debug_def_function() -[ 312s] Executing Test_debug_def_function_with_lambda() -[ 312s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_delete.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 312s] Executing Test_delete_errors() -[ 312s] Executing Test_dir_delete() -[ 312s] Executing Test_file_delete() -[ 312s] Executing Test_recursive_delete() -[ 312s] Executing Test_symlink_delete() -[ 312s] Executing Test_symlink_dir_delete() -[ 312s] Executing Test_symlink_recursive_delete() -[ 312s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_diffmode.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 312s] Executing Test_diff_and_scroll() -[ 312s] Executing Test_diff_binary() -[ 313s] Executing Test_diff_closeoff() -[ 313s] Executing Test_diff_filler() -[ 313s] Executing Test_diff_filler_cursorcolumn() -[ 313s] Executing Test_diff_fold_sync() -[ 313s] Executing Test_diff_foldinvert() -[ 313s] Executing Test_diff_followwrap() -[ 313s] Executing Test_diff_hlID() -[ 313s] Executing Test_diff_lastline() -[ 313s] Executing Test_diff_maintains_change_mark() -[ 313s] Executing Test_diff_manipulations() -[ 313s] Executing Test_diff_modify_chunks() -[ 313s] Executing Test_diff_move_to() -[ 313s] Executing Test_diff_multilineconceal() -[ 313s] Executing Test_diff_nomodifiable() -[ 313s] Executing Test_diff_of_diff() -[ 313s] Executing Test_diff_only() -[ 313s] Executing Test_diff_put_and_undo() -[ 313s] Executing Test_diff_rnu() -[ 314s] Executing Test_diff_screen() -[ 321s] Executing Test_diff_scroll() -[ 321s] Executing Test_diff_too_many_buffers() -[ 321s] Executing Test_diff_with_cursorline() -[ 321s] Executing Test_diff_with_cursorline_breakindent() -[ 321s] Executing Test_diff_with_cursorline_number() -[ 322s] Executing Test_diff_with_scroll_and_change() -[ 322s] Executing Test_diff_with_syntax() -[ 322s] Executing Test_diffexpr() -[ 322s] Executing Test_diffget_diffput() -[ 322s] Executing Test_diffget_diffput_completion() -[ 322s] Executing Test_diffget_diffput_empty_buffer() -[ 322s] Executing Test_diffget_diffput_range() -[ 322s] Executing Test_diffoff() -[ 322s] Executing Test_diffoff_hidden() -[ 322s] Executing Test_diffopt_context() -[ 322s] Executing Test_diffopt_hiddenoff() -[ 322s] Executing Test_diffopt_horizontal() -[ 322s] Executing Test_diffopt_icase() -[ 322s] Executing Test_diffopt_icase_internal() -[ 322s] Executing Test_diffopt_iwhite() -[ 323s] Executing Test_diffopt_iwhite_internal() -[ 323s] Executing Test_diffopt_vertical() -[ 323s] Executing Test_diffpatch() -[ 323s] Executing Test_diffput_two() -[ 323s] Executing Test_do_lastline() -[ 323s] Executing Test_dp_do_buffer() -[ 323s] Executing Test_filler_lines() -[ 323s] Executing Test_patchexpr() -[ 323s] Executing Test_setting_cursor() -[ 323s] Executing Test_vert_split() -[ 324s] Executing Test_vert_split_internal() -[ 324s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_digraph.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 324s] Executing Test_digraph_cmndline() -[ 324s] Executing Test_digraph_get_function() -[ 324s] Executing Test_digraph_get_function_encode() -[ 324s] Executing Test_digraph_getlist_function() -[ 324s] Executing Test_digraph_set_function() -[ 324s] Executing Test_digraph_setlist_function() -[ 324s] Executing Test_digraphs() -[ 324s] Executing Test_digraphs_option() -[ 324s] Executing Test_digraphs_output() -[ 324s] Executing Test_entering_digraph() -[ 324s] Executing Test_loadkeymap() -[ 324s] Executing Test_loadkeymap_error() -[ 324s] Executing Test_show_digraph() -[ 324s] Executing Test_show_digraph_cp1251() -[ 324s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_display.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 324s] Executing Test_display_foldcolumn() -[ 324s] Executing Test_display_foldtext_mbyte() -[ 324s] Executing Test_display_lastline() -[ 324s] Executing Test_display_linebreak_breakat() -[ 324s] Executing Test_display_listchars_precedes() -[ 324s] Executing Test_display_scroll_at_topline() -[ 324s] Executing Test_display_scroll_update_visual() -[ 325s] Executing Test_edit_long_file_name() -[ 325s] Executing Test_eob_fillchars() -[ 325s] Executing Test_fold_fillchars() -[ 325s] Executing Test_scroll_CursorLineNr_update() -[ 325s] Executing Test_scroll_without_region() -[ 325s] Executing Test_unprintable_fileformats() -[ 325s] Executing Test_visual_block_scroll() -[ 325s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_edit.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 325s] Executing Test_ModeChanged_starts_visual() -[ 325s] Executing Test_autoindent_remove_indent() -[ 325s] Executing Test_edit_00a_CTRL_A() -[ 325s] Executing Test_edit_00b() -[ 325s] Executing Test_edit_01() -[ 325s] Executing Test_edit_02() -[ 325s] Executing Test_edit_03() -[ 325s] Executing Test_edit_04() -[ 326s] Executing Test_edit_05() -[ 326s] Executing Test_edit_06() -[ 326s] Executing Test_edit_07() -[ 326s] Executing Test_edit_08() -[ 326s] Executing Test_edit_09() -[ 326s] Executing Test_edit_11() -[ 326s] Executing Test_edit_11_indentexpr() -[ 326s] Executing Test_edit_12() -[ 326s] Executing Test_edit_13() -[ 326s] Executing Test_edit_CR() -[ 326s] Executing Test_edit_CTRL_() -[ 326s] Executing Test_edit_CTRL_EY() -[ 326s] Executing Test_edit_CTRL_G() -[ 326s] Executing Test_edit_CTRL_I() -[ 326s] Executing Test_edit_CTRL_K() -[ 326s] Executing Test_edit_CTRL_L() -[ 326s] Executing Test_edit_CTRL_N() -[ 326s] Executing Test_edit_CTRL_O() -[ 326s] Executing Test_edit_CTRL_R() -[ 326s] Executing Test_edit_CTRL_S() -[ 326s] Executing Test_edit_CTRL_T() -[ 326s] Executing Test_edit_CTRL_U() -[ 326s] Executing Test_edit_CTRL_V() -[ 326s] Executing Test_edit_CTRL_Z() -[ 326s] Executing Test_edit_CTRL_hat() -[ 326s] Executing Test_edit_DROP() -[ 326s] Executing Test_edit_F1() -[ 326s] Executing Test_edit_F21() -[ 326s] Executing Test_edit_HOME_END() -[ 326s] Executing Test_edit_INS() -[ 326s] Executing Test_edit_InsertLeave() -[ 326s] Executing Test_edit_InsertLeave_undo() -[ 326s] Executing Test_edit_LEFT_RIGHT() -[ 326s] Executing Test_edit_MOUSE() -[ 326s] Executing Test_edit_PAGEUP_PAGEDOWN() -[ 326s] Executing Test_edit_allowrevins() -[ 326s] Executing Test_edit_alt() -[ 326s] Executing Test_edit_backtick() -[ 326s] Executing Test_edit_browse() -[ 326s] Executing Test_edit_charconvert() -[ 327s] Executing Test_edit_complete_very_long_name() -[ 327s] Executing Test_edit_completefunc_delete() -[ 327s] Executing Test_edit_ctrl_o_invalid_cmd() -[ 327s] Executing Test_edit_file_no_read_perm() -[ 327s] Executing Test_edit_forbidden() -[ 327s] Executing Test_edit_hkmap() -[ 327s] Executing Test_edit_illegal_filename() -[ 327s] Executing Test_edit_insert_reg() -[ 327s] Executing Test_edit_insertmode_ex_edit() -[ 327s] Executing Test_edit_invalid_encoding() -[ 327s] Executing Test_edit_is_a_directory() -[ 327s] Executing Test_edit_lastline_scroll() -[ 327s] Executing Test_edit_noesckeys() -[ 327s] Executing Test_edit_overlong_file_name() -[ 327s] Executing Test_edit_put_CTRL_E() -[ 327s] Executing Test_edit_quit() -[ 327s] Executing Test_edit_revins() -[ 327s] Executing Test_edit_rightleft() -[ 327s] Executing Test_edit_shift_bs() -[ 327s] Executing Test_edit_special_chars() -[ 327s] Executing Test_edit_startinsert() -[ 327s] Executing Test_edit_startreplace() -[ 327s] Executing Test_mode_changes() -[ 327s] Executing Test_read_invalid() -[ 327s] Executing Test_recursive_ModeChanged() -[ 327s] Executing Test_thesaurus_complete_with_encoding() -[ 327s] Executing Test_thesaurus_func() -[ 327s] Executing Test_z_edit_insertmode_esc_beeps() -[ 327s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_environ.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 327s] Executing Test_environ() -[ 327s] Executing Test_external_env() -[ 327s] Executing Test_getenv() -[ 327s] Executing Test_mac_locale() -[ 327s] Executing Test_setenv() -[ 327s] Executing Test_special_env() -[ 327s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_erasebackword.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 327s] Executing Test_erasebackword() -[ 328s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_escaped_glob.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 328s] Executing Test_glob() -[ 328s] Executing Test_globpath() -[ 328s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_eval_stuff.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 328s] Executing Test_E963() -[ 328s] Executing Test_catch_return_with_error() -[ 328s] Executing Test_curly_assignment() -[ 328s] Executing Test_deep_recursion() -[ 328s] Executing Test_dict_access_scriptversion2() -[ 328s] Executing Test_eval_string_in_special_key() -[ 328s] Executing Test_execute_cmd_with_null() -[ 328s] Executing Test_for_invalid() -[ 328s] Executing Test_for_invalid_line_count() -[ 328s] Executing Test_for_over_null_string() -[ 328s] Executing Test_let_errmsg() -[ 328s] Executing Test_let_register() -[ 328s] Executing Test_line_continuation() -[ 328s] Executing Test_mkdir_p() -[ 328s] Executing Test_modified_char_no_escape_special() -[ 328s] Executing Test_nocatch_restore_silent_emsg() -[ 328s] Executing Test_number_max_min_size() -[ 328s] Executing Test_readfile_binary() -[ 328s] Executing Test_readfile_binary_empty() -[ 328s] Executing Test_readfile_bom() -[ 328s] Executing Test_readfile_max() -[ 328s] Executing Test_scriptversion_fail() -[ 328s] Executing Test_setreg_basic() -[ 328s] Executing Test_skip_after_throw() -[ 328s] Executing Test_string_concat_scriptversion1() -[ 328s] Executing Test_string_concat_scriptversion2() -[ 328s] Executing Test_string_concatenation() -[ 328s] Executing Test_vvar_scriptversion1() -[ 328s] Executing Test_vvar_scriptversion2() -[ 328s] Executing Test_vvar_scriptversion3() -[ 328s] Executing Test_vvar_scriptversion4() -[ 329s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_excmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 329s] Executing Test_address_line_overflow() -[ 329s] Executing Test_append_cmd() -[ 329s] Executing Test_append_cmd_empty_buf() -[ 329s] Executing Test_buffers_lastused() -[ 329s] Executing Test_change_cmd() -[ 329s] Executing Test_command_not_implemented_E319() -[ 329s] Executing Test_confirm_cmd() -[ 330s] Executing Test_confirm_cmd_cancel() -[ 330s] Executing Test_confirm_q_wq() -[ 330s] Executing Test_confirm_write_partial_file() -[ 330s] Executing Test_confirm_write_ro() -[ 331s] Executing Test_copy() -[ 331s] Executing Test_drop_cmd() -[ 331s] Executing Test_ex_delete() -[ 331s] Executing Test_excmd_delete() -[ 331s] Executing Test_file_cmd() -[ 331s] Executing Test_filetype_cmd() -[ 331s] Executing Test_insert_cmd() -[ 331s] Executing Test_insert_cmd_empty_buf() -[ 331s] Executing Test_language_cmd() -[ 331s] Executing Test_mode_cmd() -[ 331s] Executing Test_not_break_expression_register() -[ 331s] Executing Test_print_cmd() -[ 331s] Executing Test_range_error() -[ 331s] Executing Test_read_cmd() -[ 331s] Executing Test_redir_cmd() -[ 331s] Executing Test_redir_cmd_readonly() -[ 331s] Executing Test_run_excmd_with_text_locked() -[ 331s] Executing Test_sandbox() -[ 331s] Executing Test_sleep_cmd() -[ 331s] Executing Test_using_zero_in_range() -[ 331s] Executing Test_verbose_cmd() -[ 331s] Executing Test_winsize_cmd() -[ 331s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_exec_while_if.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 331s] Executing Test_exec_while_if() -[ 331s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_execute_func.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 331s] Executing Test_execute_does_not_change_col() -[ 331s] Executing Test_execute_func_with_null() -[ 331s] Executing Test_execute_list() -[ 331s] Executing Test_execute_not_silent() -[ 331s] Executing Test_execute_string() -[ 331s] Executing Test_win_execute() -[ 331s] Executing Test_win_execute_on_startup() -[ 332s] Executing Test_win_execute_other_tab() -[ 332s] Executing Test_win_execute_update_ruler() -[ 332s] Executing Test_win_execute_visual_redraw() -[ 332s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_exists.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 332s] Executing Test_exists() -[ 332s] Executing Test_exists_funcarg() -[ 332s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_exists_autocmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 332s] Executing Test_AutoCommands() -[ 333s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_exit.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 333s] Executing Test_exit_code() -[ 334s] Executing Test_exit_error_reading_input() -[ 334s] -[ 334s] Executing Test_exiting() -[ 336s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_expr.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 336s] Executing Test_bitwise_shift() -[ 338s] Executing Test_broken_number() -[ 339s] Executing Test_compare_with_null() -[ 339s] Executing Test_dict() -[ 339s] Executing Test_empty_concatenate() -[ 339s] Executing Test_equal() -[ 339s] Executing Test_eval_after_if() -[ 339s] Executing Test_expr_completion() -[ 339s] Executing Test_expr_eval_error() -[ 340s] Executing Test_float_compare() -[ 340s] Executing Test_funcref() -[ 340s] Executing Test_function_outside_script() -[ 341s] Executing Test_function_with_funcref() -[ 341s] Executing Test_getreg_empty_list() -[ 341s] Executing Test_loop_over_null_list() -[ 341s] Executing Test_max_min_errors() -[ 342s] Executing Test_method_with_prefix() -[ 343s] Executing Test_op_falsy() -[ 343s] Executing Test_op_ternary() -[ 343s] Executing Test_option_value() -[ 343s] Executing Test_printf_64bit() -[ 344s] Executing Test_printf_errors() -[ 345s] Executing Test_printf_float() -[ 345s] Executing Test_printf_misc() -[ 346s] Executing Test_printf_spec_b() -[ 346s] Executing Test_printf_spec_s() -[ 346s] Executing Test_setmatches() -[ 346s] Executing Test_setreg_null_list() -[ 346s] Executing Test_special_char() -[ 346s] Executing Test_strcharpart() -[ 347s] Executing Test_strgetchar() -[ 347s] Executing Test_string_interp() -[ 348s] Executing Test_version() -[ 348s] Executing Test_white_in_function_call() -[ 348s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_file_size.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 348s] Executing Test_File_Read_Write() -[ 348s] Executing Test_File_Size() -[ 350s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_filechanged.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 350s] Executing Test_FileChangedShell_edit() -[ 350s] Executing Test_FileChangedShell_edit_dialog() -[ 350s] Executing Test_FileChangedShell_newbuf() -[ 350s] Executing Test_FileChangedShell_reload() -[ 357s] Executing Test_file_changed_dialog() -[ 362s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_fileformat.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 362s] Executing Test_fileformat_after_bw() -[ 362s] Executing Test_fileformat_autocommand() -[ 362s] Executing Test_fileformat_nomodifiable() -[ 362s] Executing Test_fileformat_on_startup() -[ 363s] Executing Test_fileformat_plusplus_read() -[ 363s] Executing Test_fileformats() -[ 367s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_filetype.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 367s] Executing Test_bas_file() -[ 367s] Executing Test_cfg_file() -[ 367s] Executing Test_conf_type() -[ 367s] Executing Test_d_file() -[ 368s] Executing Test_dat_file() -[ 368s] Executing Test_dep3patch_file() -[ 368s] Executing Test_detection() -[ 368s] Executing Test_dsl_file() -[ 369s] Executing Test_emptybuf_ftdetect() -[ 369s] Executing Test_ex_file() -[ 369s] Executing Test_filetype_detection() -[ 371s] Executing Test_filetype_indent_off() -[ 371s] Executing Test_foam_file() -[ 372s] Executing Test_frm_file() -[ 372s] Executing Test_fs_file() -[ 372s] Executing Test_git_file() -[ 372s] Executing Test_hook_file() -[ 373s] Executing Test_m_file() -[ 374s] Executing Test_mod_file() -[ 375s] Executing Test_other_type() -[ 375s] Executing Test_patch_file() -[ 375s] Executing Test_perl_file() -[ 375s] Executing Test_pp_file() -[ 375s] Executing Test_prg_file() -[ 376s] Executing Test_sc_file() -[ 376s] Executing Test_scd_file() -[ 376s] Executing Test_script_detection() -[ 379s] Executing Test_setfiletype_completion() -[ 379s] Executing Test_src_file() -[ 379s] Executing Test_sys_file() -[ 380s] Executing Test_tex_file() -[ 380s] Executing Test_tf_file() -[ 380s] Executing Test_ts_file() -[ 380s] Executing Test_ttl_file() -[ 380s] Executing Test_xpm_file() -[ 380s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_filter_cmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 380s] Executing Test_filter() -[ 380s] Executing Test_filter_cmd_completion() -[ 380s] Executing Test_filter_cmd_with_filter() -[ 380s] Executing Test_filter_commands() -[ 380s] Executing Test_filter_display() -[ 380s] Executing Test_filter_fails() -[ 380s] Executing Test_filter_scriptnames() -[ 380s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_filter_map.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 380s] Executing Test_filter_map_dict_expr_funcref() -[ 380s] Executing Test_filter_map_dict_expr_string() -[ 380s] Executing Test_filter_map_list_expr_funcref() -[ 380s] Executing Test_filter_map_list_expr_string() -[ 380s] Executing Test_filter_map_nested() -[ 380s] Executing Test_filter_map_string() -[ 381s] Executing Test_map_and_modify() -[ 381s] Executing Test_map_filter_fails() -[ 381s] Executing Test_mapnew_blob() -[ 381s] Executing Test_mapnew_dict() -[ 381s] Executing Test_mapnew_list() -[ 381s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_find_complete.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 381s] Executing Test_find_complete() -[ 382s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_findfile.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 382s] Executing Test_find_cmd() -[ 382s] Executing Test_find_non_existing_path() -[ 382s] Executing Test_finddir() -[ 382s] Executing Test_finddir_error() -[ 382s] Executing Test_findfile() -[ 383s] Executing Test_findfile_error() -[ 383s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_fixeol.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 383s] Executing Test_fixeol() -[ 384s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_flatten.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 384s] Executing Test_flatten() -[ 384s] Executing Test_flattennew() -[ 384s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_float_func.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 384s] Executing Test_abs() -[ 384s] Executing Test_acos() -[ 384s] Executing Test_asin() -[ 384s] Executing Test_atan() -[ 384s] Executing Test_atan2() -[ 384s] Executing Test_ceil() -[ 384s] Executing Test_cos() -[ 384s] Executing Test_cosh() -[ 384s] Executing Test_exp() -[ 384s] Executing Test_float2nr() -[ 384s] Executing Test_float_misc() -[ 384s] Executing Test_float_quotes() -[ 384s] Executing Test_float_quotes_from_legacy() -[ 384s] Executing Test_floor() -[ 384s] Executing Test_fmod() -[ 384s] Executing Test_isinf() -[ 384s] Executing Test_isnan() -[ 384s] Executing Test_log() -[ 384s] Executing Test_log10() -[ 384s] Executing Test_pow() -[ 384s] Executing Test_round() -[ 384s] Executing Test_sin() -[ 384s] Executing Test_sinh() -[ 384s] Executing Test_sqrt() -[ 384s] Executing Test_str2float() -[ 384s] Executing Test_tan() -[ 384s] Executing Test_tanh() -[ 384s] Executing Test_trunc() -[ 384s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_fnameescape.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 384s] Executing Test_fnameescape() -[ 385s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_fold.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 385s] Executing Test_address_fold() -[ 385s] Executing Test_combining_folds_indent() -[ 385s] Executing Test_combining_folds_marker() -[ 385s] Executing Test_fold_create_delete() -[ 385s] Executing Test_fold_create_delete_create() -[ 385s] Executing Test_fold_create_marker_in_C() -[ 385s] Executing Test_fold_delete_first_line() -[ 385s] Executing Test_fold_delete_recursive_fold() -[ 385s] Executing Test_fold_delete_with_marker() -[ 385s] Executing Test_fold_delete_with_marker_and_whichwrap() -[ 385s] Executing Test_fold_error() -[ 385s] Executing Test_fold_expr() -[ 385s] Executing Test_fold_expr_error() -[ 385s] Executing Test_fold_indent() -[ 385s] Executing Test_fold_jump() -[ 385s] Executing Test_fold_last_line_with_pagedown() -[ 385s] Executing Test_fold_manual() -[ 385s] Executing Test_fold_marker() -[ 385s] Executing Test_fold_merge_recrusive() -[ 385s] Executing Test_fold_move() -[ 385s] Executing Test_fold_move_foldlevel() -[ 385s] Executing Test_fold_relative_move() -[ 385s] Executing Test_fold_split() -[ 385s] Executing Test_fold_syntax() -[ 385s] Executing Test_foldclose_opt() -[ 385s] Executing Test_foldcolumn_multibyte_char() -[ 385s] Executing Test_folddoopen_folddoclosed() -[ 385s] Executing Test_foldexpr_2() -[ 385s] Executing Test_foldexpr_foldlevel() -[ 385s] Executing Test_foldexpr_no_interrupt_addsub() -[ 385s] Executing Test_foldexpr_scriptlocal_func() -[ 385s] Executing Test_foldopen_exception() -[ 385s] Executing Test_folds_marker_in_comment() -[ 385s] Executing Test_folds_marker_in_comment2() -[ 385s] Executing Test_folds_with_rnu() -[ 385s] Executing Test_foldtext_recursive() -[ 385s] Executing Test_foldtext_scriptlocal_func() -[ 385s] Executing Test_foldtextresult() -[ 385s] Executing Test_indent_append_blank_small_fold_close() -[ 385s] Executing Test_indent_append_under_blank_line() -[ 385s] Executing Test_indent_fold() -[ 385s] Executing Test_indent_fold2() -[ 385s] Executing Test_indent_fold_max() -[ 385s] Executing Test_indent_fold_with_read() -[ 385s] Executing Test_indent_one_line_fold_close() -[ 385s] Executing Test_manual_fold_with_filter() -[ 386s] Executing Test_move_folds_around_indent() -[ 386s] Executing Test_move_folds_around_manual() -[ 386s] Executing Test_move_no_folds() -[ 386s] Executing Test_undo_fold_deletion() -[ 386s] Executing Test_update_folds_expr_read() -[ 386s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_functions.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 386s] Executing Test_00_bufexists() -[ 386s] Executing Test_Executable() -[ 386s] Executing Test_append() -[ 386s] Executing Test_balloon_show() -[ 386s] Executing Test_browse() -[ 386s] Executing Test_browsedir() -[ 386s] Executing Test_bufadd_bufload() -[ 386s] Executing Test_builtin_check() -[ 386s] Executing Test_byte2line_line2byte() -[ 386s] Executing Test_byteidx() -[ 386s] Executing Test_call() -[ 386s] Executing Test_changenr() -[ 386s] Executing Test_char2nr() -[ 386s] Executing Test_charclass() -[ 386s] Executing Test_charidx() -[ 386s] Executing Test_col() -[ 386s] Executing Test_confirm() -[ 386s] Executing Test_count() -[ 386s] Executing Test_default_arg_value() -[ 386s] Executing Test_delete_rf() -[ 386s] Executing Test_echohl() -[ 386s] Executing Test_echoraw() -[ 386s] Executing Test_empty() -[ 386s] Executing Test_eval() -[ 386s] Executing Test_eventhandler() -[ 386s] Executing Test_executable_longname() -[ 386s] Executing Test_executable_windows_store_apps() -[ 386s] Executing Test_exepath() -[ 386s] Executing Test_filewritable() -[ 386s] Executing Test_func_exists_on_reload() -[ 386s] Executing Test_func_range_with_edit() -[ 386s] Executing Test_func_sandbox() -[ 386s] Executing Test_funcref_to_string() -[ 386s] Executing Test_garbagecollect_now_fails() -[ 386s] Executing Test_getbufvar() -[ 386s] Executing Test_getchar() -[ 386s] Executing Test_getcurpos_setpos() -[ 386s] Executing Test_getmousepos() -[ 386s] Executing Test_getpid() -[ 386s] Executing Test_gettext() -[ 386s] Executing Test_glob() -[ 386s] Executing Test_has() -[ 386s] Executing Test_hlexists() -[ 386s] Executing Test_hostname() -[ 386s] Executing Test_input_func() -[ 386s] Executing Test_inputdialog() -[ 386s] Executing Test_inputlist() -[ 386s] Executing Test_inputsecret() -[ 386s] Executing Test_isabsolutepath() -[ 386s] Executing Test_islocked() -[ 386s] Executing Test_last_buffer_nr() -[ 386s] Executing Test_len() -[ 386s] Executing Test_libcall_libcallnr() -[ 386s] Executing Test_match_func() -[ 386s] Executing Test_matchend() -[ 386s] Executing Test_matchlist() -[ 386s] Executing Test_matchstr() -[ 386s] Executing Test_matchstrpos() -[ 386s] Executing Test_max() -[ 386s] Executing Test_min() -[ 386s] Executing Test_mode() -[ 387s] Executing Test_nextnonblank_prevnonblank() -[ 387s] Executing Test_nr2char() -[ 387s] Executing Test_pathshorten() -[ 387s] Executing Test_platform_name() -[ 387s] Executing Test_range() -[ 387s] Executing Test_readdir() -[ 387s] Executing Test_readdir_sort() -[ 387s] Executing Test_readdirex() -[ 387s] Executing Test_readdirex_sort() -[ 387s] Executing Test_redo_in_nested_functions() -[ 387s] Executing Test_reg_executing_and_recording() -[ 387s] Executing Test_resolve_unix() -[ 387s] Executing Test_resolve_win32() -[ 387s] Executing Test_screen_functions() -[ 387s] Executing Test_setbufvar_keep_window_title() -[ 387s] Executing Test_setbufvar_options() -[ 387s] Executing Test_setline() -[ 387s] Executing Test_simplify() -[ 387s] Executing Test_state() -[ 391s] Executing Test_state() -[ 392s] Executing Test_str2nr() -[ 392s] Executing Test_strftime() -[ 392s] Executing Test_stridx() -[ 392s] Executing Test_strpart() -[ 392s] Executing Test_strptime() -[ 392s] Executing Test_strridx() -[ 392s] Executing Test_strwidth() -[ 392s] Executing Test_test_void() -[ 392s] Executing Test_tolower() -[ 392s] Executing Test_toupper() -[ 392s] Executing Test_tr() -[ 392s] Executing Test_trim() -[ 392s] Executing Test_virtcol() -[ 392s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_function_lists.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 392s] Executing Test_function_lists() -[ 393s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_getcwd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 393s] Executing Test_GetCwd() -[ 393s] Executing Test_GetCwd_lcd_shellslash() -[ 393s] Executing Test_Tab_Local_Cwd() -[ 393s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_getvar.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 393s] Executing Test_get_dict() -[ 393s] Executing Test_get_func() -[ 393s] Executing Test_get_lambda() -[ 393s] Executing Test_get_list() -[ 393s] Executing Test_gettabvar_in_tabline() -[ 393s] Executing Test_var() -[ 393s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_gf.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 393s] Executing Test_gF() -[ 393s] Executing Test_gf() -[ 394s] Executing Test_gf_error() -[ 394s] Executing Test_gf_includeexpr() -[ 394s] Executing Test_gf_url() -[ 394s] Executing Test_gf_visual() -[ 394s] Executing Test_includeexpr_scriptlocal_func() -[ 394s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_gn.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 394s] Executing Test_gN_repeat() -[ 394s] Executing Test_gN_then_gn() -[ 394s] Executing Test_gn_command() -[ 394s] Executing Test_gn_multi_line() -[ 394s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_goto.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 394s] Executing Test_cursorline_keep_col() -[ 394s] Executing Test_gD() -[ 394s] Executing Test_gD_char() -[ 394s] Executing Test_gD_comment() -[ 394s] Executing Test_gD_inline_comment() -[ 394s] Executing Test_gD_string() -[ 394s] Executing Test_gD_string_same_line() -[ 394s] Executing Test_gD_too() -[ 394s] Executing Test_gd() -[ 394s] Executing Test_gd_comment() -[ 394s] Executing Test_gd_comment_in_string() -[ 394s] Executing Test_gd_inline_comment() -[ 394s] Executing Test_gd_inline_comment_body() -[ 394s] Executing Test_gd_inline_comment_only() -[ 394s] Executing Test_gd_kr_style() -[ 394s] Executing Test_gd_local_block() -[ 394s] Executing Test_gd_missing_braces() -[ 394s] Executing Test_gd_not_local() -[ 394s] Executing Test_gd_string() -[ 394s] Executing Test_gd_string_in_comment() -[ 394s] Executing Test_gd_string_only() -[ 394s] Executing Test_gd_trailing_comment() -[ 394s] Executing Test_gd_trailing_multiline_comment() -[ 394s] Executing Test_gd_with_fold() -[ 394s] Executing Test_motion_c_comment() -[ 394s] Executing Test_motion_if_elif_else_endif() -[ 395s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -u NONE -U NONE --noplugin --not-a-term -S runtest.vim test_gui.vim -[ 395s] [?1049h[>4;2m[?1h=[?2004h[?12h[?12l[?2004l[>4;m[?2004h[>4;2m[?25l"test_gui.vim" 1609 lines, 49576 bytesres" [New][New] 0L, 0B written -[ 395s] NO tests executed "messages" 1528L, 101698B1533L, 101791B written[?2004l[>4;m -[ 395s] [?1004l[?2004l[?1l>[?25h[>4;m[?1049lVIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -u gui_preinit.vim -U gui_init.vim --noplugin --not-a-term -S runtest.vim test_gui_init.vim -[ 395s] [?1049h[>4;2m[?1h=[?2004h[?12h[?12l[?2004l[>4;m[?2004h[>4;2m[?25l"test_gui_init.vim" 46 lines, 939 bytesres" [New][New] 0L, 0B written -[ 396s] NO tests executed "messages" 1533L, 101791B1538L, 101894B written[?2004l[>4;m -[ 396s] [?1004l[?2004l[?1l>[?25h[>4;m[?1049lVIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_hardcopy.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 396s] Executing Test_dark_background() -[ 396s] Executing Test_empty_buffer() -[ 396s] Executing Test_errors() -[ 396s] Executing Test_fname_with_spaces() -[ 396s] Executing Test_illegal_byte() -[ 396s] Executing Test_printexpr() -[ 396s] Executing Test_printheader_parsing() -[ 396s] Executing Test_printmbcharset() -[ 396s] Executing Test_printmbfont() -[ 397s] Executing Test_printoptions() -[ 398s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_help.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 398s] Executing Test_help_completion() -[ 398s] Executing Test_help_errors() -[ 398s] Executing Test_help_expr() -[ 398s] Executing Test_help_keyword() -[ 398s] Executing Test_help_local_additions() -[ 398s] Executing Test_help_long_argument() -[ 398s] Executing Test_help_restore_snapshot() -[ 398s] Executing Test_help_restore_snapshot_split() -[ 398s] Executing Test_help_using_visual_match() -[ 398s] Executing Test_help_window_height() -[ 398s] Executing Test_helptag_cmd() -[ 398s] Executing Test_helptag_cmd_readonly() -[ 399s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_help_tagjump.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 399s] Executing Test_help_complete() -[ 399s] Executing Test_help_respect_current_file_lang() -[ 400s] Executing Test_help_tagjump() -[ 400s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_hide.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 400s] Executing Test_hide() -[ 400s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_highlight.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 400s] Executing Test_1_highlight_Normalgroup_exists() -[ 400s] Executing Test_colorcolumn() -[ 400s] Executing Test_colorcolumn_bri() -[ 400s] Executing Test_colorcolumn_sbr() -[ 401s] Executing Test_colornames_assignment_and_lookup() -[ 401s] Executing Test_colornames_assignment_and_unassignment() -[ 401s] Executing Test_colornames_default_list() -[ 401s] Executing Test_colornames_overwrite_default() -[ 401s] Executing Test_cursorcolumn_callback() -[ 401s] Executing Test_cursorcolumn_insert_on_tab() -[ 401s] Executing Test_cursorline_after_yank() -[ 401s] Executing Test_cursorline_with_visualmode() -[ 402s] Executing Test_highlight() -[ 402s] Executing Test_highlight_User() -[ 402s] Executing Test_highlight_clear_restores_context() -[ 402s] Executing Test_highlight_clear_restores_links() -[ 402s] Executing Test_highlight_cmd_errors() -[ 402s] Executing Test_highlight_ctermul() -[ 402s] Executing Test_highlight_default() -[ 402s] Executing Test_highlight_default_colorscheme_restores_links() -[ 402s] Executing Test_highlight_eol_on_diff() -[ 402s] Executing Test_highlight_eol_with_cursorline() -[ 402s] Executing Test_highlight_eol_with_cursorline_breakindent() -[ 402s] Executing Test_highlight_eol_with_cursorline_linewrap() -[ 402s] Executing Test_highlight_eol_with_cursorline_rightleft() -[ 402s] Executing Test_highlight_eol_with_cursorline_sign() -[ 402s] Executing Test_highlight_eol_with_cursorline_vertsplit() -[ 402s] Executing Test_highlight_opt() -[ 402s] Executing Test_highlight_start_stop() -[ 402s] Executing Test_highlight_term_attr() -[ 402s] Executing Test_hlget() -[ 402s] Executing Test_hlset() -[ 403s] Executing Test_put_before_cursorline() -[ 403s] Executing Test_termguicolors() -[ 403s] Executing Test_wincolor() -[ 404s] Executing Test_wincolor_listchars() -[ 404s] Executing Test_xxlast_highlight_RGB_color() -[ 404s] Executing Test_z_no_space_before_xxx() -[ 404s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_history.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 404s] Executing Test_History() -[ 404s] Executing Test_Search_history_window() -[ 404s] Executing Test_history_completion() -[ 404s] Executing Test_history_crypt_key() -[ 404s] Executing Test_history_search() -[ 404s] Executing Test_history_size() -[ 404s] Executing Test_history_truncates_long_entry() -[ 404s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_hlsearch.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 404s] Executing Test_hlsearch() -[ 404s] Executing Test_hlsearch_eol_highlight() -[ 404s] Executing Test_hlsearch_hangs() -[ 404s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_iminsert.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 404s] Executing Test_getimstatus() -[ 404s] Executing Test_imactivatefunc_imstatusfunc_callback() -[ 404s] Executing Test_imactivatefunc_imstatusfunc_callback_no_breaks_foldopen() -[ 405s] Executing Test_iminsert2() -[ 405s] Executing Test_iminsert_toggle() -[ 405s] Executing Test_lmap_in_insert_mode() -[ 405s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_increment.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 405s] Executing Test_increment_empty_line() -[ 405s] Executing Test_increment_special_char() -[ 405s] Executing Test_increment_unsigned() -[ 405s] Executing Test_normal_increment_01() -[ 405s] Executing Test_normal_increment_02() -[ 405s] Executing Test_normal_increment_03() -[ 405s] Executing Test_normal_increment_signed_hexoct_nr() -[ 405s] Executing Test_normal_increment_with_virtualedit() -[ 405s] Executing Test_visual_increment_01() -[ 405s] Executing Test_visual_increment_02() -[ 405s] Executing Test_visual_increment_03() -[ 405s] Executing Test_visual_increment_04() -[ 405s] Executing Test_visual_increment_05() -[ 405s] Executing Test_visual_increment_06() -[ 405s] Executing Test_visual_increment_07() -[ 405s] Executing Test_visual_increment_08() -[ 405s] Executing Test_visual_increment_09() -[ 405s] Executing Test_visual_increment_10() -[ 405s] Executing Test_visual_increment_11() -[ 405s] Executing Test_visual_increment_12() -[ 405s] Executing Test_visual_increment_13() -[ 405s] Executing Test_visual_increment_14() -[ 405s] Executing Test_visual_increment_15() -[ 405s] Executing Test_visual_increment_16() -[ 405s] Executing Test_visual_increment_17() -[ 405s] Executing Test_visual_increment_18() -[ 405s] Executing Test_visual_increment_19() -[ 405s] Executing Test_visual_increment_20() -[ 405s] Executing Test_visual_increment_21() -[ 405s] Executing Test_visual_increment_22() -[ 405s] Executing Test_visual_increment_23() -[ 405s] Executing Test_visual_increment_24() -[ 405s] Executing Test_visual_increment_25() -[ 405s] Executing Test_visual_increment_26() -[ 405s] Executing Test_visual_increment_27() -[ 405s] Executing Test_visual_increment_28() -[ 405s] Executing Test_visual_increment_29() -[ 405s] Executing Test_visual_increment_30() -[ 405s] Executing Test_visual_increment_31() -[ 405s] Executing Test_visual_increment_32() -[ 405s] Executing Test_visual_increment_33() -[ 405s] Executing Test_visual_increment_34() -[ 405s] Executing Test_visual_increment_35() -[ 405s] Executing Test_visual_increment_36() -[ 405s] Executing Test_visual_increment_37() -[ 405s] Executing Test_visual_increment_38() -[ 405s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_increment_dbcs.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 405s] Executing Test_increment_dbcs_1() -[ 405s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_indent.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 405s] Executing Test_copyindent() -[ 405s] Executing Test_formatting_keeps_first_line_indent() -[ 405s] Executing Test_indent_func() -[ 405s] Executing Test_indent_func_with_gq() -[ 405s] Executing Test_indent_operator_undo() -[ 405s] Executing Test_lisp_indent() -[ 405s] Executing Test_lisp_indent_change_multiline() -[ 405s] Executing Test_lisp_indent_quoted() -[ 405s] Executing Test_modeline_indent_expr() -[ 405s] Executing Test_preproc_indent() -[ 405s] Executing Test_preserveindent() -[ 405s] Executing Test_reindent() -[ 405s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_ins_complete.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 405s] Executing Test_CompleteDoneDict() -[ 405s] Executing Test_CompleteDoneDictNoUserData() -[ 405s] Executing Test_CompleteDoneList() -[ 405s] Executing Test_CompleteDoneNone() -[ 405s] Executing Test_CompleteDone_undo() -[ 405s] Executing Test_compl_feedkeys() -[ 405s] Executing Test_compl_in_cmdwin() -[ 405s] Executing Test_complete_across_line() -[ 405s] Executing Test_complete_add_onechar() -[ 405s] Executing Test_complete_cmdline() -[ 406s] Executing Test_complete_erase_firstmatch() -[ 406s] Executing Test_complete_from_unlistedbuf() -[ 406s] Executing Test_complete_from_unloadedbuf() -[ 406s] Executing Test_complete_func_error() -[ 406s] Executing Test_complete_item_refresh_always() -[ 406s] Executing Test_complete_items() -[ 406s] Executing Test_complete_joinspaces() -[ 406s] Executing Test_complete_local_expansion() -[ 406s] Executing Test_complete_long_word() -[ 406s] Executing Test_complete_longest_match() -[ 406s] Executing Test_complete_mbyte_char_add() -[ 406s] Executing Test_complete_overrun() -[ 406s] Executing Test_complete_reginsert() -[ 406s] Executing Test_complete_smartindent() -[ 406s] Executing Test_complete_special_chars() -[ 406s] Executing Test_complete_stop() -[ 406s] Executing Test_complete_stopinsert_startinsert() -[ 406s] Executing Test_complete_undo() -[ 406s] Executing Test_complete_unreadable_thesaurus_file() -[ 406s] Executing Test_complete_wholeline() -[ 406s] Executing Test_complete_wholeline_unlistedbuf() -[ 406s] Executing Test_complete_wholeline_unloadedbuf() -[ 406s] Executing Test_complete_with_cindent() -[ 406s] Executing Test_complete_wrapscan() -[ 406s] Executing Test_completefunc_args() -[ 406s] Executing Test_completefunc_callback() -[ 407s] Executing Test_completefunc_error() -[ 407s] Executing Test_completefunc_info() -[ 407s] Executing Test_completefunc_invalid_data() -[ 407s] Executing Test_infercase_very_long_line() -[ 407s] Executing Test_ins_compl_tag_sft() -[ 407s] Executing Test_ins_complete() -[ 407s] Executing Test_ins_complete_add() -[ 407s] Executing Test_ins_complete_end_of_line() -[ 407s] Executing Test_ins_complete_invalid_byte() -[ 407s] Executing Test_ins_completeslash() -[ 407s] Executing Test_issue_7021() -[ 407s] Executing Test_no_mapping_for_ctrl_x_key() -[ 407s] Executing Test_omni_autoload() -[ 407s] Executing Test_omni_dash() -[ 407s] Executing Test_omni_throw() -[ 407s] Executing Test_omnifunc_callback() -[ 408s] Executing Test_pum_stopped_by_timer() -[ 408s] Executing Test_pum_with_folds_two_tabs() -[ 408s] Executing Test_pum_with_preview_win() -[ 408s] Executing Test_recursive_complete_func() -[ 408s] Executing Test_scrollbar_on_wide_char() -[ 409s] Executing Test_tagfunc_wipes_out_buffer() -[ 409s] Executing Test_thesaurusfunc_callback() -[ 409s] Executing Test_z1_complete_no_history() -[ 409s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_ins_complete_no_halt.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 409s] Executing Test_auto_complete_backwards_no_halt() -[ 409s] Executing Test_ins_complete_no_halt() -[ 410s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_interrupt.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 410s] Executing Test_interrupt() -[ 410s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_job_fails.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 410s] Executing Test_job_start_fails() -[ 410s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_join.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 410s] Executing Test_join_comments_2() -[ 410s] Executing Test_join_lines() -[ 410s] Executing Test_join_lines_with_comments() -[ 410s] Executing Test_join_marks() -[ 410s] Executing Test_join_spaces_marks() -[ 410s] Executing Test_join_with_count() -[ 410s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_json.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 410s] Executing Test_js_decode() -[ 410s] Executing Test_js_encode() -[ 410s] Executing Test_json_decode() -[ 410s] Executing Test_json_encode() -[ 410s] Executing Test_json_encode_long() -[ 410s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_jumplist.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 410s] Executing Test_empty_buffer() -[ 410s] Executing Test_getjumplist() -[ 411s] Executing Test_jumplist_invalid() -[ 411s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_lambda.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 411s] Executing Test_closure_counter() -[ 411s] Executing Test_closure_error() -[ 411s] Executing Test_closure_refcount() -[ 411s] Executing Test_closure_unlet() -[ 411s] Executing Test_lambda_call_lambda_from_lambda() -[ 411s] Executing Test_lambda_capture_by_reference() -[ 411s] Executing Test_lambda_circular_reference() -[ 411s] Executing Test_lambda_closure_counter() -[ 411s] Executing Test_lambda_combination() -[ 411s] Executing Test_lambda_delfunc() -[ 411s] Executing Test_lambda_do_not_share_local_variable() -[ 411s] Executing Test_lambda_error() -[ 411s] Executing Test_lambda_fails() -[ 411s] Executing Test_lambda_feature() -[ 411s] Executing Test_lambda_refer_local_variable_from_other_scope() -[ 411s] Executing Test_lambda_scope() -[ 411s] Executing Test_lambda_share_scope() -[ 411s] Executing Test_lambda_side_effect() -[ 411s] Executing Test_lambda_vim9cmd_linebreak() -[ 411s] Executing Test_lambda_with_a_var() -[ 411s] Executing Test_lambda_with_filter() -[ 411s] Executing Test_lambda_with_index() -[ 411s] Executing Test_lambda_with_map() -[ 411s] Executing Test_lambda_with_partial() -[ 411s] Executing Test_lambda_with_sort() -[ 411s] Executing Test_lambda_with_timer() -[ 411s] Executing Test_named_function_closure() -[ 411s] Executing Test_not_lamda() -[ 412s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_langmap.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 412s] Executing Test_langmap() -[ 412s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_let.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 412s] Executing Test_let() -[ 412s] Executing Test_let_arg_fail() -[ 412s] Executing Test_let_errors() -[ 412s] Executing Test_let_heredoc() -[ 412s] Executing Test_let_heredoc_eval() -[ 412s] Executing Test_let_heredoc_fails() -[ 412s] Executing Test_let_heredoc_trim_no_indent_marker() -[ 412s] Executing Test_let_interpolated() -[ 412s] Executing Test_let_no_type_checking() -[ 412s] Executing Test_let_option_error() -[ 412s] Executing Test_let_termcap() -[ 412s] Executing Test_let_utf8_environment() -[ 412s] Executing Test_let_varg_fail() -[ 413s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_lineending.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 413s] Executing Test_lineending() -[ 413s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_listchars.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 413s] Executing Test_listchars() -[ 413s] Executing Test_listchars_composing() -[ 413s] Executing Test_listchars_foldcolumn() -[ 413s] Executing Test_listchars_invalid() -[ 413s] Executing Test_listchars_unicode() -[ 413s] Executing Test_listchars_window_local() -[ 414s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_listdict.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 414s] Executing Test_deep_nested_dict() -[ 414s] Executing Test_deep_nested_list() -[ 414s] Executing Test_dict() -[ 414s] Executing Test_dict_assign() -[ 414s] Executing Test_dict_big() -[ 414s] Executing Test_dict_deepcopy() -[ 415s] Executing Test_dict_func() -[ 415s] Executing Test_dict_func_remove() -[ 416s] Executing Test_dict_func_remove_in_use() -[ 416s] Executing Test_dict_identity() -[ 416s] Executing Test_dict_item_lock_map() -[ 417s] Executing Test_dict_item_lock_unlet() -[ 417s] Executing Test_dict_literal_keys() -[ 417s] Executing Test_dict_lock_extend() -[ 417s] Executing Test_dict_lock_filter() -[ 417s] Executing Test_dict_lock_map() -[ 417s] Executing Test_dict_lock_operator() -[ 417s] Executing Test_dict_lock_unlet() -[ 417s] Executing Test_dict_scope_var_extend() -[ 417s] Executing Test_dict_scope_var_extend_overwrite() -[ 417s] Executing Test_dict_scope_var_remove() -[ 417s] Executing Test_dict_unlet() -[ 417s] Executing Test_func_arg_list() -[ 417s] Executing Test_let_lock_list() -[ 417s] Executing Test_let_lock_list_items() -[ 417s] Executing Test_list_add() -[ 417s] Executing Test_list_assign() -[ 418s] Executing Test_list_create() -[ 418s] Executing Test_list_func_remove() -[ 418s] Executing Test_list_identity() -[ 419s] Executing Test_list_item_lock_map() -[ 419s] Executing Test_list_locked_var() -[ 419s] Executing Test_list_locked_var_unlet() -[ 419s] Executing Test_list_range_assign() -[ 419s] Executing Test_list_slice() -[ 420s] Executing Test_list_unlet() -[ 420s] Executing Test_listdict_compare() -[ 421s] Executing Test_listdict_compare_complex() -[ 421s] Executing Test_listdict_extend() -[ 421s] Executing Test_listdict_extendnew() -[ 421s] Executing Test_listdict_index() -[ 424s] Executing Test_lock_var_unlet() -[ 424s] Executing Test_lockvar_script_autoload() -[ 424s] Executing Test_null_dict() -[ 424s] Executing Test_null_list() -[ 424s] Executing Test_reduce() -[ 424s] Executing Test_reverse_sort_uniq() -[ 425s] Executing Test_scope_dict() -[ 425s] Executing Test_script_local_dict_func() -[ 425s] Executing Test_str_split() -[ 425s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_listener.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 425s] Executing Test_col_after_deletion_moved_cur() -[ 425s] Executing Test_listener_args() -[ 425s] Executing Test_listener_caches_buffer_line() -[ 425s] Executing Test_listener_cleared_newbuf() -[ 425s] Executing Test_listener_garbage_collect() -[ 425s] Executing Test_listener_undo_delete_all() -[ 425s] Executing Test_listener_undo_line_number() -[ 425s] Executing Test_listening() -[ 425s] Executing Test_listening_other_buf() -[ 425s] Executing Test_no_change_for_empty_undo() -[ 425s] Executing Test_remove_listener_in_callback() -[ 426s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_listlbr.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 426s] Executing Test_block_replace_after_wrapping() -[ 426s] Executing Test_linebreak_with_conceal() -[ 426s] Executing Test_linebreak_with_list() -[ 426s] Executing Test_linebreak_with_nolist() -[ 426s] Executing Test_linebreak_with_visual_operations() -[ 426s] Executing Test_list_with_listchars() -[ 426s] Executing Test_list_with_tab_and_skipping_first_chars() -[ 426s] Executing Test_norm_after_block_visual() -[ 426s] Executing Test_set_linebreak() -[ 426s] Executing Test_should_break() -[ 426s] Executing Test_undo_after_block_visual() -[ 426s] Executing Test_virtual_block() -[ 426s] Executing Test_virtual_block_and_vbA() -[ 426s] Executing Test_virtual_char_and_block() -[ 426s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_listlbr_utf8.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 426s] Executing Test_chinese_char_on_wrap_column() -[ 426s] Executing Test_colorcolumn_priority() -[ 426s] Executing Test_illegal_byte_and_breakat() -[ 426s] Executing Test_linebreak_with_fancy_listchars() -[ 426s] Executing Test_linebreak_with_list_and_tabs() -[ 426s] Executing Test_linebreak_with_nolist() -[ 426s] Executing Test_list_and_concealing1() -[ 426s] Executing Test_list_and_concealing2() -[ 426s] Executing Test_multibyte_sign_and_colorcolumn() -[ 426s] Executing Test_multibyte_wrap_and_breakat() -[ 426s] Executing Test_nolinebreak_with_list() -[ 426s] Executing Test_screenattr_for_comment() -[ 426s] Executing Test_visual_block_and_selection_exclusive() -[ 426s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_lua.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 426s] Executing Test_call_lua_func_from_vim9_func() -[ 426s] Executing Test_lua_beep() -[ 426s] Executing Test_lua_blob() -[ 426s] Executing Test_lua_buffer() -[ 426s] Executing Test_lua_buffer_delete() -[ 426s] Executing Test_lua_buffer_insert() -[ 426s] Executing Test_lua_buffer_isvalid() -[ 426s] Executing Test_lua_buffer_name() -[ 426s] Executing Test_lua_buffer_next_previous() -[ 426s] Executing Test_lua_buffer_number() -[ 426s] Executing Test_lua_buffer_number_lines() -[ 426s] Executing Test_lua_buffer_var_table() -[ 426s] Executing Test_lua_call() -[ 426s] Executing Test_lua_command() -[ 426s] Executing Test_lua_command_new_no_ml_get_error() -[ 426s] Executing Test_lua_debug() -[ 427s] Executing Test_lua_dict() -[ 427s] Executing Test_lua_dict_iter() -[ 427s] Executing Test_lua_dict_table() -[ 427s] Executing Test_lua_eval() -[ 427s] Executing Test_lua_fn() -[ 427s] Executing Test_lua_funcref() -[ 427s] Executing Test_lua_global_var_table() -[ 427s] Executing Test_lua_heredoc() -[ 427s] Executing Test_lua_line() -[ 427s] Executing Test_lua_list() -[ 427s] Executing Test_lua_list_iter() -[ 427s] Executing Test_lua_list_table() -[ 427s] Executing Test_lua_list_table_insert_remove() -[ 427s] Executing Test_lua_luado() -[ 427s] Executing Test_lua_multiple_commands() -[ 427s] Executing Test_lua_open() -[ 427s] Executing Test_lua_predefined_var_table() -[ 427s] Executing Test_lua_recursive_list() -[ 427s] Executing Test_lua_set_cursor() -[ 427s] Executing Test_lua_string_with_newline() -[ 427s] Executing Test_lua_tabpage_var_table() -[ 427s] Executing Test_lua_type() -[ 427s] Executing Test_lua_vim_version() -[ 427s] Executing Test_lua_window() -[ 427s] Executing Test_lua_window_buffer() -[ 427s] Executing Test_lua_window_height() -[ 427s] Executing Test_lua_window_isvalid() -[ 427s] Executing Test_lua_window_line_col() -[ 427s] Executing Test_lua_window_next_previous() -[ 427s] Executing Test_lua_window_set_current() -[ 427s] Executing Test_lua_window_var_table() -[ 427s] Executing Test_lua_window_width() -[ 427s] Executing Test_luaeval_error() -[ 427s] Executing Test_luaeval_with_lambda() -[ 427s] Executing Test_luafile() -[ 427s] Executing Test_luafile_error() -[ 427s] Executing Test_luafile_percent() -[ 427s] Executing Test_luafile_print() -[ 427s] Executing Test_pass_lua_callback_to_vim_from_lua() -[ 427s] Executing Test_pass_lua_metatable_callback_to_vim_from_lua() -[ 427s] Executing Test_skip_lua() -[ 427s] Executing Test_update_package_paths() -[ 428s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_makeencoding.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 428s] Executing Test_getfile() -[ 428s] Executing Test_grep() -[ 428s] Executing Test_longline_conversion() -[ 428s] Executing Test_make() -[ 429s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_man.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 429s] Executing Test_Man_uses_shellescape() -[ 429s] Executing Test_buffer_count_hidden() -[ 429s] Executing Test_g_ft_man_open_mode() -[ 429s] Executing Test_keep_unnamed_register() -[ 429s] Executing Test_local_options() -[ 429s] Executing Test_nomodifiable() -[ 429s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_map_functions.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 429s] Executing Test_map_local() -[ 429s] Executing Test_map_restore() -[ 429s] Executing Test_maparg() -[ 429s] Executing Test_mapcheck() -[ 429s] Executing Test_maplist() -[ 429s] Executing Test_mapset() -[ 429s] Executing Test_mapset_arg1_dir() -[ 429s] Executing Test_range_map() -[ 429s] Executing Test_vim9_maparg() -[ 429s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_mapping.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 429s] Executing Test_abbr_after_line_join() -[ 429s] Executing Test_abbr_remove() -[ 429s] Executing Test_abbr_trigger_special() -[ 429s] Executing Test_abbreviate_latin1_encoding() -[ 429s] Executing Test_abbreviate_multi_byte() -[ 429s] Executing Test_abbreviation() -[ 429s] Executing Test_abbreviation_CR() -[ 429s] Executing Test_abclear() -[ 429s] Executing Test_abclear_buffer() -[ 429s] Executing Test_break_undo() -[ 429s] Executing Test_cabbr_visual_mode() -[ 429s] Executing Test_error_in_map_expr() -[ 430s] Executing Test_expr_abbr() -[ 430s] Executing Test_expr_map_error() -[ 430s] Executing Test_expr_map_escape_special() -[ 430s] Executing Test_expr_map_gets_cursor() -[ 430s] Executing Test_expr_map_restore_cursor() -[ 430s] Executing Test_hasmapto() -[ 430s] Executing Test_list_mappings() -[ 430s] Executing Test_map_after_timed_out_nop() -[ 431s] Executing Test_map_cmdkey() -[ 431s] Executing Test_map_cmdkey_cmdline_mode() -[ 431s] Executing Test_map_cmdkey_insert_complete_mode() -[ 431s] Executing Test_map_cmdkey_insert_mode() -[ 431s] Executing Test_map_cmdkey_normal_cmd() -[ 431s] Executing Test_map_cmdkey_normal_mode() -[ 431s] Executing Test_map_cmdkey_op_pending_mode() -[ 431s] Executing Test_map_cmdkey_redo() -[ 431s] Executing Test_map_cmdkey_select_mode() -[ 431s] Executing Test_map_cmdkey_visual_mode() -[ 431s] Executing Test_map_cpo_special_keycode() -[ 431s] Executing Test_map_ctrl_c_insert() -[ 431s] Executing Test_map_ctrl_c_visual() -[ 431s] Executing Test_map_cursor() -[ 431s] Executing Test_map_cursor_ctrl_gU() -[ 431s] Executing Test_map_error() -[ 431s] Executing Test_map_feedkeys() -[ 431s] Executing Test_map_langmap() -[ 431s] Executing Test_map_listing() -[ 431s] Executing Test_map_meta_multibyte() -[ 431s] Executing Test_map_meta_quotes() -[ 431s] Executing Test_map_recursive() -[ 431s] Executing Test_map_script_cmd_finds_func() -[ 431s] Executing Test_map_script_cmd_restore() -[ 431s] Executing Test_map_script_cmd_survives_unmap() -[ 431s] Executing Test_map_special() -[ 431s] Executing Test_map_timeout() -[ 431s] Executing Test_map_timeout_with_timer_interrupt() -[ 432s] Executing Test_mapcomplete() -[ 432s] Executing Test_mkvimrc_mapmodes() -[ 432s] Executing Test_motionforce_omap() -[ 432s] Executing Test_mouse_drag_insert_map() -[ 432s] Executing Test_mouse_drag_mapped_start_select() -[ 432s] Executing Test_plug_remap() -[ 432s] Executing Test_script_local_remap() -[ 432s] Executing Test_unmap_simplifiable() -[ 432s] Executing Test_using_past_typeahead() -[ 432s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_marks.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 432s] Executing Test_Incr_Marks() -[ 432s] Executing Test_Restore_DelMark() -[ 432s] Executing Test_delmarks() -[ 432s] Executing Test_file_mark() -[ 432s] Executing Test_getmarklist() -[ 432s] Executing Test_jump_mark_autocmd() -[ 432s] Executing Test_lockmarks_with_put() -[ 432s] Executing Test_mark_error() -[ 432s] Executing Test_marks_cmd() -[ 432s] Executing Test_marks_cmd_multibyte() -[ 432s] Executing Test_marks_k_cmd() -[ 432s] Executing Test_previous_jump_mark() -[ 432s] Executing Test_setpos() -[ 432s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_match.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 432s] Executing Test_match() -[ 432s] Executing Test_match_error() -[ 432s] Executing Test_match_in_linebreak() -[ 432s] Executing Test_match_tab_with_linebreak() -[ 432s] Executing Test_match_with_incsearch() -[ 433s] Executing Test_matchadd_error() -[ 433s] Executing Test_matchadd_other_window() -[ 433s] Executing Test_matchaddpos() -[ 433s] Executing Test_matchaddpos_error() -[ 433s] Executing Test_matchaddpos_otherwin() -[ 433s] Executing Test_matchaddpos_using_negative_priority() -[ 433s] Executing Test_matchclear_other_window() -[ 433s] Executing Test_matchdelete_error() -[ 433s] Executing Test_matchdelete_other_window() -[ 433s] Executing Test_matchdelete_redraw() -[ 433s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_matchadd_conceal.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 433s] Executing Test_clearmatches() -[ 433s] Executing Test_cursor_column_in_concealed_line_after_leftcol_change() -[ 433s] Executing Test_cursor_column_in_concealed_line_after_window_scroll() -[ 433s] Executing Test_default_conceal_char() -[ 433s] Executing Test_interaction_matchadd_syntax() -[ 433s] Executing Test_matchadd_and_conceallevel_3() -[ 433s] Executing Test_matchadd_and_syn_conceal() -[ 433s] Executing Test_matchadd_repeat_conceal_with_syntax_off() -[ 433s] Executing Test_simple_matchadd() -[ 433s] Executing Test_simple_matchadd_and_conceal() -[ 433s] Executing Test_syn_and_match_conceal() -[ 433s] Executing Test_using_matchaddpos() -[ 434s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_matchadd_conceal_utf8.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 434s] Executing Test_match_using_multibyte_conceal_char() -[ 434s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_matchfuzzy.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 434s] Executing Test_matchfuzzy() -[ 434s] Executing Test_matchfuzzy_limit() -[ 434s] Executing Test_matchfuzzy_mbyte() -[ 434s] Executing Test_matchfuzzypos() -[ 434s] Executing Test_matchfuzzypos_mbyte() -[ 434s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_memory_usage.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 434s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_menu.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 434s] Executing Test_buffer_menu_special_buffers() -[ 434s] Executing Test_emenu_cmd() -[ 434s] Executing Test_load_menu() -[ 434s] Executing Test_menu_commands() -[ 434s] Executing Test_menu_errors() -[ 434s] Executing Test_menu_expand() -[ 434s] Executing Test_menu_icon() -[ 434s] Executing Test_menu_info() -[ 434s] Executing Test_menu_special() -[ 434s] Executing Test_only_modifier() -[ 434s] Executing Test_popup_menu() -[ 434s] Executing Test_show_menus() -[ 434s] Executing Test_tmenu() -[ 434s] Executing Test_translate_menu() -[ 434s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_messages.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 434s] Executing Test_ask_yesno() -[ 435s] Executing Test_echo_string_partial() -[ 435s] Executing Test_echoerr() -[ 435s] Executing Test_echomsg() -[ 435s] Executing Test_echospace() -[ 435s] Executing Test_fileinfo_after_echo() -[ 435s] Executing Test_mapping_at_hit_return_prompt() -[ 435s] Executing Test_message_completion() -[ 435s] Executing Test_message_more() -[ 435s] Executing Test_messages() -[ 435s] Executing Test_mode_message_at_leaving_insert_by_ctrl_c() -[ 435s] Executing Test_mode_message_at_leaving_insert_with_esc_mapped() -[ 436s] Executing Test_null() -[ 436s] Executing Test_quit_long_message() -[ 436s] Executing Test_stopinsert_does_not_break_message_output() -[ 436s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_method.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 436s] Executing Test_dict_method() -[ 436s] Executing Test_list_method() -[ 436s] Executing Test_method_append() -[ 436s] Executing Test_method_args() -[ 436s] Executing Test_method_float() -[ 436s] Executing Test_method_funcref() -[ 436s] Executing Test_method_lambda() -[ 436s] Executing Test_method_not_supported() -[ 436s] Executing Test_method_syntax() -[ 436s] Executing Test_string_method() -[ 436s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_mksession.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 436s] Executing Test__mksession_arglocal() -[ 436s] Executing Test_altfile() -[ 436s] Executing Test_mksession() -[ 436s] Executing Test_mksession_arglist() -[ 436s] Executing Test_mksession_blank_tabs() -[ 436s] Executing Test_mksession_blank_windows() -[ 436s] Executing Test_mksession_buffer_count() -[ 436s] Executing Test_mksession_buffer_order() -[ 436s] Executing Test_mksession_compatible() -[ 436s] Executing Test_mksession_foldopt() -[ 436s] Executing Test_mksession_globals() -[ 436s] Executing Test_mksession_help_noopt() -[ 436s] Executing Test_mksession_hlsearch() -[ 436s] Executing Test_mksession_large_winheight() -[ 436s] Executing Test_mksession_lcd_multiple_tabs() -[ 436s] Executing Test_mksession_no_balt() -[ 436s] Executing Test_mksession_no_errmsg() -[ 436s] Executing Test_mksession_one_buffer_two_windows() -[ 436s] Executing Test_mksession_quote_in_filename() -[ 436s] Executing Test_mksession_resize() -[ 436s] Executing Test_mksession_rtp() -[ 436s] Executing Test_mksession_scratch() -[ 436s] Executing Test_mksession_sesdir() -[ 436s] Executing Test_mksession_shortmess() -[ 436s] Executing Test_mksession_shortmess_with_A() -[ 437s] Executing Test_mksession_skiprtp() -[ 437s] Executing Test_mksession_slash() -[ 437s] Executing Test_mksession_tcd_multiple_tabs() -[ 437s] Executing Test_mksession_tcd_single_tabs() -[ 437s] Executing Test_mksession_terminal_no_restore_cmdarg() -[ 437s] Executing Test_mksession_terminal_no_restore_func() -[ 437s] Executing Test_mksession_terminal_no_restore_funcarg() -[ 437s] Executing Test_mksession_terminal_no_ssop() -[ 437s] Executing Test_mksession_terminal_restore_other() -[ 437s] Executing Test_mksession_terminal_shared_windows() -[ 437s] Executing Test_mksession_terminal_shell() -[ 437s] Executing Test_mksession_winheight() -[ 437s] Executing Test_mksession_winminheight() -[ 437s] Executing Test_mksession_winpos() -[ 437s] Executing Test_mksession_zero_winheight() -[ 437s] Executing Test_mkview_file() -[ 437s] Executing Test_mkview_loadview_jumplist() -[ 437s] Executing Test_mkview_loadview_with_viewdir() -[ 437s] Executing Test_mkview_manual_fold() -[ 437s] Executing Test_mkview_no_balt() -[ 437s] Executing Test_mkview_no_file_name() -[ 437s] Executing Test_mkview_open_folds() -[ 437s] Executing Test_mkview_terminal_windows() -[ 437s] Executing Test_mkvimrc() -[ 437s] Executing Test_scrolloff() -[ 437s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_modeless.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 437s] Executing Test_modeless_characterwise_selection() -[ 437s] Executing Test_modeless_line_selection() -[ 437s] Executing Test_modeless_word_selection() -[ 438s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_modeline.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 438s] Executing Test_modeline_colon() -[ 438s] Executing Test_modeline_default() -[ 438s] Executing Test_modeline_diff_buffer() -[ 438s] Executing Test_modeline_disable() -[ 438s] Executing Test_modeline_fails_always() -[ 440s] Executing Test_modeline_fails_modelineexpr() -[ 440s] Executing Test_modeline_filetype() -[ 440s] Executing Test_modeline_filetype_fails() -[ 440s] Executing Test_modeline_invalid() -[ 441s] Executing Test_modeline_keymap() -[ 441s] Executing Test_modeline_keymap_fails() -[ 441s] Executing Test_modeline_setoption_verbose() -[ 441s] Executing Test_modeline_syntax() -[ 441s] Executing Test_modeline_syntax_fails() -[ 441s] Executing Test_modeline_version() -[ 442s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_mzscheme.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 443s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_nested_function.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 443s] Executing Test_max_nesting() -[ 443s] Executing Test_nested_argument() -[ 443s] Executing Test_nested_functions() -[ 443s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_netbeans.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 443s] Executing Test_nb_basic() -[ 450s] Executing Test_nb_bwipe_buffer() -[ 453s] Executing Test_nb_file_auth() -[ 456s] Executing Test_nb_quit_with_conn() -[ 460s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_normal.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 460s] Executing Test_delete_until_paragraph() -[ 460s] Executing Test_formatexpr_scriptlocal_func() -[ 460s] Executing Test_g_ctrl_g() -[ 460s] Executing Test_gr_command() -[ 460s] Executing Test_horiz_motion() -[ 460s] Executing Test_java_motion() -[ 460s] Executing Test_message_when_using_ctrl_c() -[ 460s] Executing Test_mode_updated_after_ctrl_c() -[ 460s] Executing Test_normal00_optrans() -[ 460s] Executing Test_normal01_keymodel() -[ 460s] Executing Test_normal03_join() -[ 460s] Executing Test_normal04_filter() -[ 460s] -[ 460s] [No write since last change] -[ 460s] -[ 460s] Press ENTER or type command to continueExecuting Test_normal05_formatexpr() -[ 460s] Executing Test_normal05_formatexpr_newbuf() -[ 460s] Executing Test_normal05_formatexpr_setopt() -[ 460s] Executing Test_normal06_formatprg() -[ 460s] Executing Test_normal07_internalfmt() -[ 460s] Executing Test_normal08_fold() -[ 460s] Executing Test_normal09a_operatorfunc() -[ 460s] Executing Test_normal09b_operatorfunc() -[ 460s] Executing Test_normal09c_operatorfunc() -[ 460s] Executing Test_normal10_expand() -[ 460s] Executing Test_normal11_showcmd() -[ 460s] Executing Test_normal12_nv_error() -[ 460s] Executing Test_normal13_help() -[ 460s] Executing Test_normal14_page() -[ 460s] Executing Test_normal14_page_eol() -[ 460s] Executing Test_normal15_z_scroll_vert() -[ 460s] Executing Test_normal16_z_scroll_hor() -[ 460s] Executing Test_normal17_z_scroll_hor2() -[ 460s] Executing Test_normal18_z_fold() -[ 460s] Executing Test_normal20_exmode() -[ 461s] Executing Test_normal21_nv_hat() -[ 461s] Executing Test_normal22_zet() -[ 461s] Executing Test_normal23_K() -[ 461s] -[ 461s] [No write since last change] -[ 461s] -[ 461s] Press ENTER or type command to continueExecuting Test_normal24_rot13() -[ 461s] Executing Test_normal25_tag() -[ 461s] Executing Test_normal26_put() -[ 461s] Executing Test_normal27_bracket() -[ 461s] Executing Test_normal28_parenthesis() -[ 461s] Executing Test_normal29_brace() -[ 461s] Executing Test_normal30_changecase() -[ 461s] Executing Test_normal31_r_cmd() -[ 461s] Executing Test_normal32_g_cmd1() -[ 461s] Executing Test_normal33_g_cmd2() -[ 461s] Executing Test_normal34_g_cmd3() -[ 461s] Executing Test_normal35_g_cmd4() -[ 461s] Executing Test_normal36_g_cmd5() -[ 461s] Executing Test_normal37_g_cmd6() -[ 461s] Executing Test_normal38_nvhome() -[ 461s] Executing Test_normal39_cw() -[ 461s] Executing Test_normal40_ctrl_bsl() -[ 461s] Executing Test_normal41_insert_reg() -[ 461s] Executing Test_normal42_halfpage() -[ 461s] Executing Test_normal45_drop() -[ 461s] Executing Test_normal46_ignore() -[ 461s] Executing Test_normal47_visual_buf_wipe() -[ 461s] Executing Test_normal48_wincmd() -[ 461s] Executing Test_normal49_counts() -[ 461s] Executing Test_normal50_commandline() -[ 461s] Executing Test_normal51_FileChangedRO() -[ 461s] Executing Test_normal52_rl() -[ 461s] Executing Test_normal54_Ctrl_bsl() -[ 461s] Executing Test_normal_8g8() -[ 461s] Executing Test_normal_changecase_turkish() -[ 461s] Executing Test_normal_colon_op() -[ 461s] Executing Test_normal_count_after_operator() -[ 461s] Executing Test_normal_count_out_of_range() -[ 461s] Executing Test_normal_cursorhold_with_count() -[ 461s] Executing Test_normal_delete_cmd() -[ 461s] Executing Test_normal_ex_substitute() -[ 461s] Executing Test_normal_expand_latin1() -[ 461s] Executing Test_normal_formatexpr_returns_nonzero() -[ 461s] Executing Test_normal_gdollar_cmd() -[ 461s] Executing Test_normal_gj_on_extra_wide_char() -[ 461s] Executing Test_normal_gk_gj() -[ 461s] Executing Test_normal_large_count() -[ 461s] Executing Test_normal_nvend() -[ 461s] Executing Test_normal_op_across_lines() -[ 461s] Executing Test_normal_percent_jump() -[ 461s] Executing Test_normal_scroloff() -[ 461s] Executing Test_normal_section() -[ 461s] Executing Test_normal_shift_rightleft() -[ 461s] Executing Test_normal_vert_scroll_longline() -[ 461s] Executing Test_normal_word_move() -[ 461s] Executing Test_normal_yank_with_excmd() -[ 461s] Executing Test_normal_z_error() -[ 461s] Executing Test_nv_hat_count() -[ 461s] Executing Test_opfunc_callback() -[ 461s] Executing Test_scroll_in_ex_mode() -[ 461s] Executing Test_sidescroll_opt() -[ 461s] Executing Test_vert_scroll_cmds() -[ 461s] Executing Test_wincmd_with_count() -[ 462s] -[ 462s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_number.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 462s] Executing Test_number() -[ 462s] Executing Test_number_no_text_virtual_edit() -[ 462s] Executing Test_number_rightleft() -[ 462s] Executing Test_number_with_linewrap1() -[ 462s] Executing Test_number_with_relativenumber() -[ 462s] Executing Test_numberwidth() -[ 462s] Executing Test_numberwidth_adjusted() -[ 462s] Executing Test_relativenumber() -[ 462s] Executing Test_relativenumber_callback() -[ 462s] Executing Test_relativenumber_colors() -[ 462s] Executing Test_relativenumber_uninitialised() -[ 462s] Executing Test_set_global_and_local() -[ 462s] Executing Test_set_options() -[ 463s] ../vim -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../optiondefs.h -[ 463s] [?1049h[>4;2m[?1h=[?2004h[?12h[?12l[?2004l[>4;m[?2004h[>4;2m[?25l"../optiondefs.h" 2980 lines, 96477 bytes[?2004l[>4;m -[ 463s] [?2004l[?1l>[?25h[>4;m[?1049lVIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_options.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 463s] Executing Test_000_term_option_verbose() -[ 463s] Executing Test_VIM_POSIX() -[ 463s] Executing Test_backupskip() -[ 463s] Executing Test_buftype() -[ 463s] Executing Test_cinkeys() -[ 463s] Executing Test_cmdheight() -[ 463s] Executing Test_complete() -[ 463s] Executing Test_copy_context() -[ 463s] Executing Test_copy_winopt() -[ 463s] Executing Test_debug_option() -[ 463s] Executing Test_dictionary() -[ 463s] Executing Test_filetype_valid() -[ 463s] Executing Test_isfname() -[ 463s] Executing Test_isfname_with_options() -[ 463s] Executing Test_keymap_valid() -[ 463s] Executing Test_local_scrolloff() -[ 463s] Executing Test_opt_boolean() -[ 463s] Executing Test_opt_cdhome() -[ 463s] Executing Test_opt_control_char() -[ 463s] Executing Test_opt_default() -[ 463s] Executing Test_opt_default_cdpath() -[ 463s] Executing Test_opt_errorbells() -[ 463s] Executing Test_opt_local_to_global() -[ 463s] Executing Test_opt_num_op() -[ 463s] Executing Test_opt_reset_scroll() -[ 464s] Executing Test_opt_sandbox() -[ 464s] Executing Test_opt_scrolljump() -[ 464s] Executing Test_opt_set_keycode() -[ 464s] Executing Test_opt_winminheight() -[ 464s] Executing Test_opt_winminheight_term() -[ 464s] Executing Test_opt_winminheight_term_tabs() -[ 464s] Executing Test_opt_winminwidth() -[ 464s] Executing Test_options_command() -[ 464s] Executing Test_pastetoggle() -[ 464s] Executing Test_path_keep_commas() -[ 464s] Executing Test_path_too_long() -[ 464s] Executing Test_renderoptions() -[ 464s] Executing Test_rightleftcmd() -[ 464s] Executing Test_set_all() -[ 464s] Executing Test_set_completion() -[ 464s] Executing Test_set_completion_2() -[ 464s] Executing Test_set_encoding() -[ 464s] Executing Test_set_errors() -[ 464s] Executing Test_set_in_sandbox() -[ 464s] Executing Test_set_indentexpr() -[ 464s] Executing Test_set_one_column() -[ 464s] Executing Test_set_ttytype() -[ 464s] -[ 464s] E558: Terminal entry not found in terminfo -[ 464s] 'xxx' not known. Available builtin terminals are: -[ 464s] builtin_amiga -[ 464s] builtin_ansi -[ 464s] builtin_pcansi -[ 464s] builtin_win32 -[ 464s] builtin_vt320 -[ 464s] builtin_vt52 -[ 464s] builtin_xterm -[ 464s] builtin_iris-ansi -[ 464s] builtin_debug -[ 464s] builtin_dumb -[ 464s] Executing Test_set_values() -[ 464s] Executing Test_shortmess_F() -[ 464s] Executing Test_shortmess_F2() -[ 464s] Executing Test_signcolumn() -[ 464s] Executing Test_switchbuf_reset() -[ 464s] Executing Test_syntax_valid() -[ 464s] Executing Test_thesaurus() -[ 464s] Executing Test_visualbell() -[ 464s] Executing Test_whichwrap() -[ 464s] Executing Test_wildchar() -[ 464s] Executing Test_wildoptions() -[ 464s] Executing Test_window_opt() -[ 464s] Executing Test_write() -[ 464s] Executing Test_writedelay() -[ 465s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_packadd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 465s] Executing Test_colorscheme() -[ 465s] Executing Test_colorscheme_completion() -[ 465s] Executing Test_helptags() -[ 465s] Executing Test_packadd() -[ 466s] Executing Test_packadd_completion() -[ 466s] Executing Test_packadd_noload() -[ 466s] Executing Test_packadd_start() -[ 466s] Executing Test_packadd_symlink_dir() -[ 466s] Executing Test_packadd_symlink_dir2() -[ 466s] Executing Test_packloadall() -[ 466s] Executing Test_runtime() -[ 467s] Executing Test_start_autoload() -[ 467s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_partial.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 467s] Executing Test_auto_partial_rebind() -[ 467s] Executing Test_bind_in_python() -[ 467s] Executing Test_compare_partials() -[ 467s] Executing Test_cycle_partial_job() -[ 467s] Executing Test_cyclic_dict_arg() -[ 467s] Executing Test_cyclic_list_arg() -[ 467s] Executing Test_func_unref() -[ 467s] Executing Test_function_in_dict() -[ 467s] Executing Test_get_partial_items() -[ 467s] Executing Test_partial_args() -[ 467s] Executing Test_partial_dict() -[ 467s] Executing Test_partial_exists() -[ 467s] Executing Test_partial_implicit() -[ 467s] Executing Test_partial_string() -[ 467s] Executing Test_redefine_dict_func() -[ 467s] Executing Test_ref_job_partial_dict() -[ 467s] Executing Test_script_function_in_dict() -[ 467s] Executing Test_script_function_in_dict_arg() -[ 467s] Executing Test_tostring() -[ 468s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_paste.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 468s] Executing Test_paste_clipboard() -[ 468s] Executing Test_paste_cmdline() -[ 468s] Executing Test_paste_ex_mode() -[ 468s] Executing Test_paste_insert_mode() -[ 468s] Executing Test_paste_normal_mode() -[ 468s] Executing Test_paste_onechar() -[ 468s] Executing Test_paste_opt_restore() -[ 468s] Executing Test_paste_visual_mode() -[ 468s] Executing Test_pastetoggle() -[ 468s] Executing Test_pastetoggle_timeout_no_typed_after_mapped() -[ 468s] Executing Test_pastetoggle_timeout_typed_after_mapped() -[ 468s] Executing Test_pastetoggle_timeout_typed_after_noremap() -[ 469s] Executing Test_xrestore() -[ 469s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_perl.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 469s] Executing Test_000_SvREFCNT() -[ 469s] Executing Test_VIM_Blob() -[ 469s] Executing Test_VIM_Buffers() -[ 469s] Executing Test_VIM_Windows() -[ 469s] Executing Test_VIM_package() -[ 469s] Executing Test_buffer_Append() -[ 469s] Executing Test_buffer_Count() -[ 469s] Executing Test_buffer_Delete() -[ 469s] Executing Test_buffer_Get() -[ 469s] Executing Test_buffer_Name() -[ 469s] Executing Test_buffer_Number() -[ 469s] Executing Test_buffer_Set() -[ 469s] Executing Test_change_buffer() -[ 469s] Executing Test_evaluate_list() -[ 469s] Executing Test_perl_heredoc() -[ 469s] Executing Test_perl_in_sandbox() -[ 469s] Executing Test_perldo() -[ 469s] Executing Test_perleval() -[ 469s] Executing Test_set_cursor() -[ 469s] Executing Test_stack_usage_fix() -[ 469s] Executing Test_stdio() -[ 469s] Executing Test_window_Cursor() -[ 469s] Executing Test_window_SetHeight() -[ 469s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_plus_arg_edit.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 469s] Executing Test_binary_arg() -[ 469s] Executing Test_edit() -[ 470s] Executing Test_edit_bad() -[ 470s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_popup.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 470s] Executing Test_CompleteChanged() -[ 470s] Executing Test_balloon_split() -[ 470s] Executing Test_compl_ignore_mappings() -[ 470s] Executing Test_compl_vim_cmds_after_register_expr() -[ 470s] Executing Test_complete_CTRLN_startofbuffer() -[ 470s] Executing Test_complete_func_mess() -[ 470s] Executing Test_complete_no_filter() -[ 470s] Executing Test_complete_no_undo() -[ 470s] Executing Test_complete_o_tab() -[ 470s] Executing Test_completefunc_opens_new_window_one() -[ 470s] Executing Test_completefunc_opens_new_window_two() -[ 470s] Executing Test_completefunc_with_scratch_buffer() -[ 470s] Executing Test_completefunc_works() -[ 470s] Executing Test_completion_can_undo() -[ 470s] Executing Test_completion_clear_candidate_list() -[ 470s] Executing Test_completion_comment_formatting() -[ 470s] Executing Test_completion_ctrl_e_without_autowrap() -[ 470s] Executing Test_completion_respect_bs_option() -[ 470s] Executing Test_menu_only_exists_in_terminal() -[ 470s] Executing Test_noinsert_complete() -[ 470s] Executing Test_omnifunc_with_check() -[ 470s] Executing Test_popup_and_preview_autocommand() -[ 470s] Executing Test_popup_and_previewwindow_dump() -[ 470s] Executing Test_popup_and_window_resize() -[ 470s] Executing Test_popup_command() -[ 471s] Executing Test_popup_complete() -[ 471s] Executing Test_popup_complete2() -[ 471s] Executing Test_popup_complete_backwards() -[ 471s] Executing Test_popup_complete_backwards_ctrl_p() -[ 471s] Executing Test_popup_complete_info_01() -[ 471s] Executing Test_popup_complete_info_02() -[ 471s] Executing Test_popup_complete_info_no_pum() -[ 471s] Executing Test_popup_completion_insertmode() -[ 471s] Executing Test_popup_position() -[ 471s] Executing Test_pum_getpos() -[ 471s] Executing Test_pum_rightleft() -[ 472s] Executing Test_pum_scrollbar() -[ 472s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_popupwin.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 472s] Executing Test_adjust_left_past_screen_width() -[ 472s] Executing Test_bufdel_skips_popupwin_buffer() -[ 472s] Executing Test_notifications() -[ 472s] Executing Test_popup_all_corners() -[ 472s] Executing Test_popup_atcursor() -[ 472s] Executing Test_popup_atcursor_pos() -[ 472s] Executing Test_popup_beval() -[ 473s] Executing Test_popup_close_callback() -[ 473s] Executing Test_popup_close_with_mouse() -[ 473s] Executing Test_popup_cursorline() -[ 474s] Executing Test_popup_cursorline_vim9() -[ 474s] Executing Test_popup_dialog() -[ 474s] Executing Test_popup_drag() -[ 474s] Executing Test_popup_drag_minwidth() -[ 474s] Executing Test_popup_drag_termwin() -[ 474s] Executing Test_popup_empty() -[ 474s] Executing Test_popup_filter() -[ 474s] Executing Test_popup_filter_menu() -[ 474s] Executing Test_popup_filter_normal_cmd() -[ 475s] Executing Test_popup_filter_win_execute() -[ 475s] Executing Test_popup_filter_win_execute_error() -[ 475s] Executing Test_popup_firstline() -[ 475s] Executing Test_popup_firstline_cursorline() -[ 475s] Executing Test_popup_firstline_dump() -[ 475s] Executing Test_popup_fitting_scrollbar() -[ 475s] Executing Test_popup_getoptions() -[ 475s] Executing Test_popup_getoptions_other_tab() -[ 475s] Executing Test_popup_getpos() -[ 475s] Executing Test_popup_hidden() -[ 475s] Executing Test_popup_hide() -[ 475s] Executing Test_popup_in_tab() -[ 475s] Executing Test_popup_invalid_arguments() -[ 475s] Executing Test_popup_menu() -[ 475s] Executing Test_popup_menu_filter() -[ 475s] Executing Test_popup_menu_narrow() -[ 475s] Executing Test_popup_menu_screenshot() -[ 475s] Executing Test_popup_menu_with_maxwidth() -[ 476s] Executing Test_popup_menu_with_scrollbar() -[ 476s] Executing Test_popup_menu_wrap() -[ 476s] Executing Test_popup_move() -[ 476s] Executing Test_popup_moved() -[ 476s] Executing Test_popup_never_behind() -[ 476s] Executing Test_popup_noscrolloff() -[ 476s] Executing Test_popup_nospace() -[ 476s] Executing Test_popup_option_values() -[ 476s] Executing Test_popup_position_adjust() -[ 476s] Executing Test_popup_prop_not_visible() -[ 476s] Executing Test_popup_scrollbar() -[ 477s] Executing Test_popup_select() -[ 477s] Executing Test_popup_set_firstline() -[ 477s] Executing Test_popup_setoptions_other_tab() -[ 477s] Executing Test_popup_settext() -[ 478s] Executing Test_popup_settext_getline() -[ 478s] Executing Test_popup_settext_null() -[ 478s] Executing Test_popup_time() -[ 479s] Executing Test_popup_title() -[ 479s] Executing Test_popup_too_high_scrollbar() -[ 479s] Executing Test_popup_valid_arguments() -[ 479s] Executing Test_popup_width_longest() -[ 479s] Executing Test_popup_with_border_and_padding() -[ 480s] Executing Test_popup_with_mask() -[ 480s] Executing Test_popup_with_matches() -[ 480s] Executing Test_popup_with_showbreak() -[ 480s] Executing Test_popup_with_syntax_setbufvar() -[ 481s] Executing Test_popup_with_syntax_win_execute() -[ 481s] Executing Test_popup_with_wrap() -[ 481s] Executing Test_popup_without_wrap() -[ 481s] Executing Test_popup_wraps() -[ 481s] Executing Test_popupmenu_info_align_menu() -[ 481s] Executing Test_popupmenu_info_border() -[ 482s] Executing Test_popupmenu_info_hidden() -[ 482s] Executing Test_popupmenu_info_noborder() -[ 482s] Executing Test_popupmenu_info_too_wide() -[ 482s] Executing Test_popupmenu_masking() -[ 482s] Executing Test_popupwin_atcursor_far_right() -[ 482s] Executing Test_popupwin_buf_close() -[ 482s] Executing Test_popupwin_buffer_with_swapfile() -[ 483s] Executing Test_popupwin_bufnr() -[ 483s] Executing Test_popupwin_cancel() -[ 483s] Executing Test_popupwin_close_prevwin() -[ 483s] Executing Test_popupwin_double_width() -[ 483s] Executing Test_popupwin_exiting_terminal() -[ 483s] Executing Test_popupwin_filter_close_ctrl_c() -[ 483s] Executing Test_popupwin_filter_close_three_errors() -[ 483s] Executing Test_popupwin_filter_close_wrong_name() -[ 483s] Executing Test_popupwin_filter_input_multibyte() -[ 483s] Executing Test_popupwin_filter_mode() -[ 483s] Executing Test_popupwin_filter_mouse() -[ 483s] Executing Test_popupwin_filter_redraw() -[ 483s] Executing Test_popupwin_garbage_collect() -[ 483s] Executing Test_popupwin_getoptions_tablocal() -[ 483s] Executing Test_popupwin_latin1_encoding() -[ 483s] Executing Test_popupwin_recycle_bnr() -[ 483s] Executing Test_popupwin_sign() -[ 484s] Executing Test_popupwin_splitmove() -[ 484s] Executing Test_popupwin_terminal_buffer() -[ 484s] Executing Test_popupwin_terminal_buffer_none() -[ 484s] Executing Test_popupwin_terminal_scrollbar() -[ 484s] Executing Test_popupwin_width() -[ 484s] Executing Test_popupwin_with_buffer() -[ 484s] Executing Test_popupwin_with_buffer_and_filter() -[ 484s] Executing Test_previewpopup() -[ 484s] Executing Test_set_get_options() -[ 484s] Executing Test_simple_popup() -[ 485s] Executing Test_win_execute_closing_curwin() -[ 485s] Executing Test_win_execute_not_allowed() -[ 485s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_popupwin_textprop.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 485s] Executing Test_textprop_popup() -[ 485s] Executing Test_textprop_popup_corners() -[ 486s] Executing Test_textprop_popup_offsets() -[ 486s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_preview.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 486s] Executing Test_Psearch() -[ 486s] Executing Test_multiple_preview_windows() -[ 486s] Executing Test_window_preview() -[ 486s] Executing Test_window_preview_from_help() -[ 486s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_profile.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 486s] Executing Test_profdel_func() -[ 486s] Executing Test_profdel_star() -[ 486s] Executing Test_profile_completion() -[ 486s] Executing Test_profile_errors() -[ 486s] Executing Test_profile_file() -[ 486s] Executing Test_profile_file_with_cont() -[ 486s] Executing Test_profile_func() -[ 487s] Executing Test_profile_func_with_ifelse() -[ 487s] Executing Test_profile_func_with_trycatch() -[ 487s] Executing Test_profile_stop_dump() -[ 487s] Executing Test_profile_truncate_mbyte() -[ 487s] Executing Test_profile_typed_func() -[ 487s] Executing Test_vim9_nested_call() -[ 487s] Executing Test_vim9_profiling() -[ 487s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_prompt_buffer.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 487s] Executing Test_prompt_backspace() -[ 487s] Executing Test_prompt_basic() -[ 488s] Executing Test_prompt_buffer_edit() -[ 488s] Executing Test_prompt_buffer_getbufinfo() -[ 488s] Executing Test_prompt_editing() -[ 488s] Executing Test_prompt_garbage_collect() -[ 488s] Executing Test_prompt_switch_windows() -[ 488s] Executing Test_prompt_while_writing_to_hidden_buffer() -[ 488s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_python2.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 488s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_python3.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 488s] Executing Test_AAA_python3_setup() -[ 488s] Executing Test_Catch_Exception_Message() -[ 488s] Executing Test_Write_To_Current_Buffer_Fixes_Cursor_Clear() -[ 488s] Executing Test_Write_To_Current_Buffer_Fixes_Cursor_List() -[ 488s] Executing Test_Write_To_Current_Buffer_Fixes_Cursor_Str() -[ 488s] Executing Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Clear() -[ 488s] Executing Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_ClearLine() -[ 488s] Executing Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_List() -[ 488s] Executing Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Str() -[ 488s] Executing Test_aaa_python3_threading() -[ 489s] Executing Test_py3do() -[ 489s] Executing Test_python3_buffer() -[ 489s] Executing Test_python3_buffers() -[ 489s] Executing Test_python3_chdir() -[ 489s] Executing Test_python3_dict() -[ 490s] Executing Test_python3_dict_del_items() -[ 490s] Executing Test_python3_dict_extend() -[ 490s] Executing Test_python3_dict_key_error() -[ 490s] Executing Test_python3_dir_method() -[ 490s] Executing Test_python3_errors() -[ 490s] Executing Test_python3_exception() -[ 490s] Executing Test_python3_float() -[ 490s] Executing Test_python3_fold_hidden_buffer() -[ 490s] Executing Test_python3_function_call() -[ 490s] Executing Test_python3_heredoc() -[ 490s] Executing Test_python3_hidden_buf_mod_does_not_mess_up_display() -[ 490s] Executing Test_python3_import() -[ 490s] Executing Test_python3_iter_ref() -[ 490s] Executing Test_python3_keyboard_interrupt() -[ 490s] Executing Test_python3_list() -[ 490s] Executing Test_python3_list_del_items() -[ 490s] Executing Test_python3_list_slice() -[ 490s] Executing Test_python3_lock_scope_attr() -[ 490s] Executing Test_python3_lockedvar() -[ 490s] Executing Test_python3_new() -[ 490s] Executing Test_python3_non_utf8_string() -[ 490s] Executing Test_python3_opt_reset_local_to_global() -[ 490s] Executing Test_python3_opts() -[ 490s] Executing Test_python3_pyeval() -[ 490s] Executing Test_python3_range() -[ 490s] Executing Test_python3_range2() -[ 490s] Executing Test_python3_settrace() -[ 490s] Executing Test_python3_slice_assignment() -[ 490s] Executing Test_python3_stdin_stderr() -[ 490s] Executing Test_python3_subclass() -[ 490s] Executing Test_python3_tabpage() -[ 490s] Executing Test_python3_tabpage_window() -[ 490s] Executing Test_python3_types() -[ 490s] Executing Test_python3_vars() -[ 490s] Executing Test_python3_vim_bindeval() -[ 490s] Executing Test_python3_vim_current() -[ 490s] Executing Test_python3_vim_func() -[ 490s] Executing Test_python3_vim_val() -[ 490s] Executing Test_python3_window() -[ 490s] Executing Test_set_cursor() -[ 490s] Executing Test_skipped_python3_command_does_not_affect_pyxversion() -[ 490s] Executing Test_unicode() -[ 490s] Executing Test_vim_function() -[ 490s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_pyx2.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 490s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_pyx3.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 490s] Executing Test_Catch_Exception_Message() -[ 490s] Executing Test_has_pythonx() -[ 490s] Executing Test_pyx() -[ 490s] Executing Test_pyx3_heredoc() -[ 490s] Executing Test_pyxdo() -[ 490s] Executing Test_pyxeval() -[ 490s] Executing Test_pyxfile() -[ 491s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_quickfix.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 491s] Executing Test_AA_cc_no_errors() -[ 491s] Executing Test_Autocmd() -[ 491s] Executing Test_Autocmd_Exception() -[ 491s] Executing Test_Multi_LL_Help() -[ 491s] Executing Test_Qf_Size() -[ 491s] Executing Test_add_invalid_entry_with_qf_window() -[ 491s] Executing Test_add_qf() -[ 491s] Executing Test_adjust_lnum() -[ 491s] Executing Test_autocmd_changelist() -[ 491s] Executing Test_browse() -[ 492s] Executing Test_bufoverflow() -[ 492s] Executing Test_bufwinenter_once() -[ 492s] Executing Test_caddbuffer_to_empty() -[ 492s] Executing Test_caddbuffer_wrong() -[ 492s] Executing Test_caddexpr_wrong() -[ 492s] Executing Test_cage() -[ 492s] Executing Test_cbelow() -[ 492s] Executing Test_cbottom() -[ 492s] Executing Test_cbuffer() -[ 492s] Executing Test_cclose_from_copen() -[ 492s] Executing Test_cclose_in_autocmd() -[ 492s] Executing Test_cexpr() -[ 492s] Executing Test_cexpr_acmd_freelist() -[ 492s] Executing Test_cfile() -[ 493s] Executing Test_cgetexpr_works() -[ 493s] Executing Test_cgetfile_on_long_lines() -[ 494s] Executing Test_changedtick() -[ 494s] Executing Test_clist() -[ 494s] Executing Test_copenHeight() -[ 494s] Executing Test_copenHeight_tabline() -[ 494s] Executing Test_cquit() -[ 494s] Executing Test_curswant() -[ 494s] Executing Test_cwindow() -[ 494s] Executing Test_cwindow_highlight() -[ 494s] Executing Test_cwindow_jump() -[ 494s] Executing Test_cwindow_newwin_fails() -[ 494s] Executing Test_dirstack_cleanup() -[ 494s] Executing Test_duplicate_buf() -[ 494s] Executing Test_efm() -[ 494s] Executing Test_efm1() -[ 494s] Executing Test_efm2() -[ 495s] Executing Test_efm_dirstack() -[ 495s] Executing Test_efm_end_lnum_col() -[ 495s] Executing Test_efm_error_type() -[ 495s] Executing Test_efm_ignore_continuations() -[ 495s] Executing Test_empty_list_quickfixtextfunc() -[ 495s] Executing Test_empty_qfbuf() -[ 495s] Executing Test_errortitle() -[ 495s] Executing Test_file_from_copen() -[ 495s] Executing Test_filetype_autocmd() -[ 495s] Executing Test_filter_clist() -[ 495s] Executing Test_get_list_from_lines() -[ 495s] Executing Test_getqflist() -[ 495s] Executing Test_getqflist_by_idx() -[ 495s] Executing Test_getqflist_invalid_nr() -[ 495s] Executing Test_getqflist_wiped_out_buffer() -[ 495s] Executing Test_grep() -[ 495s] Executing Test_helpgrep() -[ 496s] Executing Test_helpgrep_restore_cpo_aucmd() -[ 496s] Executing Test_helpgrep_vim9_restore_cpo() -[ 496s] Executing Test_helpgrep_with_lang_specifier() -[ 496s] Executing Test_history() -[ 496s] Executing Test_invalid_efm() -[ 496s] Executing Test_jumpto_first_error() -[ 496s] Executing Test_lbuffer_crash() -[ 496s] Executing Test_lbuffer_with_bwipe() -[ 496s] Executing Test_lexpr_crash() -[ 496s] Executing Test_lfile_crash() -[ 496s] Executing Test_lhelpgrep_autocmd() -[ 497s] Executing Test_lhelpgrep_autocmd_free_loclist() -[ 497s] Executing Test_lhelpgrep_from_help_window() -[ 498s] Executing Test_ll_window_ctx() -[ 498s] Executing Test_locationlist() -[ 498s] Executing Test_locationlist_cross_tab_jump() -[ 498s] Executing Test_locationlist_curwin_was_closed() -[ 498s] Executing Test_locationlist_open_in_newtab() -[ 498s] Executing Test_loclist_replace_autocmd() -[ 498s] Executing Test_loclist_update_with_llwin_only() -[ 498s] Executing Test_long_lines() -[ 498s] Executing Test_lopen_bwipe() -[ 498s] Executing Test_lopen_bwipe_all() -[ 498s] Executing Test_lvimgrep_crash() -[ 499s] Executing Test_lvimgrep_crash2() -[ 499s] Executing Test_multidirstack() -[ 499s] Executing Test_multifilestack() -[ 499s] Executing Test_nomem() -[ 499s] Executing Test_perbuf_efm() -[ 499s] Executing Test_qf_free() -[ 499s] Executing Test_qf_id() -[ 499s] Executing Test_qf_property() -[ 499s] Executing Test_qf_tick() -[ 499s] Executing Test_qf_title() -[ 499s] Executing Test_qfbuf() -[ 499s] Executing Test_qfbuf_update() -[ 499s] Executing Test_qfcmd_abort() -[ 499s] Executing Test_qfjump() -[ 500s] Executing Test_qflist_statusmsg() -[ 500s] Executing Test_qftextfunc() -[ 500s] Executing Test_qftextfunc_callback() -[ 500s] Executing Test_qftextfunc_other_loclist() -[ 500s] Executing Test_qftitle() -[ 500s] Executing Test_qfwin_pos() -[ 500s] Executing Test_quickfix_count() -[ 500s] Executing Test_quickfix_set_list_with_act() -[ 500s] Executing Test_quickfix_was_changed_by_autocmd() -[ 500s] Executing Test_quickfix_window_fails_to_open() -[ 500s] Executing Test_quickfixtextfunc_recursive() -[ 500s] Executing Test_recursive_setqflist() -[ 500s] Executing Test_resize_from_copen() -[ 500s] Executing Test_search_in_dirstack() -[ 501s] Executing Test_setexpr() -[ 501s] Executing Test_setloclist_crash() -[ 501s] Executing Test_setloclist_in_autocommand() -[ 501s] Executing Test_setqfidx() -[ 501s] Executing Test_setqflist() -[ 501s] Executing Test_setqflist_empty_middle() -[ 501s] Executing Test_setqflist_empty_older() -[ 501s] Executing Test_setqflist_invalid_nr() -[ 501s] Executing Test_setqflist_user_sets_buftype() -[ 501s] Executing Test_shorten_fname() -[ 501s] Executing Test_splitview() -[ 501s] Executing Test_switchbuf() -[ 501s] Executing Test_two_qf_windows() -[ 501s] Executing Test_two_windows() -[ 502s] Executing Test_view_result_split() -[ 502s] Executing Test_vim9_cexpr() -[ 502s] Executing Test_vimgrep() -[ 502s] Executing Test_vimgrep_autocmd() -[ 502s] Executing Test_vimgrep_autocmd_cd() -[ 502s] Executing Test_vimgrep_existing_swapfile() -[ 503s] Executing Test_vimgrep_fuzzy_match() -[ 503s] Executing Test_vimgrep_incsearch() -[ 503s] Executing Test_vimgrep_nomatch() -[ 503s] Executing Test_vimgrep_noswapfile() -[ 503s] Executing Test_vimgrep_wildcards_expanded_once() -[ 503s] Executing Test_vimgrep_with_no_last_search_pat() -[ 503s] Executing Test_vimgrep_with_textlock() -[ 503s] Executing Test_vimgrep_without_swap_file() -[ 503s] Executing Test_vimgreptitle() -[ 503s] Executing Test_viscol() -[ 503s] Executing Test_win_gettype() -[ 503s] Executing Test_winonly_autocmd() -[ 504s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_quotestar.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 504s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_random.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 504s] Executing Test_Rand() -[ 504s] Executing Test_issue_5587() -[ 504s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_recover.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 504s] Executing Test_nocatch_process_still_running() -[ 506s] Executing Test_noname_buffer() -[ 506s] Executing Test_recover_corrupted_swap_file() -[ 506s] Executing Test_recover_empty_swap_file() -[ 506s] Executing Test_recover_encrypted_swap_file() -[ 507s] Executing Test_recover_invalid_cursor_pos() -[ 507s] Executing Test_recover_multiple_swap_files() -[ 508s] Executing Test_recover_root_dir() -[ 508s] Executing Test_recover_symbolic_link() -[ 508s] Executing Test_recover_unmodified_file() -[ 508s] Executing Test_recover_unreadable_swap_file() -[ 508s] Executing Test_swap_file() -[ 509s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_regex_char_classes.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 509s] Executing Test_regex_char_classes() -[ 509s] Executing Test_s_search() -[ 509s] Executing Test_x_search() -[ 509s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_registers.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 509s] Executing Test_aaa_empty_reg_test() -[ 509s] Executing Test_clipboard_nul() -[ 509s] Executing Test_clipboard_regs() -[ 509s] Executing Test_display_registers() -[ 509s] Executing Test_end_record_using_mapping() -[ 509s] Executing Test_end_reg_executing() -[ 510s] Executing Test_execute_reg_as_ex_cmd() -[ 510s] Executing Test_execute_register() -[ 510s] Executing Test_get_reginfo() -[ 510s] Executing Test_get_register() -[ 510s] Executing Test_insert_small_delete() -[ 510s] Executing Test_last_used_exec_reg() -[ 510s] Executing Test_put_reg_restart_mode() -[ 510s] Executing Test_record_in_insert_mode() -[ 510s] Executing Test_record_in_select_mode() -[ 510s] Executing Test_recording_esc_sequence() -[ 510s] Executing Test_recording_status_in_ex_line() -[ 510s] Executing Test_recording_with_select_mode() -[ 510s] Executing Test_register_one() -[ 510s] Executing Test_register_y_append_reset() -[ 510s] Executing Test_set_register() -[ 510s] Executing Test_set_register_dict() -[ 510s] Executing Test_v_register() -[ 510s] Executing Test_ve_blockpaste() -[ 510s] Executing Test_yank_shows_register() -[ 510s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_rename.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 510s] Executing Test_rename_copy() -[ 510s] Executing Test_rename_dir_to_dir() -[ 510s] Executing Test_rename_fails() -[ 510s] Executing Test_rename_file_ignore_case() -[ 510s] Executing Test_rename_file_to_file() -[ 510s] Executing Test_rename_same_dir() -[ 511s] Executing Test_rename_same_file() -[ 511s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_restricted.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 511s] Executing Test_restricted_mode() -[ 512s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_retab.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 512s] Executing Test_nocatch_retab_endless() -[ 512s] Executing Test_retab() -[ 512s] Executing Test_retab_endless() -[ 512s] Executing Test_retab_error() -[ 512s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_ruby.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 512s] Executing Test_ruby_Vim_blob() -[ 512s] `did_you_mean' was not loaded. -[ 512s] Executing Test_ruby_Vim_buffer_count() -[ 512s] Executing Test_ruby_Vim_buffer_current() -[ 512s] Executing Test_ruby_Vim_buffer_get() -[ 512s] Executing Test_ruby_Vim_command() -[ 512s] Executing Test_ruby_Vim_evaluate() -[ 512s] Executing Test_ruby_Vim_evaluate_dict() -[ 512s] Executing Test_ruby_Vim_evaluate_list() -[ 512s] Executing Test_ruby_Vim_message() -[ 512s] Executing Test_ruby_Vim_set_option() -[ 512s] Executing Test_ruby_Vim_window_count() -[ 512s] Executing Test_ruby_Vim_window_current() -[ 512s] Executing Test_ruby_Vim_window_get() -[ 512s] Executing Test_ruby_buffer_append() -[ 512s] Executing Test_ruby_buffer_count() -[ 512s] Executing Test_ruby_buffer_delete() -[ 512s] Executing Test_ruby_buffer_get() -[ 512s] Executing Test_ruby_buffer_line() -[ 512s] Executing Test_ruby_buffer_line_number() -[ 512s] Executing Test_ruby_buffer_name() -[ 512s] Executing Test_ruby_buffer_number() -[ 512s] Executing Test_ruby_buffer_set() -[ 512s] Executing Test_ruby_change_buffer() -[ 512s] Executing Test_ruby_heredoc() -[ 512s] Executing Test_ruby_p() -[ 512s] Executing Test_ruby_print() -[ 512s] Executing Test_ruby_set_cursor() -[ 512s] Executing Test_ruby_window_buffer() -[ 512s] Executing Test_ruby_window_height() -[ 512s] Executing Test_ruby_window_width() -[ 512s] Executing Test_rubydo() -[ 512s] Executing Test_rubydo_dollar_underscore() -[ 512s] Executing Test_rubyeval_error() -[ 512s] Executing Test_rubyfile() -[ 512s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_scriptnames.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 512s] Executing Test_scriptnames() -[ 513s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_scrollbind.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 513s] Executing Test_scrollbind() -[ 513s] Executing Test_scrollbind_opt() -[ 513s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_search.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 513s] Executing Test_hlsearch_and_visual() -[ 513s] Executing Test_hlsearch_block_visual_match() -[ 513s] Executing Test_hlsearch_cursearch() -[ 514s] Executing Test_hlsearch_dump() -[ 514s] Executing Test_incsearch_add_char_under_cursor() -[ 514s] Executing Test_incsearch_cmdline_modifier() -[ 514s] Executing Test_incsearch_highlighting() -[ 514s] Executing Test_incsearch_highlighting_newline() -[ 514s] Executing Test_incsearch_scrolling() -[ 515s] Executing Test_incsearch_search_dump() -[ 515s] Executing Test_incsearch_sort_dump() -[ 516s] Executing Test_incsearch_substitute() -[ 516s] Executing Test_incsearch_substitute_dump() -[ 517s] Executing Test_incsearch_substitute_dump2() -[ 517s] Executing Test_incsearch_substitute_long_line() -[ 517s] Executing Test_incsearch_vimgrep_dump() -[ 517s] Executing Test_incsearch_with_change() -[ 518s] Executing Test_invalid_regexp() -[ 518s] Executing Test_keep_last_search_pattern() -[ 518s] Executing Test_large_hex_chars1() -[ 518s] Executing Test_large_hex_chars2() -[ 518s] Executing Test_look_behind() -[ 518s] Executing Test_no_last_search_pattern() -[ 518s] Executing Test_no_last_substitute_pat() -[ 518s] Executing Test_one_error_msg() -[ 518s] Executing Test_pattern_is_uppercase_smartcase() -[ 518s] Executing Test_regexp_switch_engine() -[ 518s] Executing Test_search_Ctrl_L_combining() -[ 518s] Executing Test_search_cmdline() -[ 518s] Executing Test_search_cmdline2() -[ 518s] Executing Test_search_cmdline3() -[ 518s] Executing Test_search_cmdline3g() -[ 518s] Executing Test_search_cmdline3s() -[ 518s] Executing Test_search_cmdline3v() -[ 518s] Executing Test_search_cmdline4() -[ 518s] Executing Test_search_cmdline5() -[ 518s] Executing Test_search_cmdline6() -[ 518s] Executing Test_search_cmdline7() -[ 518s] Executing Test_search_cmdline8() -[ 518s] Executing Test_search_cmdline_incsearch_highlight() -[ 519s] Executing Test_search_cmdline_incsearch_highlight_attr() -[ 519s] Executing Test_search_display_pattern() -[ 519s] Executing Test_search_errors() -[ 519s] Executing Test_search_in_visual_area() -[ 519s] Executing Test_search_match_at_curpos() -[ 519s] Executing Test_search_match_paren() -[ 519s] Executing Test_search_multibyte() -[ 519s] Executing Test_search_offset() -[ 519s] Executing Test_search_past_eof() -[ 519s] Executing Test_search_pat_not_found() -[ 519s] Executing Test_search_regexp() -[ 519s] Executing Test_search_sentence() -[ 519s] Executing Test_search_smartcase() -[ 519s] Executing Test_search_smartcase_utf8() -[ 519s] Executing Test_search_special() -[ 519s] Executing Test_search_stopline() -[ 519s] Executing Test_search_tilde_pat() -[ 519s] Executing Test_search_timeout() -[ 522s] Executing Test_search_undefined_behaviour() -[ 522s] Executing Test_search_undefined_behaviour2() -[ 522s] Executing Test_search_visual_area_linewise() -[ 522s] Executing Test_search_with_invalid_range() -[ 522s] Executing Test_search_with_no_last_pat() -[ 522s] Executing Test_searchc() -[ 522s] Executing Test_searchdecl() -[ 522s] Executing Test_searchforward_var() -[ 522s] Executing Test_searchpair() -[ 522s] Executing Test_searchpair_errors() -[ 522s] Executing Test_searchpair_leak() -[ 522s] Executing Test_searchpair_skip() -[ 522s] Executing Test_searchpair_timeout() -[ 522s] Executing Test_searchpair_timeout_with_skip() -[ 522s] Executing Test_searchpairpos() -[ 522s] Executing Test_searchpairpos_errors() -[ 522s] Executing Test_subst_word_under_cursor() -[ 522s] Executing Test_use_sub_pat() -[ 522s] Executing Test_word_under_cursor_after_match() -[ 522s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_search_stat.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 522s] Executing Test_search_stat() -[ 523s] Executing Test_search_stat_and_incsearch() -[ 523s] Executing Test_search_stat_foldopen() -[ 523s] Executing Test_search_stat_screendump() -[ 523s] Executing Test_search_stat_then_gd() -[ 523s] Executing Test_searchcount_fails() -[ 523s] Executing Test_searchcount_in_statusline() -[ 524s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_selectmode.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 524s] Executing Test_blockwise_select_mode() -[ 524s] Executing Test_characterwise_select_mode() -[ 524s] Executing Test_linewise_select_mode() -[ 524s] Executing Test_select_mode_map() -[ 524s] Executing Test_selectmode_basic() -[ 524s] Executing Test_selectmode_register() -[ 524s] Executing Test_selectmode_start() -[ 524s] Executing Test_term_mouse_multiple_clicks_to_select_mode() -[ 524s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_shell.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 524s] Executing Test_set_shell() -[ 524s] Executing Test_shell() -[ 524s] -[ 524s] Executing Test_shell_options() -[ 526s] Executing Test_shellescape() -[ 526s] Executing Test_shellquote() -[ 526s] Executing Test_shellslash() -[ 526s] Executing Test_shellxquote() -[ 526s] -[ 526s] -[ 526s] Press ENTER or type command to continue -[ 526s] -[ 526s] Press ENTER or type command to continue -[ 526s] -[ 526s] Press ENTER or type command to continue -[ 526s] -[ 526s] Press ENTER or type command to continue -[ 526s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_shortpathname.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 526s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_signals.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 526s] Executing Test_deadly_signal_TERM() -[ 527s] Executing Test_signal_INT() -[ 527s] Executing Test_signal_PWR() -[ 527s] Executing Test_signal_TSTP() -[ 534s] Executing Test_signal_TSTP() -[ 534s] Executing Test_signal_WINCH() -[ 534s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_signs.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 534s] Executing Test_aaa_sign_id_autogen() -[ 535s] Executing Test_sign() -[ 535s] Executing Test_sign_change_type() -[ 535s] Executing Test_sign_completion() -[ 535s] Executing Test_sign_cursor_position() -[ 535s] Executing Test_sign_delete_buffer() -[ 535s] Executing Test_sign_funcs() -[ 535s] Executing Test_sign_funcs_multi() -[ 535s] Executing Test_sign_group() -[ 535s] Executing Test_sign_invalid_commands() -[ 535s] Executing Test_sign_jump_func() -[ 535s] Executing Test_sign_lnum_adjust() -[ 535s] Executing Test_sign_memfailures() -[ 535s] Executing Test_sign_null_list() -[ 535s] Executing Test_sign_numcol() -[ 535s] Executing Test_sign_priority() -[ 535s] Executing Test_sign_undefine_still_placed() -[ 535s] Executing Test_sign_unplace() -[ 535s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_sleep.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 535s] Executing Test_sleep_bang() -[ 538s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_smartindent.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 538s] Executing Test_no_si_after_completion() -[ 538s] Executing Test_nosmartindent() -[ 538s] Executing Test_si_add_line_around_comment() -[ 538s] Executing Test_si_after_completion() -[ 538s] Executing Test_si_comment_line_continuation() -[ 538s] Executing Test_si_if_cond_split_across_lines() -[ 538s] Executing Test_si_indent_after_c_comment() -[ 538s] Executing Test_si_one_line_comment() -[ 538s] Executing Test_si_with_paste() -[ 538s] Executing Test_smartindent_braces() -[ 538s] Executing Test_smartindent_has_no_effect() -[ 538s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_sort.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 538s] Executing Test_sort_cmd() -[ 538s] Executing Test_sort_cmd_report() -[ 538s] Executing Test_sort_default() -[ 538s] Executing Test_sort_float() -[ 538s] Executing Test_sort_followed_by_cmd() -[ 538s] Executing Test_sort_large_num() -[ 538s] Executing Test_sort_last_search_pat() -[ 538s] Executing Test_sort_nested() -[ 538s] Executing Test_sort_null_string() -[ 538s] Executing Test_sort_numbers() -[ 538s] Executing Test_sort_numeric() -[ 538s] Executing Test_sort_strings() -[ 538s] Executing Test_sort_using_dict_func() -[ 538s] Executing Test_sort_with_marks() -[ 538s] Executing Test_sort_with_no_last_search_pat() -[ 538s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_sound.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 539s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_source.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 539s] Executing Test_different_script() -[ 539s] Executing Test_nested_script() -[ 539s] Executing Test_source_autocmd() -[ 539s] Executing Test_source_autocmd_sfile() -[ 539s] Executing Test_source_buffer() -[ 539s] Executing Test_source_buffer_long_line() -[ 539s] Executing Test_source_buffer_vim9() -[ 539s] Executing Test_source_buffer_with_NUL_char() -[ 539s] Executing Test_source_cmd() -[ 539s] Executing Test_source_error() -[ 539s] Executing Test_source_ignore_shebang() -[ 539s] Executing Test_source_sandbox() -[ 540s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_spell.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 540s] Executing Test_compl_with_CTRL_X_CTRL_K_using_spell() -[ 540s] Executing Test_curswant() -[ 540s] Executing Test_region_error() -[ 540s] Executing Test_spell_dump_word_length() -[ 540s] Executing Test_spell_file_missing() -[ 540s] Executing Test_spell_good_word_invalid() -[ 540s] Executing Test_spell_long_word() -[ 540s] Executing Test_spell_screendump() -[ 540s] Executing Test_spellbadword() -[ 540s] Executing Test_spelldump() -[ 540s] Executing Test_spelldump_bang() -[ 540s] Executing Test_spellfile_value() -[ 540s] Executing Test_spellinfo() -[ 541s] Executing Test_spelllang_inv_region() -[ 541s] Executing Test_spellreall() -[ 541s] Executing Test_spellsuggest() -[ 541s] Executing Test_spellsuggest_expr_errors() -[ 541s] Executing Test_spellsuggest_option_expr() -[ 541s] Executing Test_spellsuggest_option_file() -[ 541s] Executing Test_spellsuggest_option_methods() -[ 542s] Executing Test_spellsuggest_option_number() -[ 542s] Executing Test_spellsuggest_timeout() -[ 542s] Executing Test_spellsuggest_too_deep() -[ 542s] Executing Test_spellsuggest_visual_end_of_line() -[ 542s] Executing Test_wrap_search() -[ 542s] Executing Test_z_equal_on_invalid_utf8_word() -[ 542s] Executing Test_z_equal_on_single_character() -[ 542s] Executing Test_zeq_crash() -[ 542s] Executing Test_zeq_no_spelllang() -[ 542s] Executing Test_zeq_nospell() -[ 542s] Executing Test_zz_NOSLITSUGS() -[ 542s] Executing Test_zz_Numbers() -[ 542s] Executing Test_zz_affix() -[ 542s] Executing Test_zz_affix_flags() -[ 542s] Executing Test_zz_basic() -[ 542s] Executing Test_zz_compound() -[ 543s] Executing Test_zz_prefixes() -[ 543s] Executing Test_zz_sal_and_addition() -[ 543s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_spell_utf8.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 543s] Executing Test_check_empty_line() -[ 543s] Executing Test_check_for_valid_word() -[ 543s] Executing Test_no_crash_with_weird_text() -[ 543s] Executing Test_spell_NOSLITSUGS() -[ 544s] Executing Test_spell_Numbers() -[ 544s] Executing Test_spell_affix() -[ 544s] Executing Test_spell_affix_flags() -[ 544s] Executing Test_spell_basic() -[ 544s] Executing Test_spell_compound() -[ 544s] Executing Test_spell_prefixes() -[ 544s] Executing Test_spell_sal_and_addition() -[ 545s] Executing Test_spellfile_value() -[ 545s] Executing Test_word_index() -[ 545s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_spellfile.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 545s] Executing Test_NOBREAK() -[ 545s] Executing Test_aff_file_format_error() -[ 550s] Executing Test_init_spellfile() -[ 550s] Executing Test_mkspell() -[ 551s] Executing Test_mkspell_empty_dic() -[ 551s] Executing Test_mkspellmem_opt() -[ 551s] Executing Test_spell_add_word() -[ 551s] Executing Test_spell_normal() -[ 551s] Executing Test_spellfile_CHECKCOMPOUNDPATTERN() -[ 551s] Executing Test_spellfile_CIRCUMFIX() -[ 551s] Executing Test_spellfile_COMMON() -[ 552s] Executing Test_spellfile_NOCOMPOUNDSUGS() -[ 552s] Executing Test_spellfile_NOSUGGEST() -[ 552s] Executing Test_spellfile_SFX_strip() -[ 552s] Executing Test_spellfile_format_error() -[ 555s] Executing Test_spellfile_verbose() -[ 555s] Executing Test_sugfile_format_error() -[ 556s] Executing Test_wordlist_dic() -[ 556s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_startup.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 556s] Executing Test_A_F_H_arg() -[ 556s] Executing Test_D_arg() -[ 557s] Executing Test_EXINIT() -[ 557s] Executing Test_E_arg() -[ 557s] Executing Test_F_arg() -[ 557s] Executing Test_T_arg() -[ 557s] Executing Test_VIMINIT() -[ 557s] Executing Test_V_arg() -[ 557s] Executing Test_V_file_arg() -[ 557s] Executing Test_after_comes_later() -[ 557s] Executing Test_b_arg() -[ 558s] Executing Test_background_foreground() -[ 558s] Executing Test_compatible_args() -[ 558s] Executing Test_default_term() -[ 558s] Executing Test_defaults_error() -[ 558s] Executing Test_echo_true_in_cmd() -[ 558s] v:true -[ 558s] Executing Test_echo_wid() -[ 558s] Executing Test_exrc() -[ 558s] Executing Test_file_args() -[ 559s] Executing Test_font() -[ 559s] Executing Test_geometry() -[ 559s] Executing Test_h_arg() -[ 559s] Executing Test_help_arg() -[ 559s] Executing Test_iconic() -[ 559s] Executing Test_invalid_args() -[ 559s] Executing Test_io_not_a_terminal() -[ 559s] Executing Test_issue_3969() -[ 559s] Executing Test_l_arg() -[ 559s] Executing Test_log() -[ 559s] Executing Test_m_M_R() -[ 560s] Executing Test_missing_vimrc() -[ 560s] Executing Test_n_arg() -[ 560s] Executing Test_not_a_term() -[ 562s] Executing Test_o_arg() -[ 562s] Executing Test_p_arg() -[ 562s] Executing Test_pack_in_rtp_when_plugins_run() -[ 563s] Executing Test_progname() -[ 564s] Executing Test_progpath() -[ 564s] Executing Test_q_arg() -[ 564s] Executing Test_r_arg() -[ 564s] Executing Test_read_stdin() -[ 564s] -[ 564s] Executing Test_rename_buffer_on_startup() -[ 564s] Executing Test_reverse() -[ 564s] Executing Test_s_arg() -[ 564s] Executing Test_silent_ex_mode() -[ 564s] Executing Test_start_in_minimal_window() -[ 565s] Executing Test_start_insertmode() -[ 565s] Executing Test_start_with_tabs() -[ 565s] Executing Test_startup_script() -[ 565s] Executing Test_startuptime() -[ 565s] Executing Test_t_arg() -[ 565s] Executing Test_too_many_edit_args() -[ 565s] Executing Test_v_argv() -[ 565s] Executing Test_w_arg() -[ 566s] Executing Test_write_in_vimrc() -[ 566s] Executing Test_x_arg() -[ 566s] Executing Test_zzz_startinsert() -[ 567s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_stat.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 567s] Executing Test_autoread_fast() -[ 567s] Executing Test_autoread_file_deleted() -[ 571s] Executing Test_checktime() -[ 572s] Executing Test_checktime_fast() -[ 572s] Executing Test_existent_directory() -[ 572s] Executing Test_existent_file() -[ 572s] Executing Test_getftype() -[ 572s] Executing Test_nonexistent_file() -[ 572s] Executing Test_win32_symlink_dir() -[ 573s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_statusline.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 573s] Executing Test_caught_error_in_statusline() -[ 573s] Executing Test_statusline() -[ 573s] Executing Test_statusline_after_split_vsplit() -[ 573s] Executing Test_statusline_highlight_truncate() -[ 573s] Executing Test_statusline_mbyte_fillchar() -[ 573s] Executing Test_statusline_removed_group() -[ 573s] Executing Test_statusline_using_mode() -[ 573s] Executing Test_statusline_verylong_filename() -[ 573s] Executing Test_statusline_visual() -[ 573s] Executing Test_statusline_will_be_disabled_with_error() -[ 573s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_substitute.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 573s] Executing Test_invalid_submatch() -[ 573s] Executing Test_multiline_subst() -[ 573s] Executing Test_nocatch_sub_failure_handling() -[ 573s] Executing Test_repeat_last_sub() -[ 573s] Executing Test_replace_keeppatterns() -[ 573s] Executing Test_replace_with_tilde() -[ 573s] Executing Test_sub_beyond_end() -[ 573s] Executing Test_sub_change_window() -[ 573s] Executing Test_sub_cmd_1() -[ 573s] Executing Test_sub_cmd_2() -[ 573s] Executing Test_sub_cmd_3() -[ 573s] Executing Test_sub_cmd_4() -[ 573s] Executing Test_sub_cmd_5() -[ 573s] Executing Test_sub_cmd_6() -[ 573s] Executing Test_sub_cmd_7() -[ 573s] Executing Test_sub_cmd_8() -[ 573s] Executing Test_sub_cmd_9() -[ 573s] Executing Test_sub_edit_scriptfile() -[ 573s] Executing Test_sub_expand_text() -[ 573s] Executing Test_sub_open_cmdline_win() -[ 573s] Executing Test_sub_replace_1() -[ 573s] Executing Test_sub_replace_10() -[ 573s] Executing Test_sub_replace_2() -[ 573s] Executing Test_sub_replace_3() -[ 573s] Executing Test_sub_replace_4() -[ 573s] Executing Test_sub_replace_5() -[ 573s] Executing Test_sub_replace_6() -[ 573s] Executing Test_sub_replace_7() -[ 573s] Executing Test_sub_replace_8() -[ 573s] Executing Test_sub_replace_9() -[ 573s] Executing Test_sub_undo_change() -[ 573s] Executing Test_sub_vi_compatibility() -[ 573s] Executing Test_sub_with_no_last_pat() -[ 574s] Executing Test_submatch_list_concatenate() -[ 574s] Executing Test_substitute() -[ 574s] Executing Test_substitute_count() -[ 574s] Executing Test_substitute_errors() -[ 574s] Executing Test_substitute_expr() -[ 574s] Executing Test_substitute_expr_arg() -[ 574s] Executing Test_substitute_flag_n() -[ 574s] Executing Test_substitute_flags_lp() -[ 574s] Executing Test_substitute_float() -[ 574s] Executing Test_substitute_gdefault() -[ 574s] Executing Test_substitute_join() -[ 574s] Executing Test_substitute_multiline_submatch() -[ 574s] Executing Test_substitute_partial() -[ 574s] Executing Test_substitute_repeat() -[ 574s] Executing Test_substitute_short_cmd() -[ 574s] Executing Test_substitute_skipped_range() -[ 574s] Executing Test_substitute_using_func() -[ 574s] Executing Test_substitute_variants() -[ 574s] Executing Test_using_old_sub() -[ 574s] Executing Test_z_substitute_expr_leak() -[ 575s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_suspend.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 575s] Executing Test_suspend() -[ 575s] Executing Test_suspend_autocmd() -[ 575s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_swap.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 575s] Executing Test_missing_dir() -[ 575s] Executing Test_missing_swap_file() -[ 575s] Executing Test_no_swap_file() -[ 575s] Executing Test_preserve() -[ 575s] Executing Test_swap_auto_delete() -[ 575s] Executing Test_swap_directory() -[ 575s] Executing Test_swap_group() -[ 575s] Executing Test_swap_prompt_splitwin() -[ 576s] Executing Test_swap_recover() -[ 576s] Executing Test_swap_recover_ext() -[ 576s] Executing Test_swap_split_win() -[ 576s] Executing Test_swap_symlink() -[ 576s] Executing Test_swapchoice() -[ 576s] Executing Test_swapfile_delete() -[ 577s] Executing Test_swapinfo() -[ 577s] Executing Test_swapname() -[ 578s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_syn_attr.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 578s] Executing Test_color_names() -[ 578s] Executing Test_missing_attr() -[ 578s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_syntax.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 578s] Executing Test_WinEnter_synstack_synID() -[ 578s] Executing Test_bg_detection() -[ 578s] Executing Test_conceal() -[ 578s] Executing Test_echohl_completion() -[ 578s] Executing Test_highlight_invalid_arg() -[ 578s] Executing Test_invalid_name() -[ 578s] Executing Test_ownsyntax() -[ 578s] Executing Test_ownsyntax_completion() -[ 578s] Executing Test_search_syntax_skip() -[ 578s] Executing Test_syn_clear() -[ 578s] Executing Test_syn_contained_transparent() -[ 578s] Executing Test_syn_include_contains_TOP() -[ 578s] Executing Test_syn_iskeyword() -[ 578s] Executing Test_syn_sync() -[ 578s] Executing Test_syn_wrong_z_one() -[ 578s] Executing Test_syn_zsub() -[ 578s] Executing Test_synstack_synIDtrans() -[ 578s] Executing Test_syntax_after_bufdo() -[ 578s] Executing Test_syntax_after_reload() -[ 578s] Executing Test_syntax_arg_skipped() -[ 578s] Executing Test_syntax_c() -[ 579s] Executing Test_syntax_completion() -[ 579s] Executing Test_syntax_foldlevel() -[ 579s] Executing Test_syntax_hangs() -[ 579s] Executing Test_syntax_invalid_arg() -[ 579s] Executing Test_syntax_list() -[ 579s] Executing Test_syntime() -[ 579s] Executing Test_syntime_completion() -[ 579s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_system.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 579s] Executing Test_System() -[ 579s] Executing Test_system_exmode() -[ 579s] Executing Test_system_with_shell_quote() -[ 579s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_tab.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 579s] Executing Test_smarttab() -[ 579s] Executing Test_softtabstop() -[ 580s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_tabpage.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 580s] Executing Test_close_on_quitpre() -[ 580s] Executing Test_lastused_tabpage() -[ 580s] Executing Test_tabline_tabmenu() -[ 580s] Executing Test_tabnext_on_buf_unload1() -[ 580s] Executing Test_tabnext_on_buf_unload2() -[ 580s] Executing Test_tabpage() -[ 580s] Executing Test_tabpage_Ctrl_Pageup() -[ 580s] Executing Test_tabpage_alloc_failure() -[ 580s] Executing Test_tabpage_close_cmdwin() -[ 580s] Executing Test_tabpage_close_on_switch() -[ 580s] Executing Test_tabpage_cmdheight() -[ 580s] Executing Test_tabpage_ctrl_pgup_pgdown() -[ 580s] Executing Test_tabpage_switchtab_on_close() -[ 580s] Executing Test_tabpage_with_autocmd() -[ 580s] Executing Test_tabpage_with_autocmd_tab_drop() -[ 580s] Executing Test_tabpage_with_tab_modifier() -[ 580s] Executing Test_tabpage_with_tabclose() -[ 580s] Executing Test_tabpage_with_tabnext() -[ 580s] Executing Test_tabpage_with_tabonly() -[ 580s] Executing Test_tabpage_with_tabprevious() -[ 580s] Executing Test_tabs() -[ 580s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_tagjump.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 580s] Executing Test_cancel_ptjump() -[ 580s] Executing Test_comment_search() -[ 580s] Executing Test_define_search() -[ 580s] Executing Test_duplicate_tagjump() -[ 580s] Executing Test_getsettagstack() -[ 581s] Executing Test_inc_search() -[ 581s] Executing Test_isearch_copy_line() -[ 581s] Executing Test_keyword_jump() -[ 581s] Executing Test_ltag() -[ 581s] Executing Test_macro_search() -[ 581s] Executing Test_multimatch_non_existing_files() -[ 581s] Executing Test_preview_tag_multimatch() -[ 581s] Executing Test_ptag_with_notagstack() -[ 581s] Executing Test_ptjump() -[ 581s] Executing Test_stag_close_window_on_error() -[ 581s] Executing Test_static_tagjump() -[ 582s] Executing Test_tag_envvar() -[ 582s] Executing Test_tag_file_encoding() -[ 582s] Executing Test_tag_fold() -[ 582s] Executing Test_tag_guess() -[ 582s] Executing Test_tag_last_search_pat() -[ 583s] Executing Test_tag_length() -[ 583s] Executing Test_tag_line_toolong() -[ 583s] Executing Test_tag_multimatch() -[ 583s] Executing Test_tag_preview() -[ 583s] Executing Test_tag_sort() -[ 584s] Executing Test_tag_stack() -[ 584s] Executing Test_tag_symbolic() -[ 584s] Executing Test_tag_with_count() -[ 584s] Executing Test_tagbsearch() -[ 584s] Executing Test_tagfile_errors() -[ 584s] Executing Test_tagjump_etags() -[ 585s] Executing Test_tagjump_switchbuf() -[ 585s] Executing Test_tagline() -[ 585s] Executing Test_tagnr_recall() -[ 586s] Executing Test_tnext_multimatch() -[ 586s] Executing Test_tselect() -[ 586s] Executing Test_tselect_listing() -[ 586s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_taglist.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 586s] Executing Test_duplicate_field() -[ 586s] Executing Test_format_error() -[ 587s] Executing Test_tag_addr_with_semicolon() -[ 587s] Executing Test_tag_complete_wildoptions() -[ 587s] Executing Test_tag_complete_with_overlong_line() -[ 587s] Executing Test_tagfile_excmd() -[ 587s] Executing Test_tagfile_ignore_comments() -[ 587s] Executing Test_tagfiles() -[ 587s] Executing Test_taglist() -[ 587s] Executing Test_taglist_ctags_etags() -[ 587s] Executing Test_taglist_native_etags() -[ 587s] Executing Test_tags_too_long() -[ 587s] Executing Test_tagsfile_without_trailing_newline() -[ 587s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_tcl.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 587s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_termcodes.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 587s] Executing Test_1xterm_mouse_wheel() -[ 587s] Executing Test_Keycode_Translation() -[ 588s] Executing Test_cmdline_literal() -[ 588s] Executing Test_focus_events() -[ 588s] Executing Test_get_termcode() -[ 588s] Executing Test_ignore_dec_mouse() -[ 588s] Executing Test_insert_literal() -[ 588s] Executing Test_list_builtin_terminals() -[ 588s] Executing Test_mapping_esc() -[ 588s] Executing Test_mapping_works_with_alt() -[ 589s] Executing Test_mapping_works_with_alt_and_shift() -[ 589s] Executing Test_mapping_works_with_ctrl() -[ 591s] Executing Test_mapping_works_with_ctrl_alt() -[ 592s] Executing Test_mapping_works_with_shift() -[ 592s] Executing Test_mapping_works_with_shift_alt() -[ 592s] Executing Test_mapping_works_with_shift_ctrl() -[ 593s] Executing Test_mapping_works_with_shift_ctrl_alt() -[ 593s] Executing Test_mapping_works_with_shift_plain() -[ 594s] Executing Test_modifyOtherKeys_ambiguous_mapping() -[ 594s] Executing Test_modifyOtherKeys_basic() -[ 595s] Executing Test_modifyOtherKeys_mapped() -[ 595s] Executing Test_modifyOtherKeys_no_mapping() -[ 595s] Executing Test_modifyOtherKeys_shift_tab() -[ 595s] Executing Test_mouse_alt_leftclick() -[ 595s] Executing Test_mouse_cmdwin_resize() -[ 595s] Executing Test_mouse_termcodes() -[ 595s] Executing Test_simplify_ctrl_at() -[ 595s] Executing Test_simplify_noremap() -[ 595s] Executing Test_simplify_timedout() -[ 595s] Executing Test_special_term_keycodes() -[ 595s] Executing Test_term_mouse_click_X_to_close_tab() -[ 595s] Executing Test_term_mouse_click_in_cmdline_to_set_pos() -[ 595s] Executing Test_term_mouse_click_tab() -[ 595s] Executing Test_term_mouse_double_click_to_create_tab() -[ 595s] Executing Test_term_mouse_drag_beyond_window() -[ 595s] Executing Test_term_mouse_drag_statusline() -[ 595s] Executing Test_term_mouse_drag_to_move_tab() -[ 595s] Executing Test_term_mouse_drag_window_separator() -[ 595s] Executing Test_term_mouse_help_window() -[ 595s] Executing Test_term_mouse_left_click() -[ 595s] Executing Test_term_mouse_middle_click() -[ 595s] Executing Test_term_mouse_middle_click_in_cmdline_to_paste() -[ 595s] Executing Test_term_mouse_middle_click_insert_mode() -[ 595s] Executing Test_term_mouse_middle_click_no_clipboard() -[ 595s] Executing Test_term_mouse_multiple_clicks_to_visually_select() -[ 595s] Executing Test_term_mouse_popup_menu() -[ 595s] Executing Test_term_mouse_popup_menu_setpos() -[ 595s] Executing Test_term_mouse_quickfix_window() -[ 595s] Executing Test_term_mouse_search() -[ 595s] Executing Test_term_mouse_shift_middle_click() -[ 595s] Executing Test_term_mouse_switch_win_insert_mode() -[ 595s] Executing Test_term_mouse_visual_mode() -[ 595s] Executing Test_term_rgb_response() -[ 595s] Executing Test_terminal_builtin_without_gui() -[ 597s] Executing Test_xterm_mouse_click_in_fold_columns() -[ 597s] Executing Test_xterm_mouse_right_click_extends_visual() -[ 597s] Executing Test_xterm_mouse_tagjump() -[ 598s] Executing Test_xx01_term_style_response() -[ 598s] Executing Test_xx02_iTerm2_response() -[ 598s] Executing Test_xx03_libvterm_response() -[ 598s] Executing Test_xx04_Mac_Terminal_response() -[ 598s] Executing Test_xx05_mintty_response() -[ 598s] Executing Test_xx06_screen_response() -[ 598s] Executing Test_xx07_xterm_response() -[ 598s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_termencoding.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 598s] Executing Test_termencoding_euc_jp() -[ 598s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_terminal.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 598s] Executing Test_aa_terminal_focus_events() -[ 598s] Executing Test_combining_double_width() -[ 599s] Executing Test_open_term_from_cmd() -[ 599s] Executing Test_start_terminal_from_timer() -[ 599s] Executing Test_term_wait_in_close_cb() -[ 599s] Executing Test_terminal_TerminalWinOpen() -[ 600s] Executing Test_terminal_adds_jump() -[ 600s] Executing Test_terminal_all_ansi_colors() -[ 600s] Executing Test_terminal_ansicolors_default() -[ 600s] Executing Test_terminal_ansicolors_func() -[ 600s] Executing Test_terminal_ansicolors_global() -[ 600s] Executing Test_terminal_api_arg() -[ 601s] Executing Test_terminal_api_call() -[ 601s] Executing Test_terminal_api_call_fail_delete() -[ 601s] Executing Test_terminal_api_call_fails() -[ 601s] Executing Test_terminal_api_drop_newwin() -[ 601s] Executing Test_terminal_api_drop_newwin_bin() -[ 601s] Executing Test_terminal_api_drop_newwin_binary() -[ 601s] Executing Test_terminal_api_drop_newwin_enc() -[ 601s] Executing Test_terminal_api_drop_newwin_encoding() -[ 601s] Executing Test_terminal_api_drop_newwin_ff() -[ 602s] Executing Test_terminal_api_drop_newwin_fileformat() -[ 602s] Executing Test_terminal_api_drop_newwin_nobin() -[ 602s] Executing Test_terminal_api_drop_newwin_nobinary() -[ 602s] Executing Test_terminal_api_drop_oldwin() -[ 602s] Executing Test_terminal_aucmd_on_close() -[ 602s] Executing Test_terminal_basic() -[ 602s] Executing Test_terminal_composing_unicode() -[ 602s] Executing Test_terminal_curwin() -[ 602s] Executing Test_terminal_cwd() -[ 602s] Executing Test_terminal_cwd_failure() -[ 602s] Executing Test_terminal_dumpdiff() -[ 602s] Executing Test_terminal_dumpdiff_options() -[ 602s] Executing Test_terminal_dumpdiff_size() -[ 602s] Executing Test_terminal_dumpdiff_swap() -[ 602s] Executing Test_terminal_dumpload() -[ 602s] Executing Test_terminal_dumpload_dump() -[ 602s] Executing Test_terminal_dumpwrite_composing() -[ 603s] Executing Test_terminal_dumpwrite_errors() -[ 603s] Executing Test_terminal_duplicate_eof_arg() -[ 603s] Executing Test_terminal_env() -[ 603s] Executing Test_terminal_eof_arg() -[ 603s] Executing Test_terminal_eof_arg_win32_ctrl_z() -[ 603s] Executing Test_terminal_exit() -[ 603s] Executing Test_terminal_finish_open_close() -[ 604s] Executing Test_terminal_hide_buffer_job_finished() -[ 604s] Executing Test_terminal_hide_buffer_job_running() -[ 604s] Executing Test_terminal_list_args() -[ 604s] Executing Test_terminal_make_change() -[ 604s] Executing Test_terminal_nasty_cb() -[ 604s] Executing Test_terminal_nested_autocmd() -[ 604s] Executing Test_terminal_no_cmd() -[ 604s] Executing Test_terminal_no_name() -[ 604s] Executing Test_terminal_noblock() -[ 605s] Executing Test_terminal_one_column() -[ 605s] Executing Test_terminal_open_autocmd() -[ 605s] Executing Test_terminal_paste_register() -[ 605s] Executing Test_terminal_popup_bufload() -[ 605s] Executing Test_terminal_popup_insert_cmd() -[ 605s] Executing Test_terminal_popup_two_windows() -[ 605s] Executing Test_terminal_popup_with_cmd() -[ 605s] Executing Test_terminal_postponed_scrollback() -[ 606s] Executing Test_terminal_qall_exit() -[ 606s] Executing Test_terminal_qall_kill_arg() -[ 606s] Executing Test_terminal_qall_kill_func() -[ 606s] Executing Test_terminal_qall_prompt() -[ 606s] Executing Test_terminal_redir_file() -[ 606s] Executing Test_terminal_rename_buffer() -[ 606s] Executing Test_terminal_response_to_control_sequence() -[ 607s] Executing Test_terminal_scrape_123() -[ 607s] Executing Test_terminal_scrape_multibyte() -[ 607s] Executing Test_terminal_scroll() -[ 607s] Executing Test_terminal_scrollback() -[ 607s] Executing Test_terminal_servername() -[ 607s] Executing Test_terminal_setapi_and_call() -[ 607s] Executing Test_terminal_size() -[ 607s] Executing Test_terminal_special_chars() -[ 607s] Executing Test_terminal_split_quit() -[ 607s] Executing Test_terminal_statusline() -[ 609s] Executing Test_terminal_term_start_empty_command() -[ 609s] Executing Test_terminal_tmap() -[ 609s] Executing Test_terminal_version() -[ 609s] Executing Test_terminal_wall() -[ 609s] Executing Test_terminal_window_focus() -[ 609s] Executing Test_terminal_wipe_buffer() -[ 609s] Executing Test_terminal_wqall() -[ 609s] Executing Test_terminal_write_stdin() -[ 609s] Executing Test_terminal_wrong_options() -[ 609s] Executing Test_terminal_zero_height() -[ 609s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_terminal2.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 609s] Executing Test_term_getcursor() -[ 609s] Executing Test_term_gettitle() -[ 610s] Executing Test_term_gettty() -[ 610s] Executing Test_terminal_does_not_truncate_last_newlines() -[ 610s] Executing Test_terminal_hidden() -[ 610s] Executing Test_terminal_hidden_and_close() -[ 610s] Executing Test_terminal_hidden_winsize() -[ 610s] Executing Test_terminal_no_job() -[ 610s] Executing Test_terminal_normal_mode() -[ 610s] Executing Test_terminal_out_err() -[ 610s] Executing Test_terminal_resize() -[ 611s] Executing Test_terminal_switch_mode() -[ 611s] Executing Test_terminal_termwinkey() -[ 611s] Executing Test_terminal_termwinsize_minimum() -[ 611s] Executing Test_terminal_termwinsize_option_fixed() -[ 611s] Executing Test_terminal_termwinsize_option_zero() -[ 611s] Executing Test_terminal_termwinsize_overruled() -[ 611s] Executing Test_termwinscroll() -[ 611s] Executing Test_zz1_terminal_in_gui() -[ 611s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_terminal3.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 611s] Executing Test_double_popup_terminal() -[ 611s] Executing Test_escape_popup_terminal() -[ 611s] Executing Test_hidden_terminal() -[ 611s] Executing Test_issue_5607() -[ 611s] Executing Test_term_and_startinsert() -[ 611s] Executing Test_term_func_invalid_arg() -[ 611s] Executing Test_term_keycode_translation() -[ 614s] Executing Test_term_keycode_translation() -[ 615s] Executing Test_term_modeless_selection() -[ 615s] Executing Test_term_mouse() -[ 617s] Executing Test_term_mouse() -[ 620s] Executing Test_term_nasty_callback() -[ 620s] Executing Test_terminal_altscreen() -[ 620s] Executing Test_terminal_color_Terminal() -[ 620s] Executing Test_terminal_color_group() -[ 620s] Executing Test_terminal_color_group_over_Terminal() -[ 621s] Executing Test_terminal_color_gui_Terminal() -[ 621s] Executing Test_terminal_color_gui_group() -[ 622s] Executing Test_terminal_color_gui_transp_Terminal() -[ 622s] Executing Test_terminal_color_gui_transp_group() -[ 622s] Executing Test_terminal_color_gui_transp_wincolor() -[ 622s] Executing Test_terminal_color_gui_wincolor() -[ 623s] Executing Test_terminal_color_transp_Terminal() -[ 623s] Executing Test_terminal_color_transp_group() -[ 623s] Executing Test_terminal_color_transp_wincolor() -[ 624s] Executing Test_terminal_color_wincolor() -[ 624s] Executing Test_terminal_color_wincolor_over_group() -[ 624s] Executing Test_terminal_color_wincolor_split() -[ 625s] Executing Test_terminal_getwinpos() -[ 625s] Executing Test_terminal_in_popup() -[ 627s] Executing Test_terminal_in_popup_color_Terminal() -[ 628s] Executing Test_terminal_in_popup_color_group() -[ 628s] Executing Test_terminal_in_popup_color_group_over_Terminal() -[ 629s] Executing Test_terminal_in_popup_color_gui_Terminal() -[ 629s] Executing Test_terminal_in_popup_color_gui_group() -[ 629s] Executing Test_terminal_in_popup_color_gui_popup_highlight() -[ 630s] Executing Test_terminal_in_popup_color_gui_transp_Terminal() -[ 630s] Executing Test_terminal_in_popup_color_gui_transp_group() -[ 630s] Executing Test_terminal_in_popup_color_gui_transp_popup_highlight() -[ 631s] Executing Test_terminal_in_popup_color_gui_transp_wincolor() -[ 631s] Executing Test_terminal_in_popup_color_gui_wincolor() -[ 632s] Executing Test_terminal_in_popup_color_popup_highlight() -[ 632s] Executing Test_terminal_in_popup_color_transp_Terminal() -[ 632s] Executing Test_terminal_in_popup_color_transp_group() -[ 633s] Executing Test_terminal_in_popup_color_transp_popup_highlight() -[ 633s] Executing Test_terminal_in_popup_color_transp_wincolor() -[ 633s] Executing Test_terminal_in_popup_color_wincolor() -[ 634s] Executing Test_terminal_in_popup_color_wincolor_over_group() -[ 634s] Executing Test_terminal_in_popup_min_size() -[ 634s] Executing Test_terminal_invalid_arg() -[ 634s] Executing Test_terminal_shell_option() -[ 634s] Executing Test_terminal_sync_shell_dir() -[ 635s] Executing Test_terminal_term_start_error() -[ 635s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_terminal_fail.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 635s] Executing Test_terminal_redir_fails() -[ 635s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_textformat.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 635s] Executing Test_correct_cursor_position() -[ 635s] Executing Test_crash_github_issue_5095() -[ 635s] Executing Test_empty_matchpairs() -[ 635s] Executing Test_fo_1() -[ 635s] Executing Test_fo_2() -[ 635s] Executing Test_fo_a_w() -[ 635s] Executing Test_fo_b() -[ 635s] Executing Test_fo_l() -[ 635s] Executing Test_fo_n() -[ 635s] Executing Test_format_align() -[ 635s] Executing Test_format_c_comment() -[ 635s] Executing Test_format_list_auto() -[ 635s] Executing Test_format_para() -[ 635s] Executing Test_format_undo() -[ 635s] Executing Test_formatlistpat() -[ 635s] Executing Test_mps_error() -[ 635s] Executing Test_mps_latin1() -[ 635s] Executing Test_mps_multibyte() -[ 635s] Executing Test_ra_multibyte() -[ 635s] Executing Test_text_format() -[ 635s] Executing Test_tw_1_fo_tm() -[ 635s] Executing Test_tw_2_fo_t() -[ 635s] Executing Test_tw_2_fo_tm() -[ 635s] Executing Test_tw_2_fo_tm_ai() -[ 635s] Executing Test_tw_2_fo_tm_noai() -[ 635s] Executing Test_tw_2_fo_tm_replace() -[ 635s] Executing Test_visual_gq_format() -[ 635s] Executing Test_whichwrap_multi_byte() -[ 635s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_textobjects.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 635s] Executing Test_empty_html_tag() -[ 635s] Executing Test_inner_block_single_char() -[ 635s] Executing Test_inner_block_with_cpo_M_left_backslash() -[ 635s] Executing Test_inner_block_with_cpo_M_right_backslash() -[ 635s] Executing Test_inner_block_without_cpo_M() -[ 635s] Executing Test_inner_tag() -[ 635s] Executing Test_match() -[ 635s] Executing Test_paragraph() -[ 635s] Executing Test_quote_selection_selection_exclusive() -[ 635s] Executing Test_quote_selection_selection_exclusive_abort() -[ 635s] Executing Test_sentence() -[ 635s] Executing Test_sentence_with_cursor_on_delimiter() -[ 635s] Executing Test_sentence_with_quotes() -[ 635s] Executing Test_string_html_objects() -[ 635s] Executing Test_textobj_a_word() -[ 635s] Executing Test_textobj_find_paren_forward() -[ 635s] Executing Test_textobj_quote() -[ 635s] Executing Test_textobj_sentence() -[ 636s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_textprop.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 636s] Executing Test_delete_line_within_multiline_prop() -[ 636s] Executing Test_find_prop_later_in_line() -[ 636s] Executing Test_find_zerowidth_prop_sol() -[ 636s] Executing Test_prop_add() -[ 636s] Executing Test_prop_add_delete_line() -[ 636s] Executing Test_prop_add_list() -[ 636s] Executing Test_prop_add_remove_buf() -[ 636s] Executing Test_prop_add_vim9() -[ 636s] Executing Test_prop_after_linebreak() -[ 636s] Executing Test_prop_after_tab() -[ 636s] Executing Test_prop_backspace() -[ 636s] Executing Test_prop_block_insert() -[ 636s] Executing Test_prop_blockwise_change() -[ 636s] Executing Test_prop_bufnr_zero() -[ 636s] Executing Test_prop_byte2line() -[ 636s] Executing Test_prop_change() -[ 636s] Executing Test_prop_change_indent() -[ 636s] Executing Test_prop_clear() -[ 636s] Executing Test_prop_clear_buf() -[ 636s] Executing Test_prop_delete_text() -[ 636s] Executing Test_prop_find() -[ 636s] Executing Test_prop_find2() -[ 636s] Executing Test_prop_find_prev_on_same_line() -[ 636s] Executing Test_prop_find_smaller_len_than_match_col() -[ 636s] Executing Test_prop_find_with_both_option_enabled() -[ 636s] Executing Test_prop_func_invalid_args() -[ 636s] Executing Test_prop_goto_byte() -[ 636s] Executing Test_prop_in_linebreak() -[ 636s] Executing Test_prop_increment_decrement() -[ 636s] Executing Test_prop_insert_multiline() -[ 636s] Executing Test_prop_line2byte() -[ 636s] Executing Test_prop_list() -[ 637s] Executing Test_prop_multiline() -[ 637s] Executing Test_prop_one_line_window() -[ 637s] Executing Test_prop_open_line() -[ 637s] Executing Test_prop_remove() -[ 637s] Executing Test_prop_remove_vim9() -[ 637s] Executing Test_prop_replace() -[ 637s] Executing Test_prop_setbufline() -[ 637s] Executing Test_prop_setline() -[ 637s] Executing Test_prop_shift_block() -[ 637s] Executing Test_prop_spell() -[ 637s] Executing Test_prop_split_join() -[ 637s] Executing Test_prop_splits_data_block() -[ 637s] Executing Test_prop_substitute() -[ 637s] Executing Test_prop_undo() -[ 637s] Executing Test_props_do_not_affect_byte_offsets() -[ 637s] Executing Test_props_do_not_affect_byte_offsets_dos() -[ 637s] Executing Test_props_do_not_affect_byte_offsets_editline() -[ 637s] Executing Test_proptype_buf() -[ 637s] Executing Test_proptype_buf_list() -[ 637s] Executing Test_proptype_global() -[ 637s] Executing Test_proptype_substitute2() -[ 637s] Executing Test_proptype_substitute3() -[ 637s] Executing Test_textprop_after_tab() -[ 637s] Executing Test_textprop_empty_buffer() -[ 637s] Executing Test_textprop_empty_buffer_next() -[ 637s] Executing Test_textprop_in_unloaded_buf() -[ 637s] Executing Test_textprop_ins_str() -[ 637s] Executing Test_textprop_invalid_highlight() -[ 637s] Executing Test_textprop_noexpandtab() -[ 637s] Executing Test_textprop_noexpandtab_redraw() -[ 637s] Executing Test_textprop_nowrap_scrolled() -[ 637s] Executing Test_textprop_remove_from_buf() -[ 637s] Executing Test_textprop_screenshot_various() -[ 637s] Executing Test_textprop_screenshot_visual() -[ 637s] Executing Test_textprop_with_syntax() -[ 638s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_timers.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 638s] Executing Test_timer_catch_error() -[ 638s] Executing Test_timer_changing_function_list() -[ 638s] Executing Test_timer_delete_myself() -[ 638s] Executing Test_timer_error_in_timer_callback() -[ 638s] Executing Test_timer_errors() -[ 639s] Executing Test_timer_ex_mode() -[ 639s] Executing Test_timer_garbage_collect() -[ 639s] Executing Test_timer_getchar_zero() -[ 639s] Executing Test_timer_info() -[ 639s] Executing Test_timer_input_in_timer() -[ 639s] Executing Test_timer_invalid_callback() -[ 639s] Executing Test_timer_nocatch_garbage_collect() -[ 639s] Executing Test_timer_oneshot() -[ 639s] Executing Test_timer_outputting_message() -[ 639s] Executing Test_timer_paused() -[ 639s] Executing Test_timer_peek_and_get_char() -[ 639s] Executing Test_timer_repeat_many() -[ 639s] Executing Test_timer_repeat_three() -[ 640s] Executing Test_timer_restore_count() -[ 640s] Executing Test_timer_retain_partial() -[ 640s] Executing Test_timer_stop_all_in_callback() -[ 640s] Executing Test_timer_stop_in_callback() -[ 640s] Executing Test_timer_stopall() -[ 640s] Executing Test_timer_using_win_execute_undo_sync() -[ 640s] Executing Test_timer_with_partial_callback() -[ 640s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_true_false.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 640s] Executing Test_if() -[ 640s] Executing Test_non_zero_arg() -[ 640s] Executing Test_true_false_arg() -[ 641s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_trycatch.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 641s] Executing Test_BufEnter_exception() -[ 641s] Executing Test_after_exception_no_endif_error() -[ 641s] Executing Test_builtin_func_error() -[ 641s] Executing Test_catch_from_nested_try() -[ 641s] Executing Test_catch_number_string() -[ 641s] Executing Test_empty_catch() -[ 641s] Executing Test_error_in_catch_and_finally() -[ 641s] Executing Test_finally() -[ 641s] Executing Test_finally_after_continue() -[ 641s] Executing Test_finally_after_throw() -[ 641s] Executing Test_finally_cmd_return() -[ 641s] Executing Test_finally_return() -[ 641s] Executing Test_leave_block_in_endtry_not_called() -[ 641s] Executing Test_multi_catch() -[ 641s] Executing Test_reload_in_try_catch() -[ 641s] Executing Test_throw_across_commands() -[ 641s] Executing Test_throw_builtin_func() -[ 641s] Executing Test_throw_echo() -[ 641s] Executing Test_throw_from_catch() -[ 641s] Executing Test_throw_from_finally() -[ 641s] Executing Test_throw_func() -[ 641s] Executing Test_throw_ifelsewhile() -[ 641s] Executing Test_throw_inactive_cond() -[ 641s] Executing Test_throw_let() -[ 641s] Executing Test_throwreturn() -[ 641s] Executing Test_try_catch_errors() -[ 641s] Executing Test_try_catch_verbose() -[ 641s] Executing Test_user_command_function_call_with_endtry() -[ 641s] Executing Test_user_command_throw_in_function_call() -[ 641s] Executing Test_user_command_try_catch() -[ 642s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_undo.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 642s] Executing Test_U_command() -[ 642s] Executing Test_cmd_in_reg_undo() -[ 642s] Executing Test_global_local_undolevels() -[ 642s] Executing Test_insert_expr() -[ 642s] Executing Test_redo_empty_line() -[ 642s] Executing Test_redo_multibyte_in_insert_mode() -[ 642s] Executing Test_redo_repeat_numbered_register() -[ 642s] Executing Test_rundo_errors() -[ 642s] Executing Test_undo_0() -[ 642s] Executing Test_undo_append() -[ 642s] Executing Test_undo_del_chars() -[ 642s] Executing Test_undo_mark() -[ 642s] Executing Test_undo_redo_noop() -[ 642s] Executing Test_undo_write() -[ 642s] Executing Test_undofile() -[ 642s] Executing Test_undofile_2() -[ 643s] Executing Test_undofile_cryptmethod_blowfish() -[ 644s] Executing Test_undofile_cryptmethod_blowfish2() -[ 644s] Executing Test_undofile_cryptmethod_zip() -[ 645s] Executing Test_undofile_earlier() -[ 645s] Executing Test_undofile_next() -[ 645s] Executing Test_undofile_truncated() -[ 646s] Executing Test_undojoin() -[ 646s] Executing Test_undojoin_after_undo() -[ 646s] Executing Test_undojoin_noop() -[ 646s] Executing Test_undojoin_redo() -[ 646s] Executing Test_undolist() -[ 646s] Executing Test_undotree() -[ 646s] Executing Test_wundo_errors() -[ 646s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_user_func.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 646s] Executing Test_add_funcref_to_global_scope() -[ 646s] Executing Test_default_arg() -[ 646s] Executing Test_del_func() -[ 646s] Executing Test_delfunction_force() -[ 646s] Executing Test_endfunction_trailing() -[ 646s] Executing Test_failed_call_in_try() -[ 646s] Executing Test_func_arg_error() -[ 646s] Executing Test_func_def_error() -[ 646s] Executing Test_func_dict() -[ 646s] Executing Test_func_range() -[ 646s] Executing Test_funccall_garbage_collect() -[ 646s] Executing Test_funcdef_alloc_failure() -[ 646s] Executing Test_function_defined_line() -[ 646s] Executing Test_function_list() -[ 646s] Executing Test_return_outside_func() -[ 646s] Executing Test_script_local_func() -[ 646s] Executing Test_sfile_in_function() -[ 646s] Executing Test_user_func() -[ 646s] Executing Test_user_method() -[ 646s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_usercommands.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 646s] Executing Test_Ambiguous() -[ 646s] Executing Test_CmdCompletion() -[ 646s] Executing Test_CmdErrors() -[ 647s] Executing Test_CmdUndefined() -[ 647s] Executing Test_addr_all() -[ 647s] Executing Test_block_declaration_legacy_script() -[ 647s] Executing Test_buflocal_ambiguous_usercmd() -[ 647s] Executing Test_cmdmods() -[ 647s] Executing Test_command_list() -[ 647s] Executing Test_count_with_quotes() -[ 647s] Executing Test_delcommand_buffer() -[ 647s] Executing Test_f_args() -[ 647s] Executing Test_multibyte_in_usercmd() -[ 647s] Executing Test_no_arg() -[ 647s] Executing Test_q_args() -[ 647s] Executing Test_range_arg() -[ 647s] Executing Test_recursive_define() -[ 647s] Executing Test_redefine_on_reload() -[ 647s] Executing Test_reg_arg() -[ 647s] Executing Test_use_execute_in_completion() -[ 647s] Executing Test_usercmd_custom() -[ 647s] Executing Test_usercmd_with_block() -[ 647s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vartabs.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 647s] Executing Test_retab_invalid_arg() -[ 647s] Executing Test_shiftwidth_vartabstop() -[ 647s] Executing Test_varsofttabstop() -[ 647s] Executing Test_vartabs() -[ 647s] Executing Test_vartabs_breakindent() -[ 647s] Executing Test_vartabs_failures() -[ 647s] Executing Test_vartabs_linebreak() -[ 647s] Executing Test_vartabs_reset() -[ 647s] Executing Test_vartabs_shiftwidth() -[ 647s] Executing Test_vartabstop_latin1() -[ 647s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_assign.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 647s] Executing Test_abort_after_error() -[ 647s] Executing Test_assign_alt_buf_register() -[ 647s] Executing Test_assign_command_modifier() -[ 647s] Executing Test_assign_concat() -[ 648s] Executing Test_assign_dict() -[ 648s] Executing Test_assign_dict_unknown_type() -[ 648s] Executing Test_assign_dict_with_op() -[ 648s] Executing Test_assign_index() -[ 648s] Executing Test_assign_keep_type() -[ 648s] Executing Test_assign_lambda() -[ 649s] Executing Test_assign_linebreak() -[ 649s] Executing Test_assign_list() -[ 649s] Executing Test_assign_list_with_op() -[ 649s] Executing Test_assign_register() -[ 649s] Executing Test_assign_unpack() -[ 650s] Executing Test_assign_with_op_fails() -[ 650s] Executing Test_assignment() -[ 651s] Executing Test_assignment_bool() -[ 652s] Executing Test_assignment_default() -[ 652s] Executing Test_assignment_dict() -[ 653s] Executing Test_assignment_empty_list() -[ 653s] Executing Test_assignment_failure() -[ 656s] Executing Test_assignment_list() -[ 656s] Executing Test_assignment_list_any_index() -[ 656s] Executing Test_assignment_list_vim9script() -[ 656s] Executing Test_assignment_local() -[ 656s] Executing Test_assignment_partial() -[ 656s] Executing Test_assignment_var_list() -[ 656s] Executing Test_assignment_vim9script() -[ 656s] Executing Test_cannot_use_let() -[ 656s] Executing Test_expr_error_no_assign() -[ 656s] Executing Test_extend_dict() -[ 657s] Executing Test_extend_list() -[ 657s] Executing Test_float_and_number() -[ 657s] Executing Test_heredoc() -[ 657s] Executing Test_heredoc_expr() -[ 658s] Executing Test_inc_dec() -[ 658s] Executing Test_init_in_for_loop() -[ 658s] Executing Test_keep_type_after_assigning_null() -[ 658s] Executing Test_list_declaration() -[ 659s] Executing Test_null_values() -[ 659s] Executing Test_redir_is_not_assign() -[ 659s] Executing Test_reserved_name() -[ 661s] Executing Test_script_funcref_case() -[ 661s] Executing Test_script_funcref_runtime_type_check() -[ 661s] Executing Test_script_local_in_legacy() -[ 661s] Executing Test_script_var_default() -[ 661s] Executing Test_single_letter_vars() -[ 661s] Executing Test_skipped_assignment() -[ 661s] Executing Test_syntax() -[ 661s] Executing Test_unlet() -[ 662s] Executing Test_using_s_var_in_function() -[ 663s] Executing Test_var_declaration() -[ 663s] Executing Test_var_declaration_fails() -[ 667s] Executing Test_var_declaration_inferred() -[ 667s] Executing Test_var_func_call() -[ 667s] Executing Test_var_list_dict_type() -[ 667s] Executing Test_var_missing_type() -[ 667s] Executing Test_var_type_check() -[ 668s] Executing Test_vim9_single_char_vars() -[ 668s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_builtin.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 668s] Executing Test_InternalFuncRetType() -[ 668s] Executing Test_abs() -[ 668s] Executing Test_add() -[ 668s] Executing Test_add_blob() -[ 668s] Executing Test_add_list() -[ 669s] Executing Test_and() -[ 669s] Executing Test_append() -[ 669s] Executing Test_appendbufline() -[ 669s] Executing Test_argc() -[ 669s] Executing Test_arglistid() -[ 670s] Executing Test_argv() -[ 670s] Executing Test_assert_beeps() -[ 670s] Executing Test_assert_equalfile() -[ 670s] Executing Test_assert_exception() -[ 671s] Executing Test_assert_fails() -[ 671s] Executing Test_assert_inrange() -[ 671s] Executing Test_assert_match() -[ 671s] Executing Test_assert_nobeep() -[ 671s] Executing Test_assert_notmatch() -[ 672s] Executing Test_assert_report() -[ 672s] Executing Test_autocmd_add() -[ 672s] Executing Test_autocmd_delete() -[ 672s] Executing Test_autocmd_get() -[ 672s] Executing Test_balloon_show() -[ 672s] Executing Test_balloon_split() -[ 672s] Executing Test_blob2list() -[ 672s] Executing Test_browse() -[ 672s] Executing Test_browsedir() -[ 672s] Executing Test_bufadd() -[ 672s] Executing Test_bufexists() -[ 672s] Executing Test_buflisted() -[ 672s] Executing Test_bufload() -[ 672s] Executing Test_bufloaded() -[ 672s] Executing Test_bufname() -[ 672s] Executing Test_bufnr() -[ 672s] Executing Test_bufwinid() -[ 672s] Executing Test_bufwinnr() -[ 672s] Executing Test_byte2line() -[ 672s] Executing Test_byteidx() -[ 673s] Executing Test_byteidxcomp() -[ 673s] Executing Test_call_call() -[ 673s] Executing Test_ch_canread() -[ 673s] Executing Test_ch_close() -[ 673s] Executing Test_ch_close_in() -[ 673s] Executing Test_ch_evalexpr() -[ 673s] Executing Test_ch_evalraw() -[ 673s] Executing Test_ch_getbufnr() -[ 674s] Executing Test_ch_getjob() -[ 674s] Executing Test_ch_info() -[ 674s] Executing Test_ch_log() -[ 674s] Executing Test_ch_logfile() -[ 674s] Executing Test_ch_open() -[ 675s] Executing Test_ch_read() -[ 675s] Executing Test_ch_readblob() -[ 676s] Executing Test_ch_readraw() -[ 676s] Executing Test_ch_sendexpr() -[ 676s] Executing Test_ch_sendraw() -[ 677s] Executing Test_ch_setoptions() -[ 677s] Executing Test_ch_status() -[ 677s] Executing Test_char2nr() -[ 677s] Executing Test_charclass() -[ 677s] Executing Test_charcol() -[ 678s] Executing Test_charidx() -[ 678s] Executing Test_chdir() -[ 678s] Executing Test_cindent() -[ 679s] Executing Test_clearmatches() -[ 679s] Executing Test_col() -[ 679s] Executing Test_complete() -[ 680s] Executing Test_complete_add() -[ 680s] Executing Test_complete_info() -[ 680s] Executing Test_confirm() -[ 681s] Executing Test_copy_return_type() -[ 681s] Executing Test_count() -[ 682s] Executing Test_cscope_connection() -[ 682s] Executing Test_cursor() -[ 683s] Executing Test_debugbreak() -[ 683s] Executing Test_deepcopy() -[ 683s] Executing Test_delete() -[ 683s] Executing Test_deletebufline() -[ 684s] Executing Test_diff_filler() -[ 684s] Executing Test_diff_hlID() -[ 684s] Executing Test_digraph_get() -[ 685s] Executing Test_digraph_getlist() -[ 685s] Executing Test_digraph_set() -[ 686s] Executing Test_digraph_setlist() -[ 686s] Executing Test_echoraw() -[ 686s] Executing Test_escape() -[ 686s] Executing Test_eval() -[ 687s] Executing Test_executable() -[ 687s] Executing Test_execute() -[ 687s] Executing Test_exepath() -[ 687s] Executing Test_exists() -[ 687s] Executing Test_exists_compiled() -[ 688s] Executing Test_expand() -[ 688s] Executing Test_expandcmd() -[ 688s] Executing Test_extend_arg_types() -[ 689s] Executing Test_extend_dict_item_type() -[ 690s] Executing Test_extend_list_item_type() -[ 690s] Executing Test_extend_return_type() -[ 690s] Executing Test_extend_with_error_function() -[ 690s] Executing Test_extendnew() -[ 691s] Executing Test_feedkeys() -[ 692s] Executing Test_filereadable() -[ 692s] Executing Test_filewritable() -[ 692s] Executing Test_filter() -[ 693s] Executing Test_filter_missing_argument() -[ 693s] Executing Test_filter_return_type() -[ 693s] Executing Test_filter_wrong_dict_key_type() -[ 693s] Executing Test_finddir() -[ 694s] Executing Test_findfile() -[ 695s] Executing Test_flatten() -[ 695s] Executing Test_flattennew() -[ 695s] Executing Test_float_funcs_args() -[ 699s] Executing Test_fnameescape() -[ 699s] Executing Test_fnamemodify() -[ 699s] Executing Test_foldclosed() -[ 699s] Executing Test_foldclosedend() -[ 699s] Executing Test_foldlevel() -[ 700s] Executing Test_foldtextresult() -[ 700s] Executing Test_fullcommand() -[ 700s] Executing Test_funcref() -[ 700s] Executing Test_function() -[ 700s] Executing Test_garbagecollect() -[ 700s] Executing Test_get() -[ 700s] Executing Test_getbufinfo() -[ 700s] Executing Test_getbufline() -[ 701s] Executing Test_getbufvar() -[ 701s] Executing Test_getchangelist() -[ 701s] Executing Test_getchar() -[ 701s] Executing Test_getcharpos() -[ 701s] Executing Test_getcharstr() -[ 701s] Executing Test_getcompletion() -[ 701s] Executing Test_getcurpos() -[ 701s] Executing Test_getcursorcharpos() -[ 701s] Executing Test_getcwd() -[ 702s] Executing Test_getenv() -[ 702s] Executing Test_getfontname() -[ 702s] Executing Test_getfperm() -[ 702s] Executing Test_getfsize() -[ 702s] Executing Test_getftime() -[ 702s] Executing Test_getftype() -[ 702s] Executing Test_getjumplist() -[ 702s] Executing Test_getline() -[ 702s] Executing Test_getloclist() -[ 702s] Executing Test_getloclist_return_type() -[ 702s] Executing Test_getmarklist() -[ 702s] Executing Test_getmatches() -[ 703s] Executing Test_getpos() -[ 703s] Executing Test_getqflist() -[ 703s] Executing Test_getqflist_return_type() -[ 703s] Executing Test_getreg() -[ 703s] Executing Test_getreg_return_type() -[ 703s] Executing Test_getreginfo() -[ 703s] Executing Test_getregtype() -[ 703s] Executing Test_gettabinfo() -[ 703s] Executing Test_gettabvar() -[ 703s] Executing Test_gettabwinvar() -[ 703s] Executing Test_gettagstack() -[ 703s] Executing Test_gettext() -[ 703s] Executing Test_getwininfo() -[ 703s] Executing Test_getwinpos() -[ 704s] Executing Test_getwinvar() -[ 704s] Executing Test_glob() -[ 704s] Executing Test_glob2regpat() -[ 704s] Executing Test_globpath() -[ 705s] Executing Test_has() -[ 705s] Executing Test_has_key() -[ 705s] Executing Test_haslocaldir() -[ 705s] Executing Test_hasmapto() -[ 706s] Executing Test_histadd() -[ 706s] Executing Test_histdel() -[ 706s] Executing Test_histget() -[ 706s] Executing Test_histnr() -[ 706s] Executing Test_hlID() -[ 707s] Executing Test_hlexists() -[ 707s] Executing Test_hlget() -[ 707s] Executing Test_hlset() -[ 707s] Executing Test_iconv() -[ 707s] Executing Test_indent() -[ 708s] Executing Test_index() -[ 708s] Executing Test_input() -[ 709s] Executing Test_inputdialog() -[ 709s] Executing Test_inputlist() -[ 710s] Executing Test_inputsecret() -[ 710s] Executing Test_insert() -[ 711s] Executing Test_internalfunc_arg_error() -[ 711s] Executing Test_invert() -[ 711s] Executing Test_isdirectory() -[ 711s] Executing Test_islocked() -[ 712s] Executing Test_items() -[ 712s] Executing Test_job_getchannel() -[ 712s] Executing Test_job_info() -[ 712s] Executing Test_job_setoptions() -[ 712s] Executing Test_job_status() -[ 712s] Executing Test_job_stop() -[ 712s] Executing Test_join() -[ 712s] Executing Test_js_decode() -[ 712s] Executing Test_json_decode() -[ 713s] Executing Test_keys() -[ 713s] Executing Test_keys_return_type() -[ 713s] Executing Test_len() -[ 713s] Executing Test_libcall() -[ 713s] Executing Test_libcallnr() -[ 714s] Executing Test_line() -[ 714s] Executing Test_line2byte() -[ 715s] Executing Test_lispindent() -[ 715s] Executing Test_list2blob() -[ 715s] Executing Test_list2str() -[ 716s] Executing Test_list2str_str2list_utf8() -[ 716s] Executing Test_listener_add() -[ 716s] Executing Test_listener_flush() -[ 716s] Executing Test_listener_remove() -[ 716s] Executing Test_luaeval() -[ 716s] Executing Test_map() -[ 717s] Executing Test_map_failure() -[ 717s] Executing Test_map_function_arg() -[ 717s] Executing Test_map_item_type() -[ 718s] Executing Test_maparg() -[ 719s] Executing Test_maparg_mapset() -[ 719s] Executing Test_mapcheck() -[ 719s] Executing Test_mapnew() -[ 719s] Executing Test_mapset() -[ 720s] Executing Test_match() -[ 720s] Executing Test_matchadd() -[ 721s] Executing Test_matchaddpos() -[ 722s] Executing Test_matcharg() -[ 722s] Executing Test_matchdelete() -[ 722s] Executing Test_matchend() -[ 723s] Executing Test_matchfuzzy() -[ 724s] Executing Test_matchfuzzypos() -[ 724s] Executing Test_matchlist() -[ 724s] Executing Test_matchstr() -[ 724s] Executing Test_matchstrpos() -[ 725s] Executing Test_max() -[ 725s] Executing Test_menu_info() -[ 725s] Executing Test_min() -[ 725s] Executing Test_mkdir() -[ 725s] Executing Test_mode() -[ 725s] Executing Test_mzeval() -[ 725s] Executing Test_nextnonblank() -[ 725s] Executing Test_nr2char() -[ 725s] Executing Test_or() -[ 725s] Executing Test_pathshorten() -[ 726s] Executing Test_perleval() -[ 726s] Executing Test_popup_atcursor() -[ 726s] Executing Test_popup_beval() -[ 726s] Executing Test_popup_clear() -[ 726s] Executing Test_popup_close() -[ 726s] Executing Test_popup_create() -[ 726s] Executing Test_popup_dialog() -[ 726s] Executing Test_popup_filter_menu() -[ 726s] Executing Test_popup_filter_yesno() -[ 726s] Executing Test_popup_getoptions() -[ 726s] Executing Test_popup_getpos() -[ 726s] Executing Test_popup_hide() -[ 726s] Executing Test_popup_locate() -[ 726s] Executing Test_popup_menu() -[ 727s] Executing Test_popup_move() -[ 727s] Executing Test_popup_notification() -[ 727s] Executing Test_popup_setoptions() -[ 727s] Executing Test_popup_settext() -[ 727s] Executing Test_popup_show() -[ 727s] Executing Test_prevnonblank() -[ 727s] Executing Test_printf() -[ 727s] Executing Test_prompt_getprompt() -[ 727s] Executing Test_prompt_setcallback() -[ 727s] Executing Test_prompt_setinterrupt() -[ 727s] Executing Test_prompt_setprompt() -[ 727s] Executing Test_prop_add() -[ 728s] Executing Test_prop_add_list() -[ 728s] Executing Test_prop_clear() -[ 728s] Executing Test_prop_find() -[ 728s] Executing Test_prop_list() -[ 728s] Executing Test_prop_remove() -[ 728s] Executing Test_prop_type_add() -[ 728s] Executing Test_prop_type_change() -[ 728s] Executing Test_prop_type_delete() -[ 729s] Executing Test_prop_type_get() -[ 729s] Executing Test_prop_type_list() -[ 729s] Executing Test_py3eval() -[ 729s] Executing Test_pyeval() -[ 729s] Executing Test_pyxeval() -[ 729s] Executing Test_rand() -[ 729s] Executing Test_range() -[ 729s] Executing Test_readblob() -[ 729s] Executing Test_readdir() -[ 730s] Executing Test_readdirex() -[ 730s] Executing Test_readfile() -[ 730s] Executing Test_reduce() -[ 730s] Executing Test_reltime() -[ 731s] Executing Test_reltimefloat() -[ 731s] Executing Test_reltimestr() -[ 731s] Executing Test_remote_expr() -[ 731s] Executing Test_remote_foreground() -[ 731s] Executing Test_remote_peek() -[ 731s] Executing Test_remote_read() -[ 731s] Executing Test_remote_send() -[ 731s] Executing Test_remote_startserver() -[ 731s] Executing Test_remove() -[ 731s] Executing Test_remove_const_list() -[ 731s] Executing Test_remove_return_type() -[ 731s] Executing Test_rename() -[ 731s] Executing Test_repeat() -[ 732s] Executing Test_resolve() -[ 732s] Executing Test_reverse() -[ 732s] Executing Test_reverse_return_type() -[ 732s] Executing Test_rubyeval() -[ 732s] Executing Test_screenattr() -[ 732s] Executing Test_screenchar() -[ 732s] Executing Test_screenchars() -[ 732s] Executing Test_screenpos() -[ 732s] Executing Test_screenstring() -[ 732s] Executing Test_search() -[ 733s] Executing Test_searchcount() -[ 733s] Executing Test_searchdecl() -[ 733s] Executing Test_searchpair() -[ 734s] Executing Test_searchpos() -[ 734s] Executing Test_server2client() -[ 734s] Executing Test_set_get_bufline() -[ 734s] Executing Test_setbufline() -[ 734s] Executing Test_setbufvar() -[ 734s] Executing Test_setcellwidths() -[ 734s] Executing Test_setcharpos() -[ 734s] Executing Test_setcharsearch() -[ 734s] Executing Test_setcmdpos() -[ 734s] Executing Test_setcursorcharpos() -[ 735s] Executing Test_setenv() -[ 735s] Executing Test_setfperm() -[ 735s] Executing Test_setline() -[ 735s] Executing Test_setloclist() -[ 735s] Executing Test_setmatches() -[ 735s] Executing Test_setpos() -[ 735s] Executing Test_setqflist() -[ 735s] Executing Test_setreg() -[ 736s] Executing Test_settabvar() -[ 736s] Executing Test_settabwinvar() -[ 736s] Executing Test_settagstack() -[ 736s] Executing Test_setwinvar() -[ 736s] Executing Test_sha256() -[ 736s] Executing Test_shellescape() -[ 736s] Executing Test_shiftwidth() -[ 736s] Executing Test_sign_define() -[ 736s] Executing Test_sign_getdefined() -[ 736s] Executing Test_sign_getplaced() -[ 736s] Executing Test_sign_jump() -[ 737s] Executing Test_sign_place() -[ 737s] Executing Test_sign_placelist() -[ 737s] Executing Test_sign_undefine() -[ 737s] Executing Test_sign_unplace() -[ 737s] Executing Test_sign_unplacelist() -[ 737s] Executing Test_simplify() -[ 737s] Executing Test_slice() -[ 737s] Executing Test_sort_argument() -[ 737s] Executing Test_sort_compare_func_fails() -[ 738s] Executing Test_sort_return_type() -[ 738s] Executing Test_sound_playevent() -[ 738s] Executing Test_sound_playfile() -[ 738s] Executing Test_sound_stop() -[ 738s] Executing Test_soundfold() -[ 738s] Executing Test_spellbadword() -[ 738s] Executing Test_spellsuggest() -[ 738s] Executing Test_split() -[ 738s] Executing Test_srand() -[ 738s] Executing Test_state() -[ 738s] Executing Test_str2float() -[ 738s] Executing Test_str2list() -[ 738s] Executing Test_str2nr() -[ 738s] Executing Test_strcharlen() -[ 738s] Executing Test_strcharpart() -[ 738s] Executing Test_strchars() -[ 739s] Executing Test_strdisplaywidth() -[ 739s] Executing Test_strftime() -[ 739s] Executing Test_strgetchar() -[ 739s] Executing Test_stridx() -[ 739s] Executing Test_strlen() -[ 739s] Executing Test_strpart() -[ 740s] Executing Test_strptime() -[ 740s] Executing Test_strridx() -[ 740s] Executing Test_strtrans() -[ 740s] Executing Test_strwidth() -[ 740s] Executing Test_submatch() -[ 740s] Executing Test_substitute() -[ 740s] Executing Test_swapinfo() -[ 741s] Executing Test_swapname() -[ 741s] Executing Test_synID() -[ 741s] Executing Test_synIDattr() -[ 742s] Executing Test_synIDtrans() -[ 742s] Executing Test_synconcealed() -[ 742s] Executing Test_synstack() -[ 743s] Executing Test_system() -[ 743s] Executing Test_systemlist() -[ 743s] Executing Test_tabpagebuflist() -[ 744s] Executing Test_tabpagenr() -[ 744s] Executing Test_tabpagewinnr() -[ 744s] Executing Test_taglist() -[ 744s] Executing Test_term_dumpdiff() -[ 744s] Executing Test_term_dumpload() -[ 745s] Executing Test_term_dumpwrite() -[ 745s] Executing Test_term_getaltscreen() -[ 746s] Executing Test_term_getansicolors() -[ 746s] Executing Test_term_getattr() -[ 746s] Executing Test_term_getcursor() -[ 746s] Executing Test_term_getjob() -[ 746s] Executing Test_term_getline() -[ 746s] Executing Test_term_getscrolled() -[ 746s] Executing Test_term_getsize() -[ 747s] Executing Test_term_getstatus() -[ 747s] Executing Test_term_gettitle() -[ 747s] Executing Test_term_gettty() -[ 747s] Executing Test_term_scrape() -[ 748s] Executing Test_term_sendkeys() -[ 748s] Executing Test_term_setansicolors() -[ 748s] Executing Test_term_setapi() -[ 748s] Executing Test_term_setkill() -[ 749s] Executing Test_term_setrestore() -[ 749s] Executing Test_term_setsize() -[ 749s] Executing Test_term_start() -[ 750s] Executing Test_term_wait() -[ 750s] Executing Test_test_alloc_fail() -[ 750s] Executing Test_test_feedinput() -[ 751s] Executing Test_test_getvalue() -[ 751s] Executing Test_test_gui_event() -[ 751s] Executing Test_test_ignore_error() -[ 751s] Executing Test_test_option_not_set() -[ 751s] Executing Test_test_override() -[ 752s] Executing Test_test_setmouse() -[ 752s] Executing Test_test_settime() -[ 752s] Executing Test_test_srand_seed() -[ 752s] Executing Test_timer_info() -[ 752s] Executing Test_timer_pause() -[ 753s] Executing Test_timer_paused() -[ 753s] Executing Test_timer_start() -[ 753s] Executing Test_timer_stop() -[ 754s] Executing Test_tolower() -[ 754s] Executing Test_toupper() -[ 754s] Executing Test_tr() -[ 755s] Executing Test_trim() -[ 755s] Executing Test_typename() -[ 755s] Executing Test_undofile() -[ 755s] Executing Test_uniq() -[ 756s] Executing Test_values() -[ 756s] Executing Test_virtcol() -[ 756s] Executing Test_visualmode() -[ 756s] Executing Test_win_execute() -[ 757s] Executing Test_win_findbuf() -[ 757s] Executing Test_win_getid() -[ 757s] Executing Test_win_gettype() -[ 757s] Executing Test_win_gotoid() -[ 757s] Executing Test_win_gotoid_in_mapping() -[ 757s] Executing Test_win_id2tabwin() -[ 757s] Executing Test_win_id2win() -[ 757s] Executing Test_win_screenpos() -[ 757s] Executing Test_win_splitmove() -[ 757s] Executing Test_winbufnr() -[ 757s] Executing Test_winheight() -[ 758s] Executing Test_winlayout() -[ 758s] Executing Test_winnr() -[ 758s] Executing Test_winrestcmd() -[ 758s] Executing Test_winrestview() -[ 758s] Executing Test_winsaveview() -[ 758s] Executing Test_winwidth() -[ 758s] Executing Test_writefile() -[ 758s] Executing Test_xor() -[ 759s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_cmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 759s] Executing Test_ambiguous_user_cmd() -[ 759s] Executing Test_bar_after_command() -[ 759s] Executing Test_bar_line_continuation() -[ 759s] Executing Test_cmd_argument_without_colon() -[ 759s] Executing Test_cmdmod_execute() -[ 759s] Executing Test_cmdwin_block() -[ 759s] Executing Test_command_modifier_confirm() -[ 760s] Executing Test_command_modifier_filter() -[ 760s] Executing Test_command_modifier_other() -[ 760s] Executing Test_command_modifiers_keep() -[ 760s] Executing Test_command_not_recognized() -[ 760s] Executing Test_command_star_range() -[ 760s] Executing Test_condition_types() -[ 761s] Executing Test_defcompile_fails() -[ 761s] Executing Test_dict_member() -[ 762s] Executing Test_echo_linebreak() -[ 762s] Executing Test_echo_void() -[ 762s] Executing Test_edit_wildcards() -[ 762s] Executing Test_environment_use_linebreak() -[ 762s] Executing Test_eval_command() -[ 762s] Executing Test_expand_alternate_file() -[ 762s] Executing Test_f_args() -[ 763s] Executing Test_filter_is_not_modifier() -[ 763s] Executing Test_folddo_backtick_expansion() -[ 763s] Executing Test_for_linebreak() -[ 763s] Executing Test_gdefault_not_used() -[ 763s] Executing Test_global_backtick_expansion() -[ 763s] Executing Test_hardcopy_wildcards() -[ 763s] Executing Test_if_linebreak() -[ 763s] Executing Test_insert_complete() -[ 763s] Executing Test_lockvar() -[ 763s] Executing Test_magic_not_used() -[ 763s] Executing Test_map_command() -[ 764s] Executing Test_method_and_user_command() -[ 764s] Executing Test_method_call_linebreak() -[ 764s] Executing Test_method_call_whitespace() -[ 764s] Executing Test_modifier_silent_unsilent() -[ 764s] Executing Test_no_space_after_command() -[ 764s] Executing Test_normal_command() -[ 764s] Executing Test_option_use_linebreak() -[ 764s] Executing Test_previewpopup() -[ 764s] Executing Test_put_command() -[ 764s] Executing Test_put_with_linebreak() -[ 764s] Executing Test_range_after_command_modifier() -[ 764s] Executing Test_redir_to_var() -[ 765s] Executing Test_silent_pattern() -[ 765s] Executing Test_skipped_expr_linebreak() -[ 765s] Executing Test_star_command() -[ 765s] Executing Test_substitute_expr() -[ 765s] Executing Test_syn_include_wildcards() -[ 765s] Executing Test_syntax_enable_clear() -[ 765s] Executing Test_use_register() -[ 765s] Executing Test_useless_command_modifier() -[ 766s] Executing Test_user_command_comment() -[ 766s] Executing Test_var_not_cmd() -[ 766s] Executing Test_vim9cmd() -[ 766s] Executing Test_while_linebreak() -[ 766s] Executing Test_win_command_modifiers() -[ 766s] Executing Test_wincmd() -[ 766s] Executing Test_windo_missing_endif() -[ 766s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_disassemble.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 767s] Executing Test_debug_elseif() -[ 767s] Executing Test_debug_elseif_constant() -[ 767s] Executing Test_debug_for() -[ 767s] Executing Test_debug_try_catch() -[ 767s] Executing Test_debugged() -[ 767s] Executing Test_disassemble_add_list_blob() -[ 767s] Executing Test_disassemble_after_reload() -[ 767s] Executing Test_disassemble_and_constant() -[ 767s] Executing Test_disassemble_and_or() -[ 767s] Executing Test_disassemble_any_index() -[ 767s] Executing Test_disassemble_any_slice() -[ 767s] Executing Test_disassemble_assign_null() -[ 767s] Executing Test_disassemble_auto_init() -[ 767s] Executing Test_disassemble_bitshift() -[ 767s] Executing Test_disassemble_blob_add() -[ 767s] Executing Test_disassemble_blob_index_slice() -[ 767s] Executing Test_disassemble_call() -[ 767s] Executing Test_disassemble_call_default() -[ 767s] Executing Test_disassemble_cexpr() -[ 767s] Executing Test_disassemble_channel() -[ 767s] Executing Test_disassemble_closure() -[ 767s] Executing Test_disassemble_closure_arg() -[ 767s] Executing Test_disassemble_compare() -[ 770s] Executing Test_disassemble_compare_const() -[ 770s] Executing Test_disassemble_computing() -[ 770s] Executing Test_disassemble_concat() -[ 770s] Executing Test_disassemble_const_expr() -[ 770s] Executing Test_disassemble_dict_member() -[ 770s] Executing Test_disassemble_dict_stack() -[ 770s] Executing Test_disassemble_echomsg() -[ 770s] Executing Test_disassemble_exec_expr() -[ 770s] Executing Test_disassemble_execute() -[ 770s] Executing Test_disassemble_falsy_op() -[ 770s] Executing Test_disassemble_for_loop() -[ 770s] Executing Test_disassemble_for_loop_continue() -[ 770s] Executing Test_disassemble_for_loop_eval() -[ 770s] Executing Test_disassemble_for_loop_unpack() -[ 770s] Executing Test_disassemble_function() -[ 770s] Executing Test_disassemble_import_autoload() -[ 770s] Executing Test_disassemble_invert_bool() -[ 770s] Executing Test_disassemble_lambda() -[ 770s] Executing Test_disassemble_lambda_with_type() -[ 770s] Executing Test_disassemble_list_add() -[ 770s] Executing Test_disassemble_list_assign() -[ 770s] Executing Test_disassemble_list_assign_with_op() -[ 770s] Executing Test_disassemble_list_index() -[ 770s] Executing Test_disassemble_list_slice() -[ 770s] Executing Test_disassemble_load() -[ 770s] Executing Test_disassemble_lock_local() -[ 770s] Executing Test_disassemble_negate_number() -[ 770s] Executing Test_disassemble_nested_def_list() -[ 770s] Executing Test_disassemble_nested_func() -[ 770s] Executing Test_disassemble_new() -[ 770s] Executing Test_disassemble_nextcmd() -[ 770s] Executing Test_disassemble_pcall() -[ 770s] Executing Test_disassemble_push() -[ 770s] Executing Test_disassemble_put_expr() -[ 770s] Executing Test_disassemble_put_range() -[ 770s] Executing Test_disassemble_python_heredoc() -[ 770s] Executing Test_disassemble_range_only() -[ 770s] Executing Test_disassemble_redir_var() -[ 770s] Executing Test_disassemble_return_bool() -[ 770s] Executing Test_disassemble_return_in_if() -[ 770s] Executing Test_disassemble_return_legacy() -[ 770s] Executing Test_disassemble_seachpair() -[ 770s] Executing Test_disassemble_store() -[ 770s] Executing Test_disassemble_store_index() -[ 770s] Executing Test_disassemble_store_member() -[ 770s] Executing Test_disassemble_store_range() -[ 770s] Executing Test_disassemble_string_index() -[ 770s] Executing Test_disassemble_string_interp() -[ 770s] Executing Test_disassemble_string_slice() -[ 770s] Executing Test_disassemble_substitute() -[ 770s] Executing Test_disassemble_substitute_expr() -[ 770s] Executing Test_disassemble_try() -[ 770s] Executing Test_disassemble_typecast() -[ 770s] Executing Test_disassemble_unlet() -[ 770s] Executing Test_disassemble_update_instr() -[ 770s] Executing Test_disassemble_yank_range() -[ 770s] Executing Test_display_func() -[ 770s] Executing Test_profiled() -[ 770s] Executing Test_shuffle() -[ 770s] Executing Test_silent() -[ 770s] Executing Test_silent_for() -[ 770s] Executing Test_silent_if() -[ 770s] Executing Test_silent_return() -[ 770s] Executing Test_silent_while() -[ 770s] Executing Test_simplify_const_expr() -[ 770s] Executing Test_vim9script_forward_func() -[ 770s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_expr.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 770s] Executing Test_expr1_falsy() -[ 771s] Executing Test_expr1_ternary() -[ 771s] Executing Test_expr1_ternary_fails() -[ 772s] Executing Test_expr1_ternary_vimscript() -[ 773s] Executing Test_expr2() -[ 773s] Executing Test_expr2_fails() -[ 773s] Executing Test_expr2_vimscript() -[ 773s] Executing Test_expr3() -[ 773s] Executing Test_expr3_fails() -[ 774s] Executing Test_expr3_vimscript() -[ 774s] Executing Test_expr4_compare_none() -[ 775s] Executing Test_expr4_compare_null() -[ 775s] Executing Test_expr4_equal() -[ 775s] Executing Test_expr4_fails() -[ 778s] Executing Test_expr4_greater() -[ 778s] Executing Test_expr4_greaterequal() -[ 778s] Executing Test_expr4_is() -[ 778s] Executing Test_expr4_isnot() -[ 778s] Executing Test_expr4_match() -[ 778s] Executing Test_expr4_nomatch() -[ 778s] Executing Test_expr4_notequal() -[ 778s] Executing Test_expr4_smaller() -[ 779s] Executing Test_expr4_smallerequal() -[ 779s] Executing Test_expr4_vim9script() -[ 780s] Executing Test_expr4_wrong_type() -[ 781s] Executing Test_expr6() -[ 781s] Executing Test_expr6_fails() -[ 783s] Executing Test_expr6_fails_channel() -[ 783s] Executing Test_expr6_float() -[ 783s] Executing Test_expr6_list_add() -[ 783s] Executing Test_expr6_vim9script() -[ 784s] Executing Test_expr6_vim9script_channel() -[ 784s] Executing Test_expr7() -[ 785s] Executing Test_expr7_fails() -[ 786s] Executing Test_expr7_float() -[ 786s] Executing Test_expr7_float_fails() -[ 786s] Executing Test_expr7_vim9script() -[ 787s] Executing Test_expr8() -[ 787s] Executing Test_expr9_any_index_slice() -[ 788s] Executing Test_expr9_autoload_var() -[ 788s] Executing Test_expr9_blob() -[ 788s] Executing Test_expr9_blob_subscript() -[ 788s] Executing Test_expr9_call() -[ 788s] Executing Test_expr9_call_2bool() -[ 788s] Executing Test_expr9_call_autoload() -[ 788s] Executing Test_expr9_call_global() -[ 788s] Executing Test_expr9_dict() -[ 789s] Executing Test_expr9_dict_in_block() -[ 789s] Executing Test_expr9_dict_subscript() -[ 789s] Executing Test_expr9_dict_vim9script() -[ 790s] Executing Test_expr9_environment() -[ 790s] Executing Test_expr9_fails() -[ 791s] Executing Test_expr9_float() -[ 791s] Executing Test_expr9_funcref_subscript() -[ 792s] Executing Test_expr9_lambda() -[ 792s] Executing Test_expr9_lambda_block() -[ 792s] Executing Test_expr9_lambda_vim9script() -[ 793s] Executing Test_expr9_legacy_script() -[ 793s] Executing Test_expr9_list() -[ 794s] Executing Test_expr9_list_subscript() -[ 794s] Executing Test_expr9_list_vim9script() -[ 794s] Executing Test_expr9_method_call() -[ 794s] Executing Test_expr9_method_call_import() -[ 794s] Executing Test_expr9_method_call_linebreak() -[ 794s] Executing Test_expr9_namespace() -[ 794s] Executing Test_expr9_namespace_loop_def() -[ 794s] Executing Test_expr9_namespace_loop_script() -[ 795s] Executing Test_expr9_negate() -[ 795s] Executing Test_expr9_negate_add() -[ 796s] Executing Test_expr9_new_lambda() -[ 796s] Executing Test_expr9_not() -[ 797s] Executing Test_expr9_number() -[ 797s] Executing Test_expr9_option() -[ 797s] Executing Test_expr9_parens() -[ 797s] Executing Test_expr9_register() -[ 797s] Executing Test_expr9_special() -[ 797s] Executing Test_expr9_string() -[ 798s] Executing Test_expr9_string_subscript() -[ 798s] Executing Test_expr9_subscript_linebreak() -[ 798s] Executing Test_expr9_trailing() -[ 799s] Executing Test_expr9_trailing_fails() -[ 799s] Executing Test_expr9_vimvar() -[ 799s] Executing Test_expr9funcref() -[ 799s] Executing Test_expr_fails() -[ 800s] Executing Test_expr_member() -[ 800s] Executing Test_expr_member_vim9script() -[ 800s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_fails.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 800s] Executing Test_assignment() -[ 800s] Executing Test_job_info_return_type() -[ 800s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_func.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 800s] Executing Test_E1056_1059() -[ 800s] Executing Test_abort_even_with_silent() -[ 800s] Executing Test_abort_with_silent_call() -[ 801s] Executing Test_arg_type_wrong() -[ 801s] Executing Test_argument_names() -[ 801s] Executing Test_argv_return_type() -[ 801s] Executing Test_assign_to_argument() -[ 801s] Executing Test_autoload_error_in_script() -[ 801s] Executing Test_autoload_name_mismatch() -[ 801s] Executing Test_autoload_names() -[ 801s] Executing Test_block_scoped_var() -[ 801s] Executing Test_call_closure_not_compiled() -[ 801s] Executing Test_call_def_varargs() -[ 802s] Executing Test_call_default_args() -[ 802s] Executing Test_call_default_args_from_func() -[ 802s] Executing Test_call_func_defined_later() -[ 802s] Executing Test_call_func_with_null() -[ 802s] Executing Test_call_funcref() -[ 803s] Executing Test_call_funcref_wrong_args() -[ 803s] Executing Test_call_lambda_args() -[ 804s] Executing Test_call_legacy_with_dict() -[ 804s] Executing Test_call_ufunc_count() -[ 804s] Executing Test_call_ufunc_failure() -[ 804s] Executing Test_call_varargs() -[ 804s] Executing Test_call_varargs_only() -[ 805s] Executing Test_call_white_space() -[ 805s] Executing Test_call_wrong_args() -[ 806s] Executing Test_callstack_def() -[ 806s] Executing Test_check_argument_type() -[ 806s] Executing Test_check_func_arg_types() -[ 806s] Executing Test_closing_brace_at_start_of_line() -[ 806s] Executing Test_closure_append_get() -[ 806s] Executing Test_closure_called_from_legacy() -[ 806s] Executing Test_closure_in_map() -[ 806s] Executing Test_closure_ref_after_return() -[ 806s] Executing Test_closure_simple() -[ 806s] Executing Test_closure_two_indirect_refs() -[ 806s] Executing Test_closure_two_refs() -[ 806s] Executing Test_closure_using_argument() -[ 806s] Executing Test_cmd_modifier() -[ 807s] Executing Test_cmdmod_silent_nested() -[ 807s] Executing Test_cmdmod_silent_restored() -[ 807s] Executing Test_compile_error() -[ 807s] Executing Test_compile_error_in_called_function() -[ 807s] Executing Test_compiling_error() -[ 807s] Executing Test_compiling_referenced_func_no_shadow() -[ 807s] Executing Test_continues_with_silent_error() -[ 807s] Executing Test_def_basic() -[ 807s] Executing Test_define_lambda_in_execute() -[ 807s] Executing Test_deleted_function() -[ 807s] Executing Test_delfunc() -[ 807s] Executing Test_dict_member_with_silent() -[ 807s] Executing Test_did_emsg_reset() -[ 807s] Executing Test_double_closure_fails() -[ 807s] Executing Test_double_nested_lambda() -[ 807s] Executing Test_enddef_dict_key() -[ 807s] Executing Test_endfunc_enddef() -[ 807s] Executing Test_error_in_function_args() -[ 808s] Executing Test_error_in_nested_function() -[ 808s] Executing Test_error_reporting() -[ 808s] Executing Test_failure_in_called_function() -[ 808s] Executing Test_free_dict_while_in_funcstack() -[ 809s] Executing Test_func_common_type() -[ 809s] Executing Test_func_return_type() -[ 809s] Executing Test_func_type() -[ 809s] Executing Test_func_type_fails() -[ 810s] Executing Test_func_type_part() -[ 810s] Executing Test_func_type_varargs() -[ 810s] Executing Test_func_with_comments() -[ 810s] Executing Test_funcdepth_error() -[ 810s] Executing Test_funcref_with_base() -[ 810s] Executing Test_function_python() -[ 810s] Executing Test_global_closure() -[ 810s] Executing Test_global_closure_called_directly() -[ 811s] Executing Test_global_function_not_found() -[ 811s] Executing Test_global_local_function() -[ 811s] Executing Test_go_beyond_end_of_cmd() -[ 811s] Executing Test_ignore_silent_error() -[ 811s] Executing Test_ignore_silent_error_in_filter() -[ 811s] Executing Test_ignored_argument() -[ 811s] Executing Test_invalid_function_name() -[ 811s] Executing Test_lambda_allocation_failure() -[ 811s] Executing Test_lambda_arg_shadows_func() -[ 811s] Executing Test_lambda_block_variable() -[ 811s] Executing Test_lambda_in_reduce_line_break() -[ 811s] Executing Test_lambda_line_nr() -[ 811s] Executing Test_lambda_return_type() -[ 812s] Executing Test_lambda_type_allocated() -[ 812s] Executing Test_lambda_uses_assigned_var() -[ 812s] Executing Test_legacy() -[ 812s] Executing Test_legacy_errors() -[ 812s] Executing Test_legacy_lambda() -[ 812s] Executing Test_line_continuation_in_def() -[ 812s] Executing Test_line_continuation_in_lambda() -[ 812s] Executing Test_list_any_type_checked() -[ 812s] Executing Test_list_lambda() -[ 812s] Executing Test_local_function_shadows_global() -[ 812s] Executing Test_lua_heredoc() -[ 812s] Executing Test_lua_heredoc_fails() -[ 812s] Executing Test_missing_endfunc_enddef() -[ 813s] Executing Test_missing_return() -[ 813s] Executing Test_multiline() -[ 813s] Executing Test_multiline_not_vim9() -[ 813s] Executing Test_multiple_funcref() -[ 813s] Executing Test_nested_closure() -[ 813s] Executing Test_nested_closure_fails() -[ 813s] Executing Test_nested_closure_funcref() -[ 813s] Executing Test_nested_closure_in_dict() -[ 813s] Executing Test_nested_closure_used() -[ 813s] Executing Test_nested_closure_using_argument() -[ 813s] Executing Test_nested_def_list() -[ 813s] Executing Test_nested_function() -[ 813s] Executing Test_nested_function_fails() -[ 813s] Executing Test_nested_function_with_args_split() -[ 813s] Executing Test_nested_function_with_nextcmd() -[ 813s] Executing Test_nested_global_function() -[ 814s] Executing Test_nested_inline_lambda() -[ 814s] Executing Test_nested_lambda() -[ 814s] Executing Test_nested_lambda_in_closure() -[ 814s] Executing Test_not_nested_function() -[ 814s] Executing Test_null_default_argument() -[ 814s] Executing Test_null_return() -[ 814s] Executing Test_numbered_function_reference() -[ 814s] Executing Test_opfunc() -[ 814s] Executing Test_opfunc_error() -[ 814s] Executing Test_partial_call() -[ 814s] Executing Test_partial_call_fails() -[ 814s] Executing Test_partial_double_nested() -[ 814s] Executing Test_partial_null_function() -[ 814s] Executing Test_pass_legacy_lambda_to_def_func() -[ 814s] Executing Test_perl_heredoc_nested() -[ 814s] Executing Test_python3_command() -[ 814s] Executing Test_python3_heredoc() -[ 814s] Executing Test_recursive_call() -[ 814s] Executing Test_redef_failure() -[ 814s] Executing Test_repeat_return_type() -[ 814s] Executing Test_reset_did_emsg() -[ 814s] Executing Test_restore_modifiers() -[ 814s] Executing Test_return_any_two_types() -[ 814s] Executing Test_return_bool() -[ 814s] Executing Test_return_invalid() -[ 815s] Executing Test_return_list_any() -[ 815s] Executing Test_return_nothing() -[ 815s] Executing Test_return_something() -[ 815s] Executing Test_return_type_wrong() -[ 816s] Executing Test_script_local_other_script() -[ 816s] Executing Test_script_var_in_lambda() -[ 816s] Executing Test_set_opfunc_to_global_function() -[ 816s] Executing Test_set_opfunc_to_lambda() -[ 816s] Executing Test_silent_echo() -[ 816s] Executing Test_skip_cmds_with_silent() -[ 816s] Executing Test_too_many_arguments() -[ 816s] Executing Test_triple_nested_closure() -[ 816s] Executing Test_unknown_function() -[ 816s] Executing Test_use_script_func_name_with_prefix() -[ 816s] Executing Test_using_var_as_arg() -[ 816s] Executing Test_vim9script_call() -[ 816s] Executing Test_vim9script_call_fail_const() -[ 816s] Executing Test_vim9script_call_fail_decl() -[ 816s] Executing Test_vim9script_call_fail_type() -[ 816s] Executing Test_vim9script_func() -[ 816s] Executing Test_white_space_after_comma() -[ 817s] Executing Test_white_space_before_comma() -[ 817s] Executing Test_white_space_before_paren() -[ 817s] Executing Test_wrong_function_name() -[ 817s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_import.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 817s] Executing Test_autoload_import_deleted() -[ 817s] Executing Test_autoload_import_relative() -[ 818s] Executing Test_autoload_import_relative_autoload_dir() -[ 818s] Executing Test_autoload_import_var() -[ 818s] Executing Test_autoload_mapping() -[ 818s] Executing Test_autoload_missing_function_name() -[ 818s] Executing Test_autoload_name_wrong() -[ 818s] Executing Test_cmdline_win() -[ 818s] Executing Test_export_fails() -[ 818s] Executing Test_export_shadows_global_function() -[ 818s] Executing Test_func_overrules_import_fails() -[ 819s] Executing Test_import_absolute() -[ 819s] Executing Test_import_autoload_fails() -[ 819s] Executing Test_import_autoload_not_exported() -[ 819s] Executing Test_import_autoload_override() -[ 820s] Executing Test_import_autoload_postponed() -[ 820s] Executing Test_import_compile_error() -[ 820s] Executing Test_import_duplicate_function() -[ 820s] Executing Test_import_export_expr_map() -[ 820s] Executing Test_import_fails() -[ 822s] Executing Test_import_fails_without_script() -[ 822s] Executing Test_import_funcref() -[ 822s] Executing Test_import_gone_when_sourced_twice() -[ 822s] Executing Test_import_in_charconvert() -[ 822s] Executing Test_import_in_diffexpr() -[ 822s] Executing Test_import_in_filetype() -[ 822s] Executing Test_import_in_formatexpr() -[ 823s] Executing Test_import_in_includeexpr() -[ 823s] Executing Test_import_in_indentexpr() -[ 823s] Executing Test_import_in_patchexpr() -[ 823s] Executing Test_import_in_printexpr() -[ 823s] Executing Test_import_in_spellsuggest_expr() -[ 823s] Executing Test_import_rtp() -[ 823s] Executing Test_import_very_long_name() -[ 823s] Executing Test_import_vim9_from_legacy() -[ 823s] Executing Test_script_reload_change_type() -[ 824s] Executing Test_script_reload_from_function() -[ 824s] Executing Test_set_opfunc_to_autoload_func_directly() -[ 824s] Executing Test_source_vim9_from_legacy() -[ 824s] Executing Test_use_autoload_import_in_fold_expression() -[ 824s] Executing Test_use_autoload_import_in_insert_completion() -[ 824s] Executing Test_use_autoload_import_in_mapping() -[ 824s] Executing Test_use_autoload_import_partial_in_opfunc() -[ 824s] Executing Test_use_import_in_command_completion() -[ 824s] Executing Test_use_import_in_mapping() -[ 825s] Executing Test_use_import_with_funcref_in_command_completion() -[ 825s] Executing Test_use_relative_autoload_import_in_mapping() -[ 825s] Executing Test_vim9_aucmd_autoload() -[ 825s] Executing Test_vim9_autoload_case_sensitive() -[ 825s] Executing Test_vim9_autoload_disass() -[ 825s] Executing Test_vim9_autoload_error() -[ 825s] Executing Test_vim9_autoload_full_name() -[ 825s] Executing Test_vim9_funcref() -[ 825s] Executing Test_vim9_funcref_other_script() -[ 825s] Executing Test_vim9_import_export() -[ 827s] Executing Test_vim9_reload_import() -[ 827s] Executing Test_vim9_reload_noclear() -[ 827s] Executing Test_vim9_reload_noclear_error() -[ 827s] Executing Test_vim9script_autoload() -[ 827s] Executing Test_vim9script_autoload_call() -[ 827s] Executing Test_vim9script_autoload_duplicate() -[ 827s] Executing Test_vim9script_autoload_fails() -[ 827s] Executing Test_vim9script_noclear_autoload() -[ 828s] Executing Test_vim_reload_noclear_arg_count() -[ 828s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vim9_script.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 828s] Executing Test_abort_after_error() -[ 828s] Executing Test_ambigous_command_error() -[ 828s] Executing Test_autocommand_block() -[ 828s] Executing Test_automatic_line_continuation() -[ 828s] Executing Test_block() -[ 828s] Executing Test_block_failure() -[ 828s] Executing Test_block_local_vars() -[ 828s] Executing Test_block_local_vars_with_func() -[ 828s] Executing Test_break_in_try_in_for() -[ 828s] Executing Test_catch_exception_in_callback() -[ 828s] Executing Test_cexpr_vimscript() -[ 828s] Executing Test_cnext_works_in_catch() -[ 829s] Executing Test_command_block() -[ 829s] Executing Test_const() -[ 829s] Executing Test_const_bang() -[ 829s] Executing Test_continue_in_try_in_while() -[ 829s] Executing Test_convert_emsg_to_exception() -[ 829s] Executing Test_debug_running_out_of_lines() -[ 829s] Executing Test_debug_with_lambda() -[ 829s] Executing Test_declare_script_var_in_func() -[ 829s] Executing Test_define_func_at_command_line() -[ 829s] Executing Test_delfunction() -[ 829s] Executing Test_echo_cmd() -[ 829s] Executing Test_echo_uninit_variables() -[ 829s] Executing Test_echoconsole_cmd() -[ 829s] Executing Test_echoerr_cmd() -[ 829s] Executing Test_echoerr_cmd_vimscript() -[ 829s] Executing Test_echomsg_cmd() -[ 829s] Executing Test_echomsg_cmd_vimscript() -[ 830s] Executing Test_error_in_autoload_script() -[ 830s] Executing Test_error_in_catch() -[ 830s] Executing Test_error_in_nested_function() -[ 830s] Executing Test_execute_cmd() -[ 830s] Executing Test_execute_cmd_vimscript() -[ 830s] Executing Test_execute_finish() -[ 830s] Executing Test_finish() -[ 830s] Executing Test_fixed_size_list() -[ 830s] Executing Test_for_loop() -[ 830s] Executing Test_for_loop_fails() -[ 832s] Executing Test_for_loop_script_var() -[ 832s] Executing Test_for_loop_unpack() -[ 832s] Executing Test_for_loop_with_closure() -[ 832s] Executing Test_for_loop_with_try_continue() -[ 832s] Executing Test_for_outside_of_function() -[ 832s] Executing Test_for_skipped_block() -[ 832s] Executing Test_forward_declaration() -[ 832s] Executing Test_func_redefine_error() -[ 832s] Executing Test_func_redefine_fails() -[ 832s] Executing Test_function_shadows_script_var() -[ 833s] Executing Test_if_const_expr() -[ 833s] Executing Test_if_const_expr_fails() -[ 833s] Executing Test_if_else_func_using_var() -[ 833s] Executing Test_if_elseif_else() -[ 833s] Executing Test_if_elseif_else_fails() -[ 833s] Executing Test_interrupt_loop() -[ 833s] Executing Test_invalid_range() -[ 833s] Executing Test_invalid_sid() -[ 833s] Executing Test_invoke_normal_in_visual_mode() -[ 833s] Executing Test_lambda_split() -[ 833s] Executing Test_list_vimscript() -[ 833s] Executing Test_lock_script_var() -[ 833s] Executing Test_mapping_line_number() -[ 833s] Executing Test_minimal_command_name_length() -[ 836s] Executing Test_misplaced_type() -[ 836s] Executing Test_nested_if() -[ 836s] Executing Test_no_insert_xit() -[ 837s] Executing Test_no_redraw_when_restoring_cpo() -[ 837s] Executing Test_no_unknown_error_after_error() -[ 837s] Executing Test_nocatch_return_in_try() -[ 837s] Executing Test_nocatch_throw_silenced() -[ 837s] Executing Test_option_modifier() -[ 838s] Executing Test_option_set() -[ 838s] Executing Test_profile_with_lambda() -[ 838s] Executing Test_range_no_colon() -[ 839s] Executing Test_range_only() -[ 839s] Executing Test_reject_declaration() -[ 839s] Executing Test_restoring_cpo() -[ 840s] Executing Test_script_namespace() -[ 840s] Executing Test_script_var_gone_when_sourced_twice() -[ 840s] Executing Test_script_var_in_autocmd() -[ 840s] Executing Test_script_var_scope() -[ 840s] Executing Test_script_var_shadows_command() -[ 840s] Executing Test_script_var_shadows_function() -[ 840s] Executing Test_script_wrong_type() -[ 840s] Executing Test_skipped_redir() -[ 840s] Executing Test_statusline_syntax() -[ 841s] Executing Test_substitute_cmd() -[ 841s] Executing Test_throw_line_number() -[ 841s] Executing Test_throw_skipped() -[ 841s] Executing Test_throw_vimscript() -[ 841s] Executing Test_try_catch_fails() -[ 841s] Executing Test_try_catch_match() -[ 841s] Executing Test_try_catch_nested() -[ 841s] Executing Test_try_catch_skipped() -[ 841s] Executing Test_try_catch_throw() -[ 841s] Executing Test_try_catch_twice() -[ 841s] Executing Test_try_ends_in_return() -[ 841s] Executing Test_try_in_catch() -[ 841s] Executing Test_try_var_decl() -[ 841s] Executing Test_unset_any_variable() -[ 841s] Executing Test_unsupported_commands() -[ 842s] Executing Test_vim9_comment() -[ 845s] Executing Test_vim9_comment_gui() -[ 845s] Executing Test_vim9_comment_not_compiled() -[ 846s] Executing Test_vim9_copen() -[ 846s] Executing Test_vim9script_call_wrong_type() -[ 846s] Executing Test_vim9script_fails() -[ 846s] Executing Test_vim9script_feature() -[ 846s] Executing Test_vim9script_mix() -[ 846s] Executing Test_vim9script_not_global() -[ 846s] Executing Test_vim9script_reload_delfunc() -[ 847s] Executing Test_vim9script_reload_delvar() -[ 847s] Executing Test_while_loop() -[ 847s] Executing Test_while_loop_fails() -[ 847s] Executing Test_while_loop_in_script() -[ 847s] Executing Test_while_skipped_block() -[ 847s] Executing Test_white_space_after_command() -[ 848s] Executing Test_wrong_type() -[ 849s] Executing Test_xxx_echoerr_line_number() -[ 849s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_viminfo.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 849s] Executing Test_cmdline_history() -[ 849s] Executing Test_cmdline_history_order() -[ 849s] Executing Test_global_vars() -[ 849s] Executing Test_global_vars_with_circular_reference() -[ 849s] Executing Test_viminfo_bad_syntax() -[ 849s] Executing Test_viminfo_bad_syntax2() -[ 850s] Executing Test_viminfo_bufferlist() -[ 850s] Executing Test_viminfo_encoding() -[ 850s] Executing Test_viminfo_error() -[ 850s] Executing Test_viminfo_file_mark_tabclose() -[ 850s] Executing Test_viminfo_file_mark_unloaded_buf() -[ 850s] Executing Test_viminfo_file_mark_zero_time() -[ 850s] Executing Test_viminfo_file_marks() -[ 850s] Executing Test_viminfo_hlsearch() -[ 850s] Executing Test_viminfo_jumplist() -[ 850s] Executing Test_viminfo_large_register() -[ 850s] Executing Test_viminfo_last_exec_reg() -[ 850s] Executing Test_viminfo_last_spat_magic() -[ 850s] Executing Test_viminfo_last_spat_offset() -[ 850s] Executing Test_viminfo_last_spat_smartcase() -[ 850s] Executing Test_viminfo_lastsub() -[ 850s] Executing Test_viminfo_marks() -[ 850s] Executing Test_viminfo_merge_file_marks() -[ 850s] Executing Test_viminfo_merge_old_filemarks() -[ 850s] Executing Test_viminfo_merge_old_jumplist() -[ 850s] Executing Test_viminfo_oldfiles() -[ 850s] Executing Test_viminfo_oldfiles_newfile() -[ 850s] Executing Test_viminfo_option_error() -[ 850s] Executing Test_viminfo_perm() -[ 850s] Executing Test_viminfo_read_and_write() -[ 850s] Executing Test_viminfo_registers() -[ 851s] Executing Test_viminfo_registers_old() -[ 851s] Executing Test_viminfo_removable_media() -[ 851s] Executing Test_viminfo_with_Ctrl_V() -[ 851s] Executing Test_viminfofile_none() -[ 851s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_vimscript.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 851s] Executing Test_Multi_Else() -[ 851s] Executing Test_arg_abort() -[ 851s] Executing Test_autocmd_error_io_exception() -[ 851s] Executing Test_autocmd_exception() -[ 852s] Executing Test_bitwise_functions() -[ 852s] Executing Test_brace_expr_error() -[ 852s] Executing Test_braces_skipped() -[ 852s] Executing Test_catch_after_throw() -[ 853s] Executing Test_catch_err_exception_1() -[ 853s] Executing Test_catch_err_exception_2() -[ 853s] Executing Test_catch_err_exception_3() -[ 853s] Executing Test_catch_err_exception_4() -[ 853s] Executing Test_catch_err_exception_5() -[ 853s] Executing Test_catch_err_exception_6() -[ 853s] Executing Test_catch_err_exception_7() -[ 853s] Executing Test_catch_intr_exception() -[ 853s] Executing Test_catch_pattern_error() -[ 853s] Executing Test_compound_assignment_operators() -[ 853s] Executing Test_curlies() -[ 853s] Executing Test_deep_nest() -[ 854s] Executing Test_deeply_nested_source() -[ 854s] Executing Test_defining_functions() -[ 854s] Executing Test_discard_exception_after_error_1() -[ 854s] Executing Test_discard_exception_after_error_2() -[ 854s] Executing Test_echo_and_string() -[ 854s] Executing Test_endtry_after_throw() -[ 854s] Executing Test_endwhile_function() -[ 854s] Executing Test_endwhile_script() -[ 855s] Executing Test_error_after_try_1() -[ 855s] Executing Test_error_after_try_2() -[ 855s] Executing Test_error_after_try_3() -[ 856s] Executing Test_error_after_try_4() -[ 856s] Executing Test_error_after_try_5() -[ 856s] Executing Test_error_after_try_6() -[ 857s] Executing Test_error_after_try_7() -[ 857s] Executing Test_error_in_function() -[ 857s] Executing Test_error_in_script() -[ 857s] Executing Test_exception_after_error_1() -[ 857s] Executing Test_exception_after_error_2() -[ 857s] Executing Test_exception_after_error_3() -[ 857s] Executing Test_exception_after_error_4() -[ 857s] Executing Test_exception_after_error_5() -[ 857s] Executing Test_exception_info_for_error() -[ 857s] Executing Test_exception_info_on_discard() -[ 858s] Executing Test_expr_eval_error() -[ 858s] Executing Test_expr_eval_error_msg() -[ 859s] Executing Test_expr_parsing() -[ 859s] Executing Test_finally_after_continue() -[ 859s] Executing Test_finally_after_error() -[ 859s] Executing Test_finally_after_error_1() -[ 860s] Executing Test_finally_after_error_2() -[ 860s] Executing Test_finally_after_error_in_func() -[ 860s] Executing Test_finally_after_finish() -[ 860s] Executing Test_finally_after_interrupt() -[ 861s] Executing Test_finally_after_intr() -[ 861s] Executing Test_finally_after_loop_ctrl_statement() -[ 861s] Executing Test_finally_after_return() -[ 861s] Executing Test_finally_after_throw() -[ 861s] Executing Test_finally_after_throw_2() -[ 862s] Executing Test_finally_discard_by_break() -[ 862s] Executing Test_finally_discard_by_error() -[ 862s] Executing Test_finally_discard_by_finish() -[ 862s] Executing Test_finally_discard_by_return() -[ 863s] Executing Test_finally_discard_by_throw() -[ 863s] Executing Test_finally_discarded_by_interrupt() -[ 864s] Executing Test_finally_on_interrupt() -[ 864s] Executing Test_finish() -[ 864s] Executing Test_float_conversion_errors() -[ 864s] Executing Test_for_over_string() -[ 864s] Executing Test_func_abort() -[ 864s] Executing Test_funcref_with_condexpr() -[ 864s] Executing Test_if_bar_fail() -[ 864s] Executing Test_if_fail() -[ 864s] Executing Test_if_syntax_error() -[ 865s] Executing Test_if_while() -[ 865s] Executing Test_ignore_catch_after_error_1() -[ 865s] Executing Test_ignore_catch_after_error_2() -[ 865s] Executing Test_ignore_catch_after_intr_1() -[ 865s] Executing Test_ignore_catch_after_intr_2() -[ 865s] Executing Test_interrupt_func_try() -[ 866s] Executing Test_interrupt_func_while_if() -[ 866s] Executing Test_interrupt_try() -[ 866s] Executing Test_interrupt_while_if() -[ 866s] Executing Test_invalid_function_names() -[ 866s] Executing Test_missing_end() -[ 866s] Executing Test_nested_cont_break_error() -[ 866s] Executing Test_nested_endtry_error() -[ 867s] Executing Test_nested_if_else_errors() -[ 867s] Executing Test_nested_while_error() -[ 868s] Executing Test_num64() -[ 868s] Executing Test_refcount() -[ 868s] Executing Test_rethrow_exception_1() -[ 868s] Executing Test_rethrow_exception_2() -[ 868s] Executing Test_rethrow_exception_3() -[ 868s] Executing Test_return() -[ 868s] Executing Test_script_emty_line_continuation() -[ 868s] Executing Test_script_expand_sfile() -[ 868s] Executing Test_script_lines() -[ 868s] Executing Test_silent_exception() -[ 868s] Executing Test_skip() -[ 868s] Executing Test_stop_range_on_error() -[ 868s] Executing Test_substring_var() -[ 868s] Executing Test_ternary_expression() -[ 868s] Executing Test_throw_across_call_cmd() -[ 868s] Executing Test_throw_across_call_expr() -[ 868s] Executing Test_throw_across_script() -[ 869s] Executing Test_throw_exception_across_funcs() -[ 869s] Executing Test_throw_multi_error() -[ 869s] Executing Test_try_error_abort_1() -[ 869s] Executing Test_try_error_abort_2() -[ 869s] Executing Test_try_error_abort_3() -[ 869s] Executing Test_try_error_abort_4() -[ 869s] Executing Test_try_error_abort_5() -[ 870s] Executing Test_try_error_abort_6() -[ 870s] Executing Test_type() -[ 870s] Executing Test_typed_script_var() -[ 870s] Executing Test_typename() -[ 870s] Executing Test_uncaught_exception_1() -[ 870s] Executing Test_uncaught_exception_2() -[ 871s] Executing Test_uncaught_exception_3() -[ 871s] Executing Test_uncaught_exception_4() -[ 871s] Executing Test_uncaught_exception_5() -[ 872s] Executing Test_uncaught_exception_6() -[ 872s] Executing Test_uncaught_exception_7() -[ 872s] Executing Test_unlet_env() -[ 872s] Executing Test_unmatched_if_in_while() -[ 872s] Executing Test_user_command_with_bang() -[ 872s] Executing Test_user_exception_info() -[ 873s] Executing Test_while_fail() -[ 873s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_virtualedit.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 873s] Executing Test_delete_break_tab() -[ 873s] Executing Test_delete_past_eol() -[ 873s] Executing Test_edit_CTRL_G() -[ 873s] Executing Test_edit_change() -[ 873s] Executing Test_global_local_virtualedit() -[ 873s] Executing Test_ins_copy_char() -[ 873s] Executing Test_paste_end_of_line() -[ 873s] Executing Test_paste_in_tab() -[ 873s] Executing Test_replace_after_eol() -[ 873s] Executing Test_replace_end_of_line() -[ 873s] Executing Test_replace_on_tab() -[ 873s] Executing Test_ve_b_past_eol() -[ 873s] Executing Test_ve_backspace() -[ 873s] Executing Test_ve_completion() -[ 873s] Executing Test_ve_del_ctrl_chars() -[ 873s] Executing Test_ve_del_to_eol() -[ 873s] Executing Test_ve_ins_del() -[ 873s] Executing Test_virtualedit_replace_after_tab() -[ 873s] Executing Test_yank_block() -[ 873s] Executing Test_yank_in_tab() -[ 873s] Executing Test_yank_move_change() -[ 873s] Executing Test_yank_paste_small_del_reg() -[ 873s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_visual.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 873s] Executing Test_Visual_Block() -[ 873s] Executing Test_Visual_ctrl_o() -[ 873s] Executing Test_Visual_inner_quote() -[ 873s] Executing Test_Visual_paragraph_textobject() -[ 873s] Executing Test_Visual_sentence_textobject() -[ 873s] Executing Test_Visual_vapo() -[ 873s] Executing Test_Visual_word_textobject() -[ 873s] Executing Test_block_insert_replace_tabs() -[ 873s] Executing Test_block_shift_multibyte() -[ 873s] Executing Test_block_shift_overflow() -[ 873s] Executing Test_block_shift_tab() -[ 873s] Executing Test_blockwise_visual() -[ 873s] Executing Test_blockwise_visual_o_O() -[ 873s] Executing Test_characterwise_visual_mode() -[ 873s] Executing Test_characterwise_visual_with_count() -[ 873s] Executing Test_curswant_not_changed() -[ 873s] Executing Test_dotregister_paste() -[ 873s] Executing Test_exclusive_selection() -[ 873s] Executing Test_gv_with_exclusive_selection() -[ 873s] Executing Test_linewise_visual_with_count() -[ 873s] Executing Test_op_pend_mode_abort() -[ 873s] Executing Test_star_register() -[ 873s] Executing Test_ve_block_curpos() -[ 873s] Executing Test_virtual_replace() -[ 873s] Executing Test_virtual_replace2() -[ 873s] Executing Test_virtualedit_visual_block() -[ 873s] Executing Test_visual_area_adjusted_when_hiding() -[ 873s] Executing Test_visual_block_append_invalid_char() -[ 873s] Executing Test_visual_block_create() -[ 873s] Executing Test_visual_block_ctrl_w_f() -[ 873s] Executing Test_visual_block_insert_cursor_keys() -[ 873s] Executing Test_visual_block_insert_round_off() -[ 873s] Executing Test_visual_block_mode() -[ 873s] Executing Test_visual_block_put() -[ 873s] Executing Test_visual_block_with_substitute() -[ 873s] Executing Test_visual_block_with_virtualedit() -[ 874s] Executing Test_visual_block_yank_zy() -[ 874s] Executing Test_visual_change_case() -[ 874s] Executing Test_visual_ex_copy_line() -[ 874s] Executing Test_visual_exchange_windows() -[ 874s] Executing Test_visual_force_motion_feedkeys() -[ 874s] Executing Test_visual_inner_block() -[ 874s] Executing Test_visual_mode_maps() -[ 874s] Executing Test_visual_mode_op() -[ 874s] Executing Test_visual_mode_put() -[ 874s] Executing Test_visual_mode_reset() -[ 874s] Executing Test_visual_oper_pending_mode_maps() -[ 874s] Executing Test_visual_paste() -[ 874s] Executing Test_visual_paste_clipboard() -[ 874s] Executing Test_visual_put_blockedit_zy_and_zp() -[ 874s] Executing Test_visual_put_in_block() -[ 874s] Executing Test_visual_put_in_block_using_zp() -[ 874s] Executing Test_visual_put_in_block_using_zy_and_zp() -[ 874s] Executing Test_visual_replace_crnl() -[ 874s] Executing Test_visual_reselect_with_count() -[ 874s] Executing Test_visual_undo_deletes_last_line() -[ 874s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_winbar.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 874s] Executing Test_add_remove_menu() -[ 874s] Executing Test_click_in_other_winbar() -[ 874s] Executing Test_click_in_winbar() -[ 874s] Executing Test_drag_statusline_with_winbar() -[ 874s] Executing Test_redraw_after_scroll() -[ 874s] Executing Test_winbar_not_visible() -[ 874s] Executing Test_winbar_not_visible_custom_statusline() -[ 874s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_winbuf_close.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 874s] Executing Test_tabwin_close() -[ 874s] Executing Test_winbuf_close() -[ 875s] Executing Test_window_close_splitright_noequalalways() -[ 875s] Executing Test_winfixheight_non_leaf_frame() -[ 875s] Executing Test_winfixheight_on_close() -[ 875s] Executing Test_winfixwidth_non_leaf_frame() -[ 875s] Executing Test_winfixwidth_on_close() -[ 875s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_window_cmd.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 875s] Executing Test_access_freed_mem() -[ 875s] Executing Test_close_dest_window() -[ 875s] Executing Test_equalalways_on_close() -[ 875s] Executing Test_insert_cleared_on_switch_to_term() -[ 875s] Executing Test_next_split_all() -[ 875s] Executing Test_relative_cursor_position_after_move_and_resize() -[ 875s] Executing Test_relative_cursor_position_after_resize() -[ 875s] Executing Test_relative_cursor_position_in_one_line_window() -[ 875s] Executing Test_relative_cursor_second_line_after_resize() -[ 875s] Executing Test_split_cmd() -[ 875s] Executing Test_split_cmds_with_no_room() -[ 875s] Executing Test_split_noscroll() -[ 875s] Executing Test_visual_cleared_after_window_split() -[ 875s] Executing Test_win_move_separator() -[ 875s] Executing Test_win_move_statusline() -[ 875s] Executing Test_win_screenpos() -[ 875s] Executing Test_win_splitmove() -[ 875s] Executing Test_wincmd_errors() -[ 875s] Executing Test_wincmd_fails() -[ 875s] Executing Test_window_alloc_failure() -[ 875s] Executing Test_window_cmd_cmdwin_with_vsp() -[ 875s] Executing Test_window_cmd_ls0_with_split() -[ 875s] Executing Test_window_cmd_wincmd_gf() -[ 875s] Executing Test_window_colon_command() -[ 875s] Executing Test_window_contents() -[ 875s] Executing Test_window_exchange() -[ 875s] Executing Test_window_goto_neightbor() -[ 875s] Executing Test_window_height() -[ 875s] Executing Test_window_horizontal_split() -[ 875s] Executing Test_window_jump() -[ 875s] Executing Test_window_jump_tag() -[ 875s] Executing Test_window_minimal_size() -[ 877s] Executing Test_window_newtab() -[ 877s] Executing Test_window_only() -[ 877s] Executing Test_window_prevwin() -[ 879s] Executing Test_window_quit() -[ 879s] Executing Test_window_resize() -[ 879s] Executing Test_window_rotate() -[ 879s] Executing Test_window_split_edit_alternate() -[ 879s] Executing Test_window_split_edit_bufnr() -[ 879s] Executing Test_window_split_no_room() -[ 879s] Executing Test_window_vertical_split() -[ 879s] Executing Test_window_width() -[ 879s] Executing Test_window_width_adjust() -[ 879s] Executing Test_winnr() -[ 879s] Executing Test_winpos_errors() -[ 879s] Executing Test_winrestcmd() -[ 879s] Executing Test_winrestview() -[ 879s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_window_id.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 879s] Executing Test_win_getid() -[ 879s] Executing Test_win_getid_curtab() -[ 879s] Executing Test_winlayout() -[ 879s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_windows_home.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 879s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_wordcount.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 879s] Executing Test_wordcount() -[ 880s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_writefile.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 880s] Executing Test_backupcopy() -[ 882s] Executing Test_nowrite_quit_split() -[ 882s] Executing Test_patchmode() -[ 882s] Executing Test_read_write_bin() -[ 882s] Executing Test_readwrite_file_with_bom() -[ 884s] Executing Test_saveas() -[ 884s] Executing Test_wq_quitpre_autocommand() -[ 884s] Executing Test_write_acwrite_error() -[ 884s] Executing Test_write_autocmd_add_remove_lines() -[ 885s] Executing Test_write_autocmd_unloadbuf_lockmark() -[ 885s] Executing Test_write_backup_symlink() -[ 885s] Executing Test_write_binary_file() -[ 885s] Executing Test_write_errors() -[ 885s] Executing Test_write_file_encoding() -[ 885s] Executing Test_write_file_mtime() -[ 887s] Executing Test_write_invalid_encoding() -[ 887s] Executing Test_write_pipe_to_cmd() -[ 887s] Executing Test_write_quit_split() -[ 887s] Executing Test_write_readonly() -[ 887s] Executing Test_write_readonly_dir() -[ 887s] Executing Test_write_utf16() -[ 887s] Executing Test_writefile() -[ 887s] Executing Test_writefile_autowrite() -[ 887s] Executing Test_writefile_autowrite_nowrite() -[ 887s] Executing Test_writefile_fails_conversion() -[ 888s] Executing Test_writefile_fails_conversion2() -[ 888s] Executing Test_writefile_fails_gently() -[ 888s] Executing Test_writefile_ignore_regexp_error() -[ 888s] Executing Test_writefile_sync_arg() -[ 888s] Executing Test_writefile_sync_dev_stdout() -[ 889s] XXD=../xxd/xxd; export XXD; VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_xxd.vim -[ 889s] [?1049h[>4;2m[?1h=[?2004h[?12h[?12l[?2004l[>4;m[?2004h[>4;2m[?25l"test_xxd.vim" 361 lines, 12908 bytesExecuting Test_xxd() -[ 889s] "XXDfile" [New] 30L, 81B written [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l30 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l30 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 889s] [?25l3 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 890s] [?25l4 lines filtered "../../runtime/doc/xxd.1" 389L, 10572B "Xxd.1" [New] 389L, 10572B written [?25h[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?25lXDfile" [New] 30L, 81B written [?25h[?2004l[>4;m[?2004h[>4;2m -[ 890s] [?25l30 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l4 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] [?25l6 lines filtered [?25h[?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_bit_dump() -[ 891s] -[ 891s] [?25l6 lines filtered -[ 891s] 2 buffers wiped out [?25h[?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_c0_is_def_cols() -[ 891s] [?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_ignore_garbage() -[ 891s] [?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_max_cols() -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_min_cols() -[ 891s]  -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_patch() -[ 891s]  -[ 891s] shell returned 1 -[ 891s] [?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004h[?1004l[?2004l[?1l>[>4;m[?1049l[?1049h[>4;2m[?1h=[?2004h[?1004hExecuting Test_xxd_plain_one_line() -[ 891s] [?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2m[?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_usage() -[ 891s] [?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m -[ 891s] shell returned 1 -[ 891s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2mExecuting Test_xxd_version() -[ 891s]  -[ 891s] shell returned 1 -[ 892s] [?25l23 more lines [?25h[?2004l[>4;m[?2004h[>4;2m[?25l"test_xxd.res" [New][New] 0L, 0B written -[ 892s] ^[[1mExecuted 10 testsin 3.047884 seconds^[[m "messages" 5877L, 403988B5890L, 404829B written[?2004l[>4;m -[ 892s] [?1004l[?2004l[?1l>[?25h[>4;m[?1049lVIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_alot_latin.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 892s] Executing Test_backref() -[ 892s] Executing Test_column_success_failure() -[ 892s] Executing Test_eow_with_optional() -[ 892s] Executing Test_equivalence_re1() -[ 892s] Executing Test_equivalence_re2() -[ 892s] Executing Test_get_equi_class() -[ 892s] Executing Test_lookbehind_across_line() -[ 892s] Executing Test_matching_curpos() -[ 892s] Executing Test_matching_marks() -[ 892s] Executing Test_matching_pos() -[ 892s] Executing Test_matching_visual_area() -[ 892s] Executing Test_matchstr_with_ze() -[ 892s] Executing Test_multi_failure() -[ 892s] Executing Test_nested_backrefs() -[ 892s] Executing Test_out_of_memory() -[ 892s] Executing Test_pattern_compile_speed() -[ 892s] Executing Test_range_with_newline() -[ 892s] Executing Test_recursive_addstate() -[ 892s] Executing Test_recursive_substitute() -[ 892s] Executing Test_recursive_substitute_expr() -[ 892s] Executing Test_regexp_error() -[ 892s] Executing Test_regexp_last_subst_string() -[ 892s] Executing Test_regexp_multiline_pat() -[ 892s] Executing Test_regexp_single_line_pat() -[ 893s] Executing Test_rex_init() -[ 893s] Executing Test_start_end_of_buffer_match() -[ 893s] Executing Test_using_invalid_visual_position() -[ 893s] Executing Test_using_mark_position() -[ 893s] Executing Test_using_two_engines_pattern() -[ 893s] Executing Test_using_visual_position() -[ 893s] Executing Test_ze_before_zs() -[ 893s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_alot_utf8.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 893s] Executing Test_ambiwidth() -[ 893s] Executing Test_classes_re1() -[ 893s] Executing Test_classes_re2() -[ 893s] Executing Test_comparisons() -[ 893s] Executing Test_customlist_completion() -[ 893s] Executing Test_detect_ambiwidth() -[ 893s] Executing Test_equivalence_re1() -[ 894s] Executing Test_equivalence_re2() -[ 894s] Executing Test_gap() -[ 894s] Executing Test_getvcol() -[ 894s] Executing Test_large_class() -[ 894s] Executing Test_list2str_str2list_latin1() -[ 894s] Executing Test_list2str_str2list_utf8() -[ 894s] Executing Test_match_char_class_upper() -[ 894s] Executing Test_match_illegal_byte() -[ 894s] Executing Test_match_invalid_byte() -[ 894s] Executing Test_match_start_of_line_combining() -[ 894s] Executing Test_match_too_complicated() -[ 894s] Executing Test_matchstr_multibyte() -[ 894s] Executing Test_mksession_utf8() -[ 894s] Executing Test_multibyte_chars() -[ 894s] Executing Test_optmatch_toolong() -[ 894s] Executing Test_print_overlong() -[ 894s] Executing Test_read_fifo_utf8() -[ 895s] Executing Test_read_stdin_utf8() -[ 895s] -[ 895s] Executing Test_recording_with_select_mode_utf8() -[ 895s] Executing Test_regexp_ignore_case() -[ 895s] Executing Test_regexp_multibyte_magic() -[ 895s] Executing Test_reversed_range() -[ 895s] Executing Test_screenchar_utf8() -[ 895s] Executing Test_search_cmds() -[ 895s] Executing Test_search_with_end_offset() -[ 895s] Executing Test_setcellwidths() -[ 895s] Executing Test_source_ctrl_v() -[ 895s] Executing Test_source_latin() -[ 895s] Executing Test_source_utf8() -[ 895s] Executing Test_split_multibyte_to_bytes() -[ 895s] Executing Test_strcharpart() -[ 895s] Executing Test_strchars() -[ 895s] Executing Test_strgetchar() -[ 895s] Executing Test_visual_block_insert() -[ 895s] Executing Test_zz_recording_with_select_mode_utf8_gui() -[ 895s] VIMRUNTIME=../../runtime ../vim -f -u unix.vim --gui-dialog-file guidialog -U NONE --noplugin --not-a-term -S runtest.vim test_alot.vim --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 895s] Executing Test_Ex_append() -[ 895s] Executing Test_Ex_echo_backslash() -[ 895s] Executing Test_Ex_emptybuf() -[ 895s] Executing Test_Ex_escape_enter() -[ 895s] Executing Test_Ex_global() -[ 895s] Executing Test_Ex_substitute() -[ 895s] Executing Test_backup() -[ 896s] Executing Test_backup2() -[ 896s] Executing Test_backup2_backupcopy() -[ 896s] Executing Test_backup_backupskip() -[ 896s] Executing Test_behave() -[ 896s] Executing Test_behave_completion() -[ 896s] Executing Test_behave_error() -[ 896s] Executing Test_caught_error_in_tabline() -[ 896s] Executing Test_compiler() -[ 896s] -[ 896s] -[ 896s] Press ENTER or type command to continue -[ 896s] -[ 896s] Press ENTER or type command to continueExecuting Test_compiler_commandline() -[ 896s] Executing Test_compiler_completion() -[ 896s] Executing Test_compiler_error() -[ 896s] Executing Test_compiler_without_arg() -[ 896s] Executing Test_empty_command_visual_mode() -[ 896s] Executing Test_ex_equal() -[ 896s] Executing Test_ex_mode() -[ 897s] Executing Test_ex_mode_count_overflow() -[ 897s] Executing Test_ex_mode_errors() -[ 897s] Executing Test_ex_mode_large_indent() -[ 897s] Executing Test_ex_mode_with_global() -[ 897s] Executing Test_ex_shift_errors() -[ 897s] Executing Test_ex_shift_left() -[ 897s] Executing Test_ex_shift_right() -[ 897s] Executing Test_ex_shift_rightleft() -[ 897s] Executing Test_ex_undo() -[ 897s] Executing Test_existing() -[ 897s] Executing Test_expand() -[ 897s] Executing Test_expand_SID() -[ 897s] Executing Test_expand_filename_multicmd() -[ 897s] Executing Test_expand_luadll() -[ 897s] Executing Test_expand_perldll() -[ 897s] Executing Test_expand_pythonthreedll() -[ 897s] Executing Test_expand_rubydll() -[ 897s] Executing Test_expand_script_source() -[ 898s] Executing Test_expand_sfile_and_stack() -[ 898s] Executing Test_expand_sflnum() -[ 898s] Executing Test_expand_slnum() -[ 898s] Executing Test_expand_tilde_filename() -[ 898s] Executing Test_expand_wildignore() -[ 898s] Executing Test_expandcmd() -[ 898s] Executing Test_expandcmd_shell_nonomatch() -[ 898s] Executing Test_feedkeys_escape_special() -[ 898s] Executing Test_feedkeys_with_abbreviation() -[ 898s] Executing Test_feedkeys_x_with_empty_string() -[ 898s] Executing Test_file_perm() -[ 898s] Executing Test_fnamemodify() -[ 898s] Executing Test_fnamemodify_er() -[ 898s] Executing Test_fnamemodify_fail() -[ 898s] Executing Test_ga_command() -[ 898s] Executing Test_glob2regpat_invalid() -[ 898s] Executing Test_glob2regpat_valid() -[ 898s] Executing Test_global_error() -[ 898s] Executing Test_global_local_lispwords() -[ 898s] Executing Test_global_newline() -[ 898s] Executing Test_global_print() -[ 898s] Executing Test_global_set_clipboard() -[ 898s] Executing Test_gp_with_count_leaves_cursor_at_end() -[ 898s] Executing Test_lisp_indent() -[ 898s] Executing Test_lisp_indent_works() -[ 898s] Executing Test_mouse_click_in_tab() -[ 898s] Executing Test_move() -[ 898s] Executing Test_multibyte_op_end_mark() -[ 898s] Executing Test_nested_global() -[ 898s] Executing Test_non_existing_backupdir() -[ 898s] Executing Test_not_existing() -[ 898s] Executing Test_open_command() -[ 898s] Executing Test_open_command_flush_line() -[ 898s] Executing Test_p_with_count_leaves_mark_at_end() -[ 898s] Executing Test_put_above_first_line() -[ 898s] Executing Test_put_block() -[ 898s] Executing Test_put_char_block() -[ 898s] Executing Test_put_char_block2() -[ 898s] Executing Test_put_empty_register() -[ 898s] Executing Test_put_expr() -[ 898s] Executing Test_put_fails_when_nomodifiable() -[ 898s] Executing Test_put_lines() -[ 898s] Executing Test_put_p_errmsg_nodup() -[ 898s] Executing Test_put_p_indent_visual() -[ 898s] Executing Test_put_visual_delete_all_lines() -[ 898s] Executing Test_put_visual_mode() -[ 898s] Executing Test_read_only() -[ 898s] Executing Test_redrawtabline() -[ 898s] Executing Test_reltime() -[ 898s] Executing Test_reset_scroll() -[ 898s] Executing Test_searchpos() -[ 898s] Executing Test_set_add() -[ 898s] Executing Test_set_backslash() -[ 898s] Executing Test_set_no_arg() -[ 898s] Executing Test_set_tagcase() -[ 898s] Executing Test_set_termcap() -[ 898s] Executing Test_sha256() -[ 898s] Executing Test_source_sfile() -[ 898s] Executing Test_tabline_20_format_items_no_overrun() -[ 898s] Executing Test_tabline_empty_group() -[ 898s] Executing Test_tabline_flags() -[ 898s] Executing Test_tabline_will_be_disabled_with_error() -[ 898s] Executing Test_tagcase() -[ 898s] Executing Test_tagfunc() -[ 899s] Executing Test_tagfunc_callback() -[ 899s] Executing Test_tagfunc_closes_window() -[ 899s] Executing Test_tagfunc_settagstack() -[ 899s] Executing Test_tagfunc_wipes_buffer() -[ 899s] Executing Test_unlet_complete() -[ 899s] Executing Test_unlet_env() -[ 899s] Executing Test_unlet_fails() -[ 899s] Executing Test_version() -[ 899s] Executing Test_version_redirect() -[ 899s] Executing Test_very_large_count() -[ 899s] Executing Test_very_large_count_64bit() -[ 899s] Executing Test_very_large_count_block() -[ 899s] Executing Test_very_large_count_block_64bit() -[ 899s] Executing Test_with_directories() -[ 899s] Executing Test_with_tilde() -[ 899s] Executing Test_wnext() -[ 900s] Executing Test_wprevious() -[ 900s] Executing Test_wrong_delimiter() -[ 900s] Executing Test_yank_put_clipboard() -[ 900s] Executing Test_z() -[ 900s] Executing Test_z_bang() -[ 900s] Executing Test_z_negative_lnum() -[ 900s] Executing Test_z_overflow() -[ 900s] -[ 900s] -[ 900s] -[ 900s] From test_arabic.vim: -[ 900s] Executed Test_W17_arabic_requires_utf8() in 0.001515 seconds -[ 900s] Executed Test_arabic_chars_in_search_cmd() in 0.001173 seconds -[ 900s] Executed Test_arabic_input() in 0.002009 seconds -[ 900s] Executed Test_arabic_toggle() in 0.000672 seconds -[ 900s] Executed Test_arabic_toggle_keymap() in 0.001189 seconds -[ 900s] Executed Test_delcombine() in 0.001783 seconds -[ 900s] Executed Test_shape_combination_final() in 0.001249 seconds -[ 900s] Executed Test_shape_combination_isolated() in 0.001202 seconds -[ 900s] Executed Test_shape_final() in 0.006558 seconds -[ 900s] Executed Test_shape_initial() in 0.006511 seconds -[ 900s] Executed Test_shape_iso_to_medial() in 0.006554 seconds -[ 900s] Executed Test_shape_isolated() in 0.006401 seconds -[ 900s] Executed 12 tests in 0.118374 seconds -[ 900s] -[ 900s] From test_arglist.vim: -[ 900s] Executed Test_all_not_allowed_from_cmdwin() in 0.000827 seconds -[ 900s] Executed Test_arg_all_expand() in 0.094771 seconds -[ 900s] Executed Test_argadd() in 0.007426 seconds -[ 900s] Executed Test_argadd_empty_curbuf() in 0.084949 seconds -[ 900s] Executed Test_argc() in 0.000519 seconds -[ 900s] Executed Test_argdedupe() in 0.002046 seconds -[ 900s] Executed Test_argdelete() in 0.002016 seconds -[ 900s] Executed Test_argdelete_completion() in 0.000744 seconds -[ 900s] Executed Test_argdo() in 0.001365 seconds -[ 900s] Executed Test_argedit() in 0.002745 seconds -[ 900s] Executed Test_argidx() in 0.001533 seconds -[ 900s] Executed Test_arglist_autocmd() in 0.296476 seconds -[ 900s] Executed Test_arglistid() in 0.000748 seconds -[ 900s] Executed Test_argpos() in 0.002082 seconds -[ 900s] Executed Test_args_with_quote() in 0.000560 seconds -[ 900s] Executed Test_argument() in 0.005193 seconds -[ 900s] Executed Test_argv() in 0.001716 seconds -[ 900s] Executed Test_clear_arglist_in_all() in 0.002076 seconds -[ 900s] Executed Test_large_arg() in 0.000349 seconds -[ 900s] Executed Test_list_arguments() in 0.000793 seconds -[ 900s] Executed Test_quit_with_arglist() in 0.105307 seconds -[ 900s] Executed Test_zero_argadd() in 0.002418 seconds -[ 900s] Executed 22 tests in 0.679451 seconds -[ 900s] -[ 900s] From test_assert.vim: -[ 900s] Executed Test_assert_beeps() in 0.000490 seconds -[ 900s] Executed Test_assert_equal() in 0.001230 seconds -[ 900s] Executed Test_assert_equal_dict() in 0.000333 seconds -[ 900s] Executed Test_assert_equalfile() in 0.594195 seconds -[ 900s] Executed Test_assert_exception() in 0.000413 seconds -[ 900s] Executed Test_assert_fail_fails() in 0.000880 seconds -[ 900s] Executed Test_assert_fails_in_try_block() in 0.000288 seconds -[ 900s] Executed Test_assert_false() in 0.000262 seconds -[ 900s] Executed Test_assert_inrange() in 0.000416 seconds -[ 900s] Executed Test_assert_notequal() in 0.000244 seconds -[ 900s] Executed Test_assert_report() in 0.000244 seconds -[ 900s] Executed Test_assert_true() in 0.000278 seconds -[ 900s] Executed Test_assert_with_msg() in 0.000229 seconds -[ 900s] Executed Test_compare_fail() in 0.000354 seconds -[ 900s] Executed Test_match() in 0.000306 seconds -[ 900s] Executed Test_mouse_position() in 0.000737 seconds -[ 900s] Executed Test_notmatch() in 0.000277 seconds -[ 900s] Executed Test_override() in 0.000285 seconds -[ 900s] Executed Test_user_is_happy() in 0.300760 seconds -[ 900s] Executed Test_wrong_error_type() in 0.000266 seconds -[ 900s] Executed 20 tests in 0.964224 seconds -[ 900s] -[ 900s] From test_autochdir.vim: -[ 900s] Executed Test_acd_win_execute() in 0.000905 seconds -[ 900s] Executed Test_multibyte() in 0.000562 seconds -[ 900s] Executed Test_set_filename() in 0.012587 seconds -[ 900s] Executed Test_set_filename_other_window() in 0.001484 seconds -[ 900s] Executed Test_verbose_pwd() in 0.001616 seconds -[ 900s] Executed 5 tests in 0.033306 seconds -[ 900s] -[ 900s] From test_autocmd.vim: -[ 900s] Executed Test_Acmd_BufAll() in 0.081409 seconds -[ 900s] Executed Test_Acmd_BufEnter() in 0.039599 seconds -[ 900s] Executed Test_BufDelete_changebuf() in 0.000846 seconds -[ 900s] Executed Test_BufEnter() in 0.000956 seconds -[ 900s] Executed Test_BufLeave_Wipe() in 0.122618 seconds -[ 900s] Executed Test_BufNew_arglocal() in 0.000600 seconds -[ 900s] Executed Test_BufReadCmd() in 0.186808 seconds -[ 900s] Executed Test_BufReadCmdHelp() in 0.008272 seconds -[ 900s] Executed Test_BufReadCmdHelpJump() in 0.015765 seconds -[ 900s] Executed Test_BufReadPre_changebuf() in 0.099186 seconds -[ 900s] Executed Test_BufReadPre_delfile() in 0.086325 seconds -[ 900s] Executed Test_BufWritePre() in 0.160537 seconds -[ 900s] Executed Test_BufWrite_lockmarks() in 0.473732 seconds -[ 900s] Executed Test_BufleaveWithDelete() in 0.001216 seconds -[ 900s] Executed Test_ChangedP() in 0.002376 seconds -[ 900s] Executed Test_Changed_ChangedI() in 0.000824 seconds -[ 900s] Executed Test_Changed_FirstTime() in 0.190825 seconds -[ 900s] Executed Test_Cmd_Autocmds() in 0.068343 seconds -[ 900s] Executed Test_Cmdline() in 0.001255 seconds -[ 900s] Executed Test_CursorHold_autocmd() in 0.225396 seconds -[ 900s] Executed Test_FileChangedRO_winclose() in 0.021171 seconds -[ 900s] Executed Test_FileType_spell() in 0.016420 seconds -[ 900s] Executed Test_Filter_noshelltemp() in 0.060396 seconds -[ 900s] Executed Test_OptionSet() in 0.006042 seconds -[ 900s] Executed Test_OptionSet_diffmode() in 0.001108 seconds -[ 900s] Executed Test_OptionSet_diffmode_close() in 0.000941 seconds -[ 900s] Executed Test_OptionSet_modeline() in 0.008803 seconds -[ 900s] Executed Test_QuitPre() in 0.000897 seconds -[ 900s] Executed Test_ReadWrite_Autocmds() in 0.175121 seconds -[ 900s] Executed Test_SpellFileMissing_bwipe() in 0.000954 seconds -[ 900s] Executed Test_TermChanged() in 0.000933 seconds -[ 900s] Executed Test_TextChangedI_with_setline() in 0.000712 seconds -[ 900s] Executed Test_TextYankPost() in 0.000987 seconds -[ 900s] Executed Test_Visual_doautoall_redraw() in 0.000831 seconds -[ 900s] Executed Test_WinClosed() in 0.000685 seconds -[ 900s] Executed Test_WinClosed_throws() in 0.000410 seconds -[ 900s] Executed Test_WinClosed_throws_with_tabs() in 0.000395 seconds -[ 900s] Executed Test_WinScrolled() in 0.130084 seconds -[ 900s] Executed Test_WinScrolled_close_curwin() in 0.107989 seconds -[ 900s] Executed Test_WinScrolled_mouse() in 0.093620 seconds -[ 900s] Executed Test_ai_CTRL_O() in 0.000847 seconds -[ 900s] Executed Test_argdelete_in_next() in 0.000619 seconds -[ 900s] Executed Test_augroup_deleted() in 0.000436 seconds -[ 900s] Executed Test_augroup_warning() in 0.000438 seconds -[ 900s] Executed Test_autocmd_CmdWinEnter() in 0.133365 seconds -[ 900s] Executed Test_autocmd_FileReadCmd() in 0.000912 seconds -[ 900s] Executed Test_autocmd_SafeState() in 0.272372 seconds -[ 900s] Executed Test_autocmd_add() in 0.001228 seconds -[ 900s] Executed Test_autocmd_blast_badd() in 0.107891 seconds -[ 900s] Executed Test_autocmd_bufreadpre() in 0.015850 seconds -[ 900s] Executed Test_autocmd_bufunload_avoiding_SEGV_01() in 0.001573 seconds -[ 900s] Executed Test_autocmd_bufunload_avoiding_SEGV_02() in 0.001067 seconds -[ 900s] Executed Test_autocmd_bufunload_with_tabnext() in 0.000469 seconds -[ 900s] Executed Test_autocmd_bufwinleave_with_tabfirst() in 0.001112 seconds -[ 900s] Executed Test_autocmd_bufwipe_in_SessLoadPost() in 0.108088 seconds -[ 900s] Executed Test_autocmd_bufwipe_in_SessLoadPost2() in 0.049611 seconds -[ 900s] Executed Test_autocmd_closes_window() in 0.003218 seconds -[ 900s] Executed Test_autocmd_closing_cmdwin() in 0.001010 seconds -[ 900s] Executed Test_autocmd_deep_nesting() in 0.000472 seconds -[ 900s] Executed Test_autocmd_delete() in 0.000505 seconds -[ 900s] Executed Test_autocmd_dummy_wipeout() in 0.090204 seconds -[ 900s] Executed Test_autocmd_get() in 0.000953 seconds -[ 900s] Executed Test_autocmd_in_try_block() in 0.000669 seconds -[ 900s] Executed Test_autocmd_invalid_args() in 0.000543 seconds -[ 900s] Executed Test_autocmd_nested() in 0.001824 seconds -[ 900s] Executed Test_autocmd_normal_mess() in 0.001841 seconds -[ 900s] Executed Test_autocmd_once() in 0.000607 seconds -[ 900s] Executed Test_autocmd_quit_psearch() in 0.000927 seconds -[ 900s] Executed Test_autocmd_sigusr1() in 0.015973 seconds -[ 900s] Executed Test_autocmd_user() in 0.000328 seconds -[ 900s] Executed Test_autocmd_vimgrep() in 0.000899 seconds -[ 900s] Executed Test_autocmd_was_using_freed_memory() in 0.001250 seconds -[ 900s] Executed Test_autocmd_window() in 0.002180 seconds -[ 900s] Executed Test_autocmd_with_block() in 0.000362 seconds -[ 900s] Executed Test_autocommand_all_events() in 0.000358 seconds -[ 900s] Executed Test_buflocal_autocmd() in 0.001807 seconds -[ 900s] Executed Test_bufunload() in 0.000829 seconds -[ 900s] Executed Test_bufunload_all() in 0.226317 seconds -[ 900s] Executed Test_bufwipeout_changes_window() in 0.000702 seconds -[ 900s] Executed Test_change_mark_in_autocmds() in 0.764055 seconds -[ 900s] Executed Test_close_autocmd_tab() in 0.001191 seconds -[ 900s] Executed Test_close_autocmd_window() in 0.001049 seconds -[ 900s] Executed Test_closing_autocmd_window() in 0.087291 seconds -[ 900s] Executed Test_cursorhold_insert() in 0.199732 seconds -[ 900s] Executed Test_cursorhold_insert_ctrl_g_U() in 1.326262 seconds -[ 900s] Executed Test_cursorhold_insert_ctrl_x() in 0.099573 seconds -[ 900s] Executed Test_cursorhold_insert_with_timer_interrupt() in 0.210338 seconds -[ 900s] Executed Test_dirchanged_auto() in 0.001331 seconds -[ 900s] Executed Test_dirchanged_global() in 0.000669 seconds -[ 900s] Executed Test_dirchanged_local() in 0.000560 seconds -[ 900s] Executed Test_early_bar() in 0.000406 seconds -[ 900s] Executed Test_empty_doau() in 0.000229 seconds -[ 900s] Executed Test_noname_autocmd() in 0.000585 seconds -[ 900s] Executed Test_three_windows() in 0.104805 seconds -[ 900s] Executed Test_throw_in_BufWritePre() in 0.000803 seconds -[ 900s] Executed Test_v_event_readonly() in 0.002611 seconds -[ 900s] Executed Test_vim_did_enter() in 0.000339 seconds -[ 900s] Executed Test_win_tab_autocmd() in 0.001019 seconds -[ 900s] Executed 98 tests in 6.279601 seconds -[ 900s] -[ 900s] From test_autoload.vim: -[ 900s] Executed Test_autoload_dict_func() in 0.000479 seconds -[ 900s] Executed Test_autoload_vim9script() in 0.000337 seconds -[ 900s] Executed Test_source_autoload() in 0.000304 seconds -[ 900s] Executed 3 tests in 0.014946 seconds -[ 900s] -[ 900s] From test_backspace_opt.vim: -[ 900s] Executed Test_backspace_ctrl_u() in 0.001862 seconds -[ 900s] Executed Test_backspace_option() in 0.000747 seconds -[ 900s] Executed 2 tests in 0.107898 seconds -[ 900s] -[ 900s] From test_balloon.vim: -[ 900s] Executed Test_balloon_eval_term() in 0.625280 seconds -[ 900s] Executed Test_balloon_eval_term_visual() in 0.158499 seconds -[ 900s] Executed 2 tests in 0.856488 seconds -[ 900s] -[ 900s] From test_balloon_gui.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_balloon_gui.vim: only works in the GUI -[ 900s] -[ 900s] From test_blob.vim: -[ 900s] Executed Test_blob2list() in 0.000644 seconds -[ 900s] Executed Test_blob2string() in 0.000711 seconds -[ 900s] Executed Test_blob_add() in 0.442386 seconds -[ 900s] Executed Test_blob_alloc_failure() in 0.004304 seconds -[ 900s] Executed Test_blob_assign() in 1.451568 seconds -[ 900s] Executed Test_blob_compare() in 1.682710 seconds -[ 900s] Executed Test_blob_concatenate() in 0.732512 seconds -[ 900s] Executed Test_blob_create() in 0.278150 seconds -[ 900s] Executed Test_blob_empty() in 0.000368 seconds -[ 900s] Executed Test_blob_filter() in 0.255458 seconds -[ 900s] Executed Test_blob_for_loop() in 0.280779 seconds -[ 900s] Executed Test_blob_func_remove() in 1.207772 seconds -[ 900s] Executed Test_blob_get() in 0.568802 seconds -[ 900s] Executed Test_blob_get_range() in 0.168099 seconds -[ 900s] Executed Test_blob_index() in 0.081679 seconds -[ 900s] Executed Test_blob_index_assign() in 0.709131 seconds -[ 900s] Executed Test_blob_insert() in 1.401477 seconds -[ 900s] Executed Test_blob_json_encode() in 0.194421 seconds -[ 900s] Executed Test_blob_lock() in 0.145665 seconds -[ 900s] Executed Test_blob_map() in 0.138252 seconds -[ 900s] Executed Test_blob_read_write() in 0.197917 seconds -[ 900s] Executed Test_blob_reverse() in 0.078032 seconds -[ 900s] Executed Test_blob_sort() in 0.137944 seconds -[ 900s] Executed Test_blob_to_string() in 0.148795 seconds -[ 900s] Executed Test_list2blob() in 0.000567 seconds -[ 900s] Executed 25 tests in 10.324626 seconds -[ 900s] -[ 900s] From test_blockedit.vim: -[ 900s] Executed Test_blockappend_eol_cursor() in 0.000792 seconds -[ 900s] Executed Test_blockappend_eol_cursor2() in 0.000716 seconds -[ 900s] Executed Test_blockinsert_autoindent() in 0.011428 seconds -[ 900s] Executed Test_blockinsert_delete() in 0.000605 seconds -[ 900s] Executed Test_blockinsert_indent() in 0.009635 seconds -[ 900s] Executed 5 tests in 0.086637 seconds -[ 900s] -[ 900s] From test_breakindent.vim: -[ 900s] Executed Test_breakindent01() in 0.001270 seconds -[ 900s] Executed Test_breakindent01_vartabs() in 0.001069 seconds -[ 900s] Executed Test_breakindent02() in 0.001028 seconds -[ 900s] Executed Test_breakindent02_vartabs() in 0.001077 seconds -[ 900s] Executed Test_breakindent03() in 0.001020 seconds -[ 900s] Executed Test_breakindent03_vartabs() in 0.001039 seconds -[ 900s] Executed Test_breakindent04() in 0.001022 seconds -[ 900s] Executed Test_breakindent04_vartabs() in 0.001040 seconds -[ 900s] Executed Test_breakindent05() in 0.001009 seconds -[ 900s] Executed Test_breakindent05_vartabs() in 0.001047 seconds -[ 900s] Executed Test_breakindent06() in 0.001049 seconds -[ 900s] Executed Test_breakindent06_vartabs() in 0.001039 seconds -[ 900s] Executed Test_breakindent07() in 0.001055 seconds -[ 900s] Executed Test_breakindent07_vartabs() in 0.001092 seconds -[ 900s] Executed Test_breakindent07a() in 0.001044 seconds -[ 900s] Executed Test_breakindent07a_vartabs() in 0.001068 seconds -[ 900s] Executed Test_breakindent08() in 0.001330 seconds -[ 900s] Executed Test_breakindent08_vartabs() in 0.001342 seconds -[ 900s] Executed Test_breakindent08a() in 0.001063 seconds -[ 900s] Executed Test_breakindent08a_vartabs() in 0.001087 seconds -[ 900s] Executed Test_breakindent09() in 0.001050 seconds -[ 900s] Executed Test_breakindent09_vartabs() in 0.001069 seconds -[ 900s] Executed Test_breakindent10() in 0.001296 seconds -[ 900s] Executed Test_breakindent10_vartabs() in 0.001330 seconds -[ 900s] Executed Test_breakindent11() in 0.000816 seconds -[ 900s] Executed Test_breakindent11_vartabs() in 0.000821 seconds -[ 900s] Executed Test_breakindent12() in 0.001096 seconds -[ 900s] Executed Test_breakindent12_vartabs() in 0.001092 seconds -[ 900s] Executed Test_breakindent13() in 0.000819 seconds -[ 900s] Executed Test_breakindent13_vartabs() in 0.000827 seconds -[ 900s] Executed Test_breakindent14() in 0.001106 seconds -[ 900s] Executed Test_breakindent14_vartabs() in 0.001101 seconds -[ 900s] Executed Test_breakindent15() in 0.001145 seconds -[ 900s] Executed Test_breakindent15_vartabs() in 0.001187 seconds -[ 900s] Executed Test_breakindent16() in 0.001425 seconds -[ 900s] Executed Test_breakindent16_vartabs() in 0.001464 seconds -[ 900s] Executed Test_breakindent17_vartabs() in 0.001297 seconds -[ 900s] Executed Test_breakindent18_vartabs() in 0.001283 seconds -[ 900s] Executed Test_breakindent19_sbr_nextpage() in 0.002691 seconds -[ 900s] Executed Test_breakindent20_cpo_n_nextpage() in 0.002978 seconds -[ 900s] Executed Test_breakindent20_list() in 0.005375 seconds -[ 900s] Executed Test_breakindent_column() in 0.002677 seconds -[ 900s] Executed Test_cursor_position_with_showbreak() in 0.113475 seconds -[ 900s] Executed Test_no_extra_indent() in 0.002579 seconds -[ 900s] Executed Test_no_spurious_match() in 0.001276 seconds -[ 900s] Executed Test_window_resize_with_linebreak() in 0.001417 seconds -[ 900s] Executed 46 tests in 0.193725 seconds -[ 900s] -[ 900s] From test_buffer.vim: -[ 900s] Executed Test_badd_options() in 0.000831 seconds -[ 900s] Executed Test_balt() in 0.000818 seconds -[ 900s] Executed Test_bdel_with_confirm() in 0.000681 seconds -[ 900s] Executed Test_bdelete_cmd() in 0.001990 seconds -[ 900s] Executed Test_buf_pattern_invalid() in 0.022827 seconds -[ 900s] Executed Test_bufadd_autocmd_bwipe() in 0.000429 seconds -[ 900s] Executed Test_buffer_edit_altfile() in 0.095475 seconds -[ 900s] Executed Test_buffer_error() in 0.001064 seconds -[ 900s] Executed Test_buffer_maxmem() in 0.002138 seconds -[ 900s] Executed Test_buffer_sbuf_cleanup() in 0.024447 seconds -[ 900s] Skipped -[ 900s] Executed Test_buffer_scheme() in 0.000278 seconds -[ 900s] Executed Test_buffer_statusmsg() in 0.000914 seconds -[ 900s] Executed Test_buffer_switchbuf() in 0.000674 seconds -[ 900s] Executed Test_buflist_alloc_failure() in 0.413640 seconds -[ 900s] Executed Test_buflist_browse() in 0.115073 seconds -[ 900s] Executed Test_bunload_with_offset() in 0.104618 seconds -[ 900s] Executed Test_goto_buf_with_confirm() in 0.001206 seconds -[ 900s] Executed Test_load_buf_with_text_locked() in 0.001034 seconds -[ 900s] Executed Test_sball_with_count() in 0.001373 seconds -[ 900s] Executed 19 tests in 0.847131 seconds -[ 900s] SKIPPED Test_buffer_scheme(): only works on MS-Windows -[ 900s] -[ 900s] From test_bufline.vim: -[ 900s] Executed Test_appendbufline() in 0.001318 seconds -[ 900s] Executed Test_appendbufline_no_E315() in 0.310599 seconds -[ 900s] Executed Test_appendbufline_redraw() in 0.153746 seconds -[ 900s] Executed Test_deletebufline() in 0.001959 seconds -[ 900s] Executed Test_deletebufline_select_mode() in 0.001052 seconds -[ 900s] Executed Test_setbufline_getbufline() in 0.001140 seconds -[ 900s] Executed Test_setbufline_getbufline_fold() in 0.000806 seconds -[ 900s] Executed Test_setbufline_getbufline_fold_tab() in 0.000742 seconds -[ 900s] Executed Test_setbufline_select_mode() in 0.001035 seconds -[ 900s] Executed Test_setline_startup() in 0.212725 seconds -[ 900s] Executed 10 tests in 0.789928 seconds -[ 900s] -[ 900s] From test_bufwintabinfo.vim: -[ 900s] Executed Test_get_buf_options() in 0.000367 seconds -[ 900s] Executed Test_get_win_options() in 0.000319 seconds -[ 900s] Executed Test_getbufinfo_lastused() in 0.000877 seconds -[ 900s] Executed Test_getbufinfo_lines() in 0.000702 seconds -[ 900s] Executed Test_getbufwintabinfo() in 0.002330 seconds -[ 900s] Executed Test_getwininfo_au() in 0.000723 seconds -[ 900s] Executed 6 tests in 0.129137 seconds -[ 900s] -[ 900s] From test_cd.vim: -[ 900s] Executed Test_cd_completion() in 0.097062 seconds -[ 900s] Executed Test_cd_from_non_existing_dir() in 0.000474 seconds -[ 900s] Executed Test_cd_large_path() in 0.000797 seconds -[ 900s] Executed Test_cd_minus() in 0.218541 seconds -[ 900s] Executed Test_cd_no_arg() in 0.000340 seconds -[ 900s] Executed Test_cd_unknown_dir() in 0.095969 seconds -[ 900s] Executed Test_cd_up_and_down() in 0.000268 seconds -[ 900s] Executed Test_chdir_func() in 0.001282 seconds -[ 900s] Executed Test_getcwd_actual_dir() in 0.000928 seconds -[ 900s] Executed Test_lcd_split() in 0.000296 seconds -[ 900s] Executed Test_prev_dir() in 0.001218 seconds -[ 900s] Executed 11 tests in 0.519815 seconds -[ 900s] -[ 900s] From test_cdo.vim: -[ 900s] Executed Test_cdo() in 0.322335 seconds -[ 900s] Executed Test_cdo_print() in 0.307170 seconds -[ 900s] Executed Test_ldo() in 0.326463 seconds -[ 900s] Executed 3 tests in 1.052872 seconds -[ 900s] -[ 900s] From test_changedtick.vim: -[ 900s] Executed Test_changedtick_bdel() in 0.000415 seconds -[ 900s] Executed Test_changedtick_dict_entry() in 0.000246 seconds -[ 900s] Executed Test_changedtick_fixed() in 0.000456 seconds -[ 900s] Executed Test_changedtick_increments() in 0.000564 seconds -[ 900s] Executed Test_changedtick_islocked() in 0.000240 seconds -[ 900s] Executed Test_changedtick_not_incremented_with_write() in 1.150881 seconds -[ 900s] Executed 6 tests in 1.261558 seconds -[ 900s] -[ 900s] From test_changelist.vim: -[ 900s] Executed Test_changelist() in 0.001209 seconds -[ 900s] Executed Test_changelist_index() in 0.001155 seconds -[ 900s] Executed Test_changelist_index_move_split() in 0.000755 seconds -[ 900s] Executed Test_getchangelist() in 0.131040 seconds -[ 900s] Executed 4 tests in 0.145853 seconds -[ 900s] -[ 900s] From test_charsearch.vim: -[ 900s] Executed Test_charsearch() in 0.000977 seconds -[ 900s] Executed Test_charsearch_composing_char() in 0.000743 seconds -[ 900s] Executed Test_charsearch_hkmap() in 0.000645 seconds -[ 900s] Executed Test_charsearch_latin1() in 0.000707 seconds -[ 900s] Executed Test_csearch_virtualedit() in 0.000624 seconds -[ 900s] Executed 5 tests in 0.097326 seconds -[ 900s] -[ 900s] From test_checkpath.vim: -[ 900s] Executed Test_checkpath1() in 0.247865 seconds -[ 900s] Executed Test_checkpath2() in 0.126457 seconds -[ 900s] Executed Test_checkpath3() in 0.352478 seconds -[ 900s] Executed Test_checkpath_errors() in 0.000425 seconds -[ 900s] Executed 4 tests in 0.834362 seconds -[ 900s] -[ 900s] From test_cindent.vim: -[ 900s] Executed Test_backslash_at_end_of_line() in 0.000922 seconds -[ 900s] Executed Test_cindent_1() in 0.051968 seconds -[ 900s] Executed Test_cindent_10() in 0.000890 seconds -[ 900s] Executed Test_cindent_11() in 0.001336 seconds -[ 900s] Executed Test_cindent_12() in 0.000793 seconds -[ 900s] Executed Test_cindent_13() in 0.001109 seconds -[ 900s] Executed Test_cindent_14() in 0.000797 seconds -[ 900s] Executed Test_cindent_15() in 0.000780 seconds -[ 900s] Executed Test_cindent_16() in 0.000779 seconds -[ 900s] Executed Test_cindent_17() in 0.000794 seconds -[ 900s] Executed Test_cindent_18() in 0.000811 seconds -[ 900s] Executed Test_cindent_19() in 0.000799 seconds -[ 900s] Executed Test_cindent_2() in 0.000885 seconds -[ 900s] Executed Test_cindent_20() in 0.000796 seconds -[ 900s] Executed Test_cindent_21() in 0.000813 seconds -[ 900s] Executed Test_cindent_22() in 0.000853 seconds -[ 900s] Executed Test_cindent_23() in 0.000834 seconds -[ 900s] Executed Test_cindent_24() in 0.000865 seconds -[ 900s] Executed Test_cindent_25() in 0.000875 seconds -[ 900s] Executed Test_cindent_26() in 0.000784 seconds -[ 900s] Executed Test_cindent_27() in 0.000761 seconds -[ 900s] Executed Test_cindent_28() in 0.000858 seconds -[ 900s] Executed Test_cindent_29() in 0.000823 seconds -[ 900s] Executed Test_cindent_3() in 0.000840 seconds -[ 900s] Executed Test_cindent_30() in 0.000801 seconds -[ 900s] Executed Test_cindent_31() in 0.002074 seconds -[ 900s] Executed Test_cindent_32() in 0.000783 seconds -[ 900s] Executed Test_cindent_33() in 0.000789 seconds -[ 900s] Executed Test_cindent_34() in 0.000800 seconds -[ 900s] Executed Test_cindent_35() in 0.002765 seconds -[ 900s] Executed Test_cindent_36() in 0.001252 seconds -[ 900s] Executed Test_cindent_37() in 0.000820 seconds -[ 900s] Executed Test_cindent_38() in 0.000739 seconds -[ 900s] Executed Test_cindent_39() in 0.000884 seconds -[ 900s] Executed Test_cindent_4() in 0.000722 seconds -[ 900s] Executed Test_cindent_40() in 0.001301 seconds -[ 900s] Executed Test_cindent_41() in 0.001321 seconds -[ 900s] Executed Test_cindent_42() in 0.001387 seconds -[ 900s] Executed Test_cindent_43() in 0.001554 seconds -[ 900s] Executed Test_cindent_44() in 0.001201 seconds -[ 900s] Executed Test_cindent_45() in 0.001485 seconds -[ 900s] Executed Test_cindent_46() in 0.001007 seconds -[ 900s] Executed Test_cindent_47() in 0.003629 seconds -[ 900s] Executed Test_cindent_48() in 0.000997 seconds -[ 900s] Executed Test_cindent_49() in 0.000834 seconds -[ 900s] Executed Test_cindent_5() in 0.000884 seconds -[ 900s] Executed Test_cindent_50() in 0.000869 seconds -[ 900s] Executed Test_cindent_51() in 0.003419 seconds -[ 900s] Executed Test_cindent_52() in 0.001102 seconds -[ 900s] Executed Test_cindent_53() in 0.001168 seconds -[ 900s] Executed Test_cindent_54() in 0.007948 seconds -[ 900s] Executed Test_cindent_55() in 0.000919 seconds -[ 900s] Executed Test_cindent_56() in 0.000729 seconds -[ 900s] Executed Test_cindent_6() in 0.000986 seconds -[ 900s] Executed Test_cindent_7() in 0.000856 seconds -[ 900s] Executed Test_cindent_8() in 0.000881 seconds -[ 900s] Executed Test_cindent_9() in 0.000814 seconds -[ 900s] Executed Test_cindent_case() in 0.000658 seconds -[ 900s] Executed Test_cindent_change_multline() in 0.000693 seconds -[ 900s] Executed Test_cindent_check_funcdecl() in 0.000659 seconds -[ 900s] Executed Test_cindent_expr() in 0.000839 seconds -[ 900s] Executed Test_cindent_func() in 0.000695 seconds -[ 900s] Executed Test_cindent_pragma() in 0.000812 seconds -[ 900s] Executed Test_cindent_rawstring() in 0.000742 seconds -[ 900s] Executed Test_cindent_scopedecls() in 0.000898 seconds -[ 900s] Executed Test_cino_extern_c() in 0.001280 seconds -[ 900s] Executed Test_cino_hash() in 0.000697 seconds -[ 900s] Executed Test_find_brace_backwards() in 0.000777 seconds -[ 900s] Executed 68 tests in 0.239342 seconds -[ 900s] -[ 900s] From test_cjk_linebreak.vim: -[ 900s] Executed Test_cjk_linebreak_after() in 0.002803 seconds -[ 900s] Executed Test_cjk_linebreak_after_rigorous() in 0.002807 seconds -[ 900s] Executed Test_cjk_linebreak_before() in 0.001369 seconds -[ 900s] Executed Test_cjk_linebreak_before_rigorous() in 0.001375 seconds -[ 900s] Executed Test_cjk_linebreak_join_punct() in 0.000690 seconds -[ 900s] Executed Test_cjk_linebreak_nobetween() in 0.000621 seconds -[ 900s] Executed Test_cjk_linebreak_nobetween_rigorous() in 0.000627 seconds -[ 900s] Executed 7 tests in 0.101912 seconds -[ 900s] -[ 900s] From test_clientserver.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_clientserver.vim: clientserver feature missing -[ 900s] -[ 900s] From test_close_count.vim: -[ 900s] Executed Test_close_count() in 0.001177 seconds -[ 900s] Executed Test_hidden_close_count() in 0.000843 seconds -[ 900s] Executed Test_hide_count() in 0.000999 seconds -[ 900s] Executed Test_winclose_command() in 0.000945 seconds -[ 900s] Executed 4 tests in 0.101280 seconds -[ 900s] -[ 900s] From test_cmdline.vim: -[ 900s] Executed Test_buffers_lastused() in 0.002556 seconds -[ 900s] Executed Test_cmd_backtick() in 0.003945 seconds -[ 900s] Executed Test_cmd_bang() in 0.201006 seconds -[ 900s] Executed Test_cmd_bang_E135() in 0.061482 seconds -[ 900s] Executed Test_cmd_map_cmdlineChanged() in 0.000465 seconds -[ 900s] Executed Test_cmdline_complete_bang() in 0.001166 seconds -[ 900s] Executed Test_cmdline_complete_breakadd() in 0.097006 seconds -[ 900s] Executed Test_cmdline_complete_breakdel() in 0.050474 seconds -[ 900s] Executed Test_cmdline_complete_dlist() in 0.000634 seconds -[ 900s] Executed Test_cmdline_complete_env_variable() in 0.000360 seconds -[ 900s] Executed Test_cmdline_complete_expression() in 0.001848 seconds -[ 900s] Executed Test_cmdline_complete_languages() in 0.005502 seconds -[ 900s] Executed Test_cmdline_complete_scriptnames() in 0.097019 seconds -[ 900s] Executed Test_cmdline_complete_substitute() in 0.001218 seconds -[ 900s] Executed Test_cmdline_complete_substitute_short() in 0.001682 seconds -[ 900s] Executed Test_cmdline_complete_user_cmd() in 0.001642 seconds -[ 900s] Executed Test_cmdline_complete_user_func() in 0.002043 seconds -[ 900s] Executed Test_cmdline_complete_user_names() in 0.004342 seconds -[ 900s] Executed Test_cmdline_complete_various() in 0.241645 seconds -[ 900s] Executed Test_cmdline_complete_wildoptions() in 0.009555 seconds -[ 900s] Executed Test_cmdline_composing_chars() in 0.000310 seconds -[ 900s] Executed Test_cmdline_ctrl_g() in 0.000699 seconds -[ 900s] Executed Test_cmdline_edit() in 0.000515 seconds -[ 900s] Executed Test_cmdline_edit_rightleft() in 0.000622 seconds -[ 900s] Executed Test_cmdline_expand_home() in 0.136569 seconds -[ 900s] Executed Test_cmdline_expand_special() in 0.071102 seconds -[ 900s] Executed Test_cmdline_expr() in 0.000484 seconds -[ 900s] Executed Test_cmdline_expr_register() in 0.000289 seconds -[ 900s] Executed Test_cmdline_inputmethod() in 0.079066 seconds -[ 900s] Executed Test_cmdline_keymap_ctrl_hat() in 0.000607 seconds -[ 900s] Executed Test_cmdline_overstrike() in 0.000830 seconds -[ 900s] Executed Test_cmdline_paste() in 0.001683 seconds -[ 900s] Executed Test_cmdline_remove_char() in 0.000791 seconds -[ 900s] Executed Test_cmdline_revins() in 0.000357 seconds -[ 900s] Executed Test_cmdline_search_range() in 0.000672 seconds -[ 900s] Executed Test_cmdline_wildignorecase() in 0.073044 seconds -[ 900s] Executed Test_cmdline_write_alternatefile() in 0.001711 seconds -[ 900s] Executed Test_cmdlineclear_tabenter() in 0.206320 seconds -[ 900s] Executed Test_cmdwin_autocmd() in 0.000660 seconds -[ 900s] Executed Test_cmdwin_blocked_commands() in 0.005852 seconds -[ 900s] Executed Test_cmdwin_bug() in 0.000588 seconds -[ 900s] Executed Test_cmdwin_cedit() in 0.000588 seconds -[ 900s] Executed Test_cmdwin_ex_mode_with_modifier() in 0.085233 seconds -[ 900s] Executed Test_cmdwin_feedkeys() in 0.000697 seconds -[ 900s] Executed Test_cmdwin_freed_buffer_ptr() in 0.001577 seconds -[ 900s] Executed Test_cmdwin_insert_mode_close() in 0.000569 seconds -[ 900s] Executed Test_cmdwin_interrupted() in 0.118877 seconds -[ 900s] Executed Test_cmdwin_jump_to_win() in 1.007997 seconds -[ 900s] Executed Test_cmdwin_multi_input() in 0.000467 seconds -[ 900s] Executed Test_cmdwin_no_terminal() in 0.124734 seconds -[ 900s] Executed Test_cmdwin_restore() in 0.279450 seconds -[ 900s] Executed Test_cmdwin_split_often() in 0.000490 seconds -[ 900s] Executed Test_cmdwin_tabpage() in 0.000745 seconds -[ 900s] Executed Test_cmdwin_virtual_edit() in 0.000551 seconds -[ 900s] Executed Test_complete_autoload_error() in 0.073079 seconds -[ 900s] Executed Test_complete_list() in 0.136986 seconds -[ 900s] Executed Test_complete_tab() in 0.072523 seconds -[ 900s] Executed Test_complete_wildmenu() in 0.323465 seconds -[ 900s] Executed Test_custom_complete_autoload() in 0.071764 seconds -[ 900s] Executed Test_expand_star_star() in 0.153911 seconds -[ 900s] Executed Test_fullcommand() in 0.000530 seconds -[ 900s] Executed Test_fuzzy_completion_abbr() in 0.000568 seconds -[ 900s] Executed Test_fuzzy_completion_arglist() in 0.000563 seconds -[ 900s] Executed Test_fuzzy_completion_autocmd() in 0.000637 seconds -[ 900s] Executed Test_fuzzy_completion_autocmd_event() in 0.000514 seconds -[ 900s] Executed Test_fuzzy_completion_behave() in 0.001611 seconds -[ 900s] Executed Test_fuzzy_completion_bufname() in 0.001153 seconds -[ 900s] Executed Test_fuzzy_completion_bufname_fullpath() in 0.001138 seconds -[ 900s] Executed Test_fuzzy_completion_cmd_alnum() in 0.000971 seconds -[ 900s] Executed Test_fuzzy_completion_cmd_k() in 0.000587 seconds -[ 900s] Executed Test_fuzzy_completion_cmd_sort_results() in 0.000671 seconds -[ 900s] Executed Test_fuzzy_completion_cmdname() in 0.001079 seconds -[ 900s] Executed Test_fuzzy_completion_cscope() in 0.000654 seconds -[ 900s] Executed Test_fuzzy_completion_custom_func() in 0.000929 seconds -[ 900s] Executed Test_fuzzy_completion_diff() in 0.001612 seconds -[ 900s] Executed Test_fuzzy_completion_env() in 0.000515 seconds -[ 900s] Executed Test_fuzzy_completion_expr() in 0.001246 seconds -[ 900s] Executed Test_fuzzy_completion_history() in 0.000615 seconds -[ 900s] Executed Test_fuzzy_completion_hlgroup() in 0.000708 seconds -[ 900s] Executed Test_fuzzy_completion_lang() in 0.000678 seconds -[ 900s] Executed Test_fuzzy_completion_mapclear() in 0.000496 seconds -[ 900s] Executed Test_fuzzy_completion_mapname() in 0.001050 seconds -[ 900s] Skipped -[ 900s] Executed Test_fuzzy_completion_menu() in 0.000330 seconds -[ 900s] Executed Test_fuzzy_completion_messages() in 0.000482 seconds -[ 900s] Executed Test_fuzzy_completion_option() in 0.001432 seconds -[ 900s] Executed Test_fuzzy_completion_sign() in 0.000473 seconds -[ 900s] Executed Test_fuzzy_completion_syntax_cmd() in 0.000481 seconds -[ 900s] Executed Test_fuzzy_completion_syntax_group() in 0.000533 seconds -[ 900s] Executed Test_fuzzy_completion_syntime() in 0.000499 seconds -[ 900s] Executed Test_fuzzy_completion_term_option() in 0.002559 seconds -[ 900s] Executed Test_fuzzy_completion_userdefined_cmd() in 0.000655 seconds -[ 900s] Executed Test_fuzzy_completion_userdefined_func() in 0.001545 seconds -[ 900s] Executed Test_fuzzy_completion_userdefined_snr_func() in 0.001103 seconds -[ 900s] Executed Test_fuzzy_completion_userdefined_var() in 0.000541 seconds -[ 900s] Executed Test_getcmdtype() in 0.001268 seconds -[ 900s] Executed Test_getcmdwin_autocmd() in 0.000990 seconds -[ 900s] Executed Test_getcmdwintype() in 0.001449 seconds -[ 900s] Executed Test_getcompletion() in 0.155370 seconds -[ 900s] Executed Test_getcompletion_wildoptions() in 0.001121 seconds -[ 900s] Executed Test_highlight_completion() in 0.001277 seconds -[ 900s] Executed Test_highlight_easter_egg() in 0.054373 seconds -[ 900s] Executed Test_illegal_address1() in 0.000487 seconds -[ 900s] Executed Test_illegal_address2() in 0.053484 seconds -[ 900s] Executed Test_interrupt_compl() in 0.000555 seconds -[ 900s] Executed Test_lnum_and_pattern_as_range() in 0.000515 seconds -[ 900s] Executed Test_long_error_message() in 0.000459 seconds -[ 900s] Executed Test_map_completion() in 0.001855 seconds -[ 900s] Executed Test_mark_from_line_zero() in 0.000669 seconds -[ 900s] Executed Test_match_completion() in 0.000861 seconds -[ 900s] Executed Test_read_shellcmd() in 0.004207 seconds -[ 900s] Executed Test_recalling_cmdline() in 0.002930 seconds -[ 900s] Executed Test_recursive_register() in 0.000919 seconds -[ 900s] Executed Test_redraw_in_autocmd() in 0.087812 seconds -[ 900s] Executed Test_report_error_with_composing() in 0.000342 seconds -[ 900s] Executed Test_screenpos_and_completion() in 0.000430 seconds -[ 900s] Executed Test_setcmdpos() in 0.000585 seconds -[ 900s] Executed Test_shellcmd_completion() in 0.054201 seconds -[ 900s] Executed Test_suffixes_opt() in 0.038104 seconds -[ 900s] Executed Test_tick_mark_in_range() in 0.000363 seconds -[ 900s] Executed Test_verbose_option() in 0.113150 seconds -[ 900s] Executed Test_verbosefile() in 0.000630 seconds -[ 900s] Executed Test_wildmenu_dirstack() in 0.270941 seconds -[ 900s] Executed Test_wildmenu_pum() in 1.545317 seconds -[ 900s] Executed Test_wildmenu_pum_from_terminal() in 0.162310 seconds -[ 900s] Executed Test_wildmenu_screendump() in 0.220180 seconds -[ 900s] Executed Test_wildmenu_with_pum_foldexpr() in 0.167159 seconds -[ 900s] Executed Test_wildmenumode_with_pum() in 0.001012 seconds -[ 900s] Executed Test_wildmode() in 0.140885 seconds -[ 900s] Executed Test_zero_line_search() in 0.000728 seconds -[ 900s] Executed 129 tests in 7.060425 seconds -[ 900s] SKIPPED Test_fuzzy_completion_menu(): only works in the GUI -[ 900s] -[ 900s] From test_command_count.vim: -[ 900s] Executed Test_command_count_0() in 0.000853 seconds -[ 900s] Executed Test_command_count_1() in 0.003520 seconds -[ 900s] Executed Test_command_count_2() in 0.001749 seconds -[ 900s] Executed Test_command_count_3() in 0.001742 seconds -[ 900s] Executed Test_command_count_4() in 0.004365 seconds -[ 900s] Executed 5 tests in 0.103631 seconds -[ 900s] -[ 900s] From test_comments.vim: -[ 900s] Executed Test_comment_O() in 0.000870 seconds -[ 900s] Executed Test_comment_autoformat() in 0.001001 seconds -[ 900s] Executed Test_comment_blank() in 0.000810 seconds -[ 900s] Executed Test_comment_firstline() in 0.000810 seconds -[ 900s] Executed Test_comment_format_firstline_comment() in 0.000743 seconds -[ 900s] Executed Test_comment_format_lines() in 0.000686 seconds -[ 900s] Executed Test_comment_join_lines_fo_j() in 0.000730 seconds -[ 900s] Executed Test_comment_multibyte_leader() in 0.001046 seconds -[ 900s] Executed Test_comment_nested() in 0.000778 seconds -[ 900s] Executed Test_comment_rightalign() in 0.000822 seconds -[ 900s] Executed Test_comment_space() in 0.000780 seconds -[ 900s] Executed Test_comment_threepiece() in 0.000831 seconds -[ 900s] Executed 12 tests in 0.107235 seconds -[ 900s] -[ 900s] From test_comparators.vim: -[ 900s] Executed Test_Comparators() in 0.000400 seconds -[ 900s] Executed 1 test in 0.103943 seconds -[ 900s] -[ 900s] From test_conceal.vim: -[ 900s] Executed Test_conceal_cursor_pos() in 0.266332 seconds -[ 900s] Executed Test_conceal_eol() in 0.001116 seconds -[ 900s] Executed Test_conceal_resize_term() in 0.139209 seconds -[ 900s] Executed Test_conceal_two_windows() in 0.902090 seconds -[ 900s] Executed Test_conceal_with_cursorline() in 0.165947 seconds -[ 900s] Executed 5 tests in 1.554200 seconds -[ 900s] -[ 900s] From test_const.vim: -[ 900s] Executed Test_cannot_modify_existing_variable() in 0.001006 seconds -[ 900s] Executed Test_const_with_compound_assign() in 0.000464 seconds -[ 900s] Executed Test_const_with_condition() in 0.000260 seconds -[ 900s] Executed Test_const_with_eval_name() in 0.000317 seconds -[ 900s] Executed Test_const_with_index_access() in 0.000406 seconds -[ 900s] Executed Test_const_with_special_variables() in 0.000421 seconds -[ 900s] Executed Test_define_l_var_with_lock() in 0.000570 seconds -[ 900s] Executed Test_define_script_var_with_lock() in 0.000304 seconds -[ 900s] Executed Test_define_var_with_lock() in 0.000597 seconds -[ 900s] Executed Test_destructuring_with_lock() in 0.000400 seconds -[ 900s] Executed Test_lock_depth_is_2() in 0.000504 seconds -[ 900s] Executed Test_lockvar() in 0.000441 seconds -[ 900s] Executed 12 tests in 0.020464 seconds -[ 900s] -[ 900s] From test_cpoptions.vim: -[ 900s] Executed Test_cpo_A() in 0.183765 seconds -[ 900s] Executed Test_cpo_B() in 0.000841 seconds -[ 900s] Executed Test_cpo_C() in 0.079246 seconds -[ 900s] Executed Test_cpo_D() in 0.000691 seconds -[ 900s] Executed Test_cpo_E() in 0.000752 seconds -[ 900s] Executed Test_cpo_F() in 0.084813 seconds -[ 900s] Executed Test_cpo_H() in 0.000698 seconds -[ 900s] Executed Test_cpo_I() in 0.000829 seconds -[ 900s] Executed Test_cpo_J() in 0.000857 seconds -[ 900s] Executed Test_cpo_L() in 0.000768 seconds -[ 900s] Executed Test_cpo_M() in 0.000755 seconds -[ 900s] Executed Test_cpo_O() in 0.155922 seconds -[ 900s] Executed Test_cpo_P() in 0.228216 seconds -[ 900s] Executed Test_cpo_R() in 0.162045 seconds -[ 900s] Executed Test_cpo_S() in 0.001036 seconds -[ 900s] Executed Test_cpo_X() in 0.000678 seconds -[ 900s] Executed Test_cpo_Z() in 0.390129 seconds -[ 900s] Executed Test_cpo_a() in 0.080712 seconds -[ 900s] Executed Test_cpo_ampersand() in 0.244065 seconds -[ 900s] Executed Test_cpo_b() in 0.000368 seconds -[ 900s] Executed Test_cpo_backslash() in 0.000677 seconds -[ 900s] Executed Test_cpo_brace() in 0.000591 seconds -[ 900s] Executed Test_cpo_c() in 0.000634 seconds -[ 900s] Executed Test_cpo_d() in 0.088951 seconds -[ 900s] Executed Test_cpo_dollar() in 0.001519 seconds -[ 900s] Executed Test_cpo_dot() in 0.108397 seconds -[ 900s] Executed Test_cpo_e() in 0.000413 seconds -[ 900s] Executed Test_cpo_f() in 0.001450 seconds -[ 900s] Executed Test_cpo_g() in 0.001822 seconds -[ 900s] Executed Test_cpo_gt() in 0.000565 seconds -[ 900s] Executed Test_cpo_hash() in 0.000758 seconds -[ 900s] Executed Test_cpo_l() in 0.000701 seconds -[ 900s] Executed Test_cpo_minus() in 0.000629 seconds -[ 900s] Executed Test_cpo_n() in 0.001955 seconds -[ 900s] Executed Test_cpo_o() in 0.000731 seconds -[ 900s] Executed Test_cpo_percent() in 0.000630 seconds -[ 900s] Executed Test_cpo_plus() in 0.089152 seconds -[ 900s] Executed Test_cpo_q() in 0.000625 seconds -[ 900s] Executed Test_cpo_r() in 0.000817 seconds -[ 900s] Executed Test_cpo_semicolon() in 0.000645 seconds -[ 900s] Executed Test_cpo_star() in 0.000457 seconds -[ 900s] Executed Test_cpo_u() in 0.000703 seconds -[ 900s] Executed Test_cpo_w() in 0.000643 seconds -[ 900s] Executed Test_cpo_x() in 0.000410 seconds -[ 900s] Executed Test_cpo_y() in 0.000550 seconds -[ 900s] Executed 45 tests in 2.031040 seconds -[ 900s] -[ 900s] From test_crypt.vim: -[ 900s] Executed Test_crypt_blowfish() in 0.387244 seconds -[ 900s] Executed Test_crypt_blowfish2() in 0.348087 seconds -[ 900s] Executed Test_crypt_key_mismatch() in 0.188722 seconds -[ 900s] Executed Test_crypt_set_key_changes_buffer() in 1.096300 seconds -[ 900s] Skipped -[ 900s] Executed Test_crypt_sodium() in 0.000311 seconds -[ 900s] Executed Test_crypt_zip() in 0.358081 seconds -[ 900s] Executed Test_encrypt_xchacha20_missing() in 0.004326 seconds -[ 900s] Executed Test_head_only_2() in 0.095269 seconds -[ 900s] Executed Test_head_only_3() in 0.217442 seconds -[ 900s] Skipped -[ 900s] Executed Test_head_only_4() in 0.000286 seconds -[ 900s] Executed Test_uncrypt_blowfish() in 0.216332 seconds -[ 900s] Executed Test_uncrypt_blowfish2() in 0.317233 seconds -[ 900s] Executed Test_uncrypt_blowfish2a() in 0.317291 seconds -[ 900s] Executed Test_uncrypt_unknown_method() in 0.100193 seconds -[ 900s] Skipped -[ 900s] Executed Test_uncrypt_xchacha20() in 0.000307 seconds -[ 900s] Skipped -[ 900s] Executed Test_uncrypt_xchacha20_2() in 0.000262 seconds -[ 900s] Skipped -[ 900s] Executed Test_uncrypt_xchacha20_3_persistent_undo() in 0.000253 seconds -[ 900s] Skipped -[ 900s] Executed Test_uncrypt_xchacha20_invalid() in 0.000254 seconds -[ 900s] Executed Test_uncrypt_zip() in 0.285986 seconds -[ 900s] Executed 19 tests in 3.948076 seconds -[ 900s] SKIPPED Test_crypt_sodium(): sodium feature missing -[ 900s] SKIPPED Test_head_only_4(): sodium feature missing -[ 900s] SKIPPED Test_uncrypt_xchacha20(): sodium feature missing -[ 900s] SKIPPED Test_uncrypt_xchacha20_2(): sodium feature missing -[ 900s] SKIPPED Test_uncrypt_xchacha20_3_persistent_undo(): sodium feature missing -[ 900s] SKIPPED Test_uncrypt_xchacha20_invalid(): sodium feature missing -[ 900s] -[ 900s] From test_cscope.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_cscope.vim: cscope program not executable -[ 900s] -[ 900s] From test_cursor_func.vim: -[ 900s] Executed Test_charcol() in 0.001188 seconds -[ 900s] Executed Test_curswant_maxcol() in 0.000509 seconds -[ 900s] Executed Test_curswant_with_autocommand() in 0.000618 seconds -[ 900s] Executed Test_curswant_with_cursorcolumn() in 0.000533 seconds -[ 900s] Executed Test_curswant_with_cursorline() in 0.000558 seconds -[ 900s] Executed Test_getcharpos() in 0.001072 seconds -[ 900s] Executed Test_getcursorcharpos() in 0.000785 seconds -[ 900s] Executed Test_move_cursor() in 0.000612 seconds -[ 900s] Executed Test_screenpos() in 0.001075 seconds -[ 900s] Executed Test_screenpos_fold() in 0.000713 seconds -[ 900s] Executed Test_screenpos_number() in 0.000638 seconds -[ 900s] Executed Test_setcharpos() in 0.000733 seconds -[ 900s] Executed Test_setcursorcharpos() in 0.000732 seconds -[ 900s] Executed Test_virtcol2col() in 0.000621 seconds -[ 900s] Executed Test_wrong_arguments() in 0.000304 seconds -[ 900s] Executed 15 tests in 0.027400 seconds -[ 900s] -[ 900s] From test_cursorline.vim: -[ 900s] Executed Test_cursorline_callback() in 0.422324 seconds -[ 900s] Executed Test_cursorline_cursorbind_horizontal_scroll() in 0.196074 seconds -[ 900s] Executed Test_cursorline_highlight1() in 0.001375 seconds -[ 900s] Executed Test_cursorline_highlight2() in 0.001431 seconds -[ 900s] Executed Test_cursorline_redraw() in 0.145484 seconds -[ 900s] Executed Test_cursorline_screenline() in 0.646539 seconds -[ 900s] Executed Test_cursorline_screenline_update() in 0.126787 seconds -[ 900s] Executed 7 tests in 1.578105 seconds -[ 900s] -[ 900s] From test_curswant.vim: -[ 900s] Executed Test_curswant() in 0.000800 seconds -[ 900s] Executed 1 test in 0.010804 seconds -[ 900s] -[ 900s] From test_debugger.vim: -[ 900s] Skipped -[ 900s] Executed Test_Backtrace_Autocmd() in 0.000376 seconds -[ 900s] Skipped -[ 900s] Executed Test_Backtrace_CmdLine() in 0.000264 seconds -[ 900s] Skipped -[ 900s] Executed Test_Backtrace_DefFunction() in 0.000257 seconds -[ 900s] Skipped -[ 900s] Executed Test_Backtrace_Through_Source() in 0.000252 seconds -[ 900s] Executed Test_Debugger() in 1.169544 seconds -[ 900s] Executed Test_Debugger_break_at_return() in 0.153980 seconds -[ 900s] Executed Test_Debugger_breakadd() in 0.183743 seconds -[ 900s] Executed Test_Debugger_breakadd_expr() in 0.201280 seconds -[ 900s] Executed Test_Debugger_breakadd_vim9_expr() in 0.175772 seconds -[ 900s] Skipped -[ 900s] Executed Test_DefFunction_expr() in 0.000281 seconds -[ 900s] Executed Test_breakpt_else_intr() in 0.000468 seconds -[ 900s] Executed Test_breakpt_endif_intr() in 0.000391 seconds -[ 900s] Executed Test_breakpt_endwhile_intr() in 0.000405 seconds -[ 900s] Executed Test_breakpt_scriptlocal_func() in 0.000394 seconds -[ 900s] Skipped -[ 900s] Executed Test_debug_backtrace_level() in 0.000262 seconds -[ 900s] Skipped -[ 900s] Executed Test_debug_def_and_legacy_function() in 0.000254 seconds -[ 900s] Skipped -[ 900s] Executed Test_debug_def_function() in 0.000251 seconds -[ 900s] Skipped -[ 900s] Executed Test_debug_def_function_with_lambda() in 0.000278 seconds -[ 900s] Executed 18 tests in 1.966106 seconds -[ 900s] SKIPPED Test_Backtrace_Autocmd(): Your CWD has too many characters -[ 900s] SKIPPED Test_Backtrace_CmdLine(): Your CWD has too many characters -[ 900s] SKIPPED Test_Backtrace_DefFunction(): Your CWD has too many characters -[ 900s] SKIPPED Test_Backtrace_Through_Source(): Your CWD has too many characters -[ 900s] SKIPPED Test_DefFunction_expr(): Your CWD has too many characters -[ 900s] SKIPPED Test_debug_backtrace_level(): Your CWD has too many characters -[ 900s] SKIPPED Test_debug_def_and_legacy_function(): Your CWD has too many characters -[ 900s] SKIPPED Test_debug_def_function(): Your CWD has too many characters -[ 900s] SKIPPED Test_debug_def_function_with_lambda(): Your CWD has too many characters -[ 900s] -[ 900s] From test_delete.vim: -[ 900s] Executed Test_delete_errors() in 0.000424 seconds -[ 900s] Executed Test_dir_delete() in 0.000365 seconds -[ 900s] Executed Test_file_delete() in 0.013602 seconds -[ 900s] Executed Test_recursive_delete() in 0.113759 seconds -[ 900s] Executed Test_symlink_delete() in 0.016231 seconds -[ 900s] Executed Test_symlink_dir_delete() in 0.003757 seconds -[ 900s] Executed Test_symlink_recursive_delete() in 0.037329 seconds -[ 900s] Executed 7 tests in 0.288572 seconds -[ 900s] -[ 900s] From test_diffmode.vim: -[ 900s] Executed Test_diff_and_scroll() in 0.001755 seconds -[ 900s] Executed Test_diff_binary() in 0.468786 seconds -[ 900s] Executed Test_diff_closeoff() in 0.001430 seconds -[ 900s] Executed Test_diff_filler() in 0.001268 seconds -[ 900s] Executed Test_diff_filler_cursorcolumn() in 0.204564 seconds -[ 900s] Executed Test_diff_fold_sync() in 0.000992 seconds -[ 900s] Executed Test_diff_foldinvert() in 0.001603 seconds -[ 900s] Executed Test_diff_followwrap() in 0.000373 seconds -[ 900s] Executed Test_diff_hlID() in 0.001172 seconds -[ 900s] Executed Test_diff_lastline() in 0.001011 seconds -[ 900s] Executed Test_diff_maintains_change_mark() in 0.068234 seconds -[ 900s] Executed Test_diff_manipulations() in 0.001116 seconds -[ 900s] Executed Test_diff_modify_chunks() in 0.001592 seconds -[ 900s] Executed Test_diff_move_to() in 0.001006 seconds -[ 900s] Executed Test_diff_multilineconceal() in 0.000893 seconds -[ 900s] Executed Test_diff_nomodifiable() in 0.001057 seconds -[ 900s] Executed Test_diff_of_diff() in 0.143717 seconds -[ 900s] Executed Test_diff_only() in 0.000935 seconds -[ 900s] Executed Test_diff_put_and_undo() in 0.001016 seconds -[ 900s] Executed Test_diff_rnu() in 0.177315 seconds -[ 900s] Executed Test_diff_screen() in 7.044814 seconds -[ 900s] Executed Test_diff_scroll() in 0.187634 seconds -[ 900s] Executed Test_diff_too_many_buffers() in 0.003439 seconds -[ 900s] Executed Test_diff_with_cursorline() in 0.193597 seconds -[ 900s] Executed Test_diff_with_cursorline_breakindent() in 0.493625 seconds -[ 900s] Executed Test_diff_with_cursorline_number() in 0.157537 seconds -[ 900s] Executed Test_diff_with_scroll_and_change() in 0.335848 seconds -[ 900s] Executed Test_diff_with_syntax() in 0.145271 seconds -[ 900s] Executed Test_diffexpr() in 0.101594 seconds -[ 900s] Executed Test_diffget_diffput() in 0.001375 seconds -[ 900s] Executed Test_diffget_diffput_completion() in 0.002392 seconds -[ 900s] Executed Test_diffget_diffput_empty_buffer() in 0.000873 seconds -[ 900s] Executed Test_diffget_diffput_range() in 0.000914 seconds -[ 900s] Executed Test_diffoff() in 0.001218 seconds -[ 900s] Executed Test_diffoff_hidden() in 0.001510 seconds -[ 900s] Executed Test_diffopt_context() in 0.116820 seconds -[ 900s] Executed Test_diffopt_hiddenoff() in 0.001341 seconds -[ 900s] Executed Test_diffopt_horizontal() in 0.000354 seconds -[ 900s] Executed Test_diffopt_icase() in 0.072357 seconds -[ 900s] Executed Test_diffopt_icase_internal() in 0.001293 seconds -[ 900s] Executed Test_diffopt_iwhite() in 0.079213 seconds -[ 900s] Executed Test_diffopt_iwhite_internal() in 0.001329 seconds -[ 900s] Executed Test_diffopt_vertical() in 0.000343 seconds -[ 900s] Executed Test_diffpatch() in 0.268338 seconds -[ 900s] Executed Test_diffput_two() in 0.001149 seconds -[ 900s] Executed Test_do_lastline() in 0.001079 seconds -[ 900s] Executed Test_dp_do_buffer() in 0.001938 seconds -[ 900s] Executed Test_filler_lines() in 0.000920 seconds -[ 900s] Executed Test_patchexpr() in 0.151910 seconds -[ 900s] Executed Test_setting_cursor() in 0.103847 seconds -[ 900s] Executed Test_vert_split() in 0.637836 seconds -[ 900s] Executed Test_vert_split_internal() in 0.027560 seconds -[ 900s] Executed 52 tests in 11.298542 seconds -[ 900s] -[ 900s] From test_digraph.vim: -[ 900s] Executed Test_digraph_cmndline() in 0.000455 seconds -[ 900s] Executed Test_digraph_get_function() in 0.000377 seconds -[ 900s] Executed Test_digraph_get_function_encode() in 0.001114 seconds -[ 900s] Executed Test_digraph_getlist_function() in 0.013006 seconds -[ 900s] Executed Test_digraph_set_function() in 0.000916 seconds -[ 900s] Executed Test_digraph_setlist_function() in 0.000430 seconds -[ 900s] Executed Test_digraphs() in 0.003539 seconds -[ 900s] Executed Test_digraphs_option() in 0.003742 seconds -[ 900s] Executed Test_digraphs_output() in 0.011459 seconds -[ 900s] Executed Test_entering_digraph() in 0.062571 seconds -[ 900s] Executed Test_loadkeymap() in 0.001262 seconds -[ 900s] Executed Test_loadkeymap_error() in 0.068299 seconds -[ 900s] Executed Test_show_digraph() in 0.000644 seconds -[ 900s] Executed Test_show_digraph_cp1251() in 0.001045 seconds -[ 900s] Executed 14 tests in 0.182402 seconds -[ 900s] -[ 900s] From test_display.vim: -[ 900s] Executed Test_display_foldcolumn() in 0.001476 seconds -[ 900s] Executed Test_display_foldtext_mbyte() in 0.001700 seconds -[ 900s] Executed Test_display_lastline() in 0.147934 seconds -[ 900s] Executed Test_display_linebreak_breakat() in 0.000998 seconds -[ 900s] Executed Test_display_listchars_precedes() in 0.001858 seconds -[ 900s] Executed Test_display_scroll_at_topline() in 0.073467 seconds -[ 900s] Executed Test_display_scroll_update_visual() in 0.113301 seconds -[ 900s] Executed Test_edit_long_file_name() in 0.052724 seconds -[ 900s] Executed Test_eob_fillchars() in 0.001803 seconds -[ 900s] Executed Test_fold_fillchars() in 0.001726 seconds -[ 900s] Executed Test_scroll_CursorLineNr_update() in 0.103819 seconds -[ 900s] Executed Test_scroll_without_region() in 0.167239 seconds -[ 900s] Executed Test_unprintable_fileformats() in 0.178934 seconds -[ 900s] Executed Test_visual_block_scroll() in 0.100446 seconds -[ 900s] Executed 14 tests in 0.962172 seconds -[ 900s] -[ 900s] From test_edit.vim: -[ 900s] Executed Test_ModeChanged_starts_visual() in 0.000648 seconds -[ 900s] Executed Test_autoindent_remove_indent() in 0.203844 seconds -[ 900s] Executed Test_edit_00a_CTRL_A() in 0.000899 seconds -[ 900s] Executed Test_edit_00b() in 0.000742 seconds -[ 900s] Executed Test_edit_01() in 0.000819 seconds -[ 900s] Executed Test_edit_02() in 0.000914 seconds -[ 900s] Executed Test_edit_03() in 0.000843 seconds -[ 900s] Executed Test_edit_04() in 0.012601 seconds -[ 900s] Executed Test_edit_05() in 0.000727 seconds -[ 900s] Executed Test_edit_06() in 0.001001 seconds -[ 900s] Executed Test_edit_07() in 0.002055 seconds -[ 900s] Executed Test_edit_08() in 0.000750 seconds -[ 900s] Executed Test_edit_09() in 0.000885 seconds -[ 900s] Executed Test_edit_11() in 0.034510 seconds -[ 900s] Executed Test_edit_11_indentexpr() in 0.000885 seconds -[ 900s] Executed Test_edit_12() in 0.001263 seconds -[ 900s] Executed Test_edit_13() in 0.001041 seconds -[ 900s] Executed Test_edit_CR() in 0.014303 seconds -[ 900s] Executed Test_edit_CTRL_() in 0.000995 seconds -[ 900s] Executed Test_edit_CTRL_EY() in 0.072440 seconds -[ 900s] Executed Test_edit_CTRL_G() in 0.000862 seconds -[ 900s] Executed Test_edit_CTRL_I() in 0.114516 seconds -[ 900s] Executed Test_edit_CTRL_K() in 0.198831 seconds -[ 900s] Executed Test_edit_CTRL_L() in 0.016768 seconds -[ 900s] Executed Test_edit_CTRL_N() in 0.100638 seconds -[ 900s] Executed Test_edit_CTRL_O() in 0.001388 seconds -[ 900s] Executed Test_edit_CTRL_R() in 0.001254 seconds -[ 900s] Executed Test_edit_CTRL_S() in 0.076286 seconds -[ 900s] Executed Test_edit_CTRL_T() in 0.092124 seconds -[ 900s] Executed Test_edit_CTRL_U() in 0.003111 seconds -[ 900s] Executed Test_edit_CTRL_V() in 0.010986 seconds -[ 900s] Executed Test_edit_CTRL_Z() in 0.001071 seconds -[ 900s] Skipped -[ 900s] Executed Test_edit_CTRL_hat() in 0.000589 seconds -[ 900s] Skipped -[ 900s] Executed Test_edit_DROP() in 0.000592 seconds -[ 900s] Executed Test_edit_F1() in 0.006401 seconds -[ 900s] Executed Test_edit_F21() in 0.000832 seconds -[ 900s] Executed Test_edit_HOME_END() in 0.001150 seconds -[ 900s] Executed Test_edit_INS() in 0.001151 seconds -[ 900s] Executed Test_edit_InsertLeave() in 0.001361 seconds -[ 900s] Executed Test_edit_InsertLeave_undo() in 0.123271 seconds -[ 900s] Executed Test_edit_LEFT_RIGHT() in 0.011310 seconds -[ 900s] Executed Test_edit_MOUSE() in 0.001636 seconds -[ 900s] Executed Test_edit_PAGEUP_PAGEDOWN() in 0.010447 seconds -[ 900s] Executed Test_edit_allowrevins() in 0.000931 seconds -[ 900s] Executed Test_edit_alt() in 0.041709 seconds -[ 900s] Executed Test_edit_backtick() in 0.002840 seconds -[ 900s] Executed Test_edit_browse() in 0.001195 seconds -[ 900s] Executed Test_edit_charconvert() in 0.125774 seconds -[ 900s] Executed Test_edit_complete_very_long_name() in 0.300959 seconds -[ 900s] Executed Test_edit_completefunc_delete() in 0.001614 seconds -[ 900s] Executed Test_edit_ctrl_o_invalid_cmd() in 0.011272 seconds -[ 900s] Executed Test_edit_file_no_read_perm() in 0.016912 seconds -[ 900s] Executed Test_edit_forbidden() in 0.002093 seconds -[ 900s] Executed Test_edit_hkmap() in 0.020514 seconds -[ 900s] Executed Test_edit_illegal_filename() in 0.001863 seconds -[ 900s] Executed Test_edit_insert_reg() in 0.001960 seconds -[ 900s] Executed Test_edit_insertmode_ex_edit() in 0.055460 seconds -[ 900s] Executed Test_edit_invalid_encoding() in 0.059037 seconds -[ 900s] Executed Test_edit_is_a_directory() in 0.002294 seconds -[ 900s] Executed Test_edit_lastline_scroll() in 0.001411 seconds -[ 900s] Executed Test_edit_noesckeys() in 0.001596 seconds -[ 900s] Executed Test_edit_overlong_file_name() in 0.002180 seconds -[ 900s] Executed Test_edit_put_CTRL_E() in 0.001905 seconds -[ 900s] Executed Test_edit_quit() in 0.003040 seconds -[ 900s] Executed Test_edit_revins() in 0.001495 seconds -[ 900s] Executed Test_edit_rightleft() in 0.002978 seconds -[ 900s] Skipped -[ 900s] Executed Test_edit_shift_bs() in 0.000627 seconds -[ 900s] Executed Test_edit_special_chars() in 0.000957 seconds -[ 900s] Executed Test_edit_startinsert() in 0.001472 seconds -[ 900s] Executed Test_edit_startreplace() in 0.019761 seconds -[ 900s] Executed Test_mode_changes() in 0.003396 seconds -[ 900s] Executed Test_read_invalid() in 0.002556 seconds -[ 900s] Executed Test_recursive_ModeChanged() in 0.001254 seconds -[ 900s] Executed Test_thesaurus_complete_with_encoding() in 0.011069 seconds -[ 900s] Executed Test_thesaurus_func() in 0.001963 seconds -[ 900s] Executed Test_z_edit_insertmode_esc_beeps() in 0.001183 seconds -[ 900s] Executed 76 tests in 1.861587 seconds -[ 900s] SKIPPED Test_edit_CTRL_hat(): xim feature missing -[ 900s] SKIPPED Test_edit_DROP(): dnd feature missing -[ 900s] SKIPPED Test_edit_shift_bs(): only works on MS-Windows -[ 900s] -[ 900s] From test_environ.vim: -[ 900s] Executed Test_environ() in 0.000419 seconds -[ 900s] Executed Test_external_env() in 0.007374 seconds -[ 900s] Executed Test_getenv() in 0.000273 seconds -[ 900s] Skipped -[ 900s] Executed Test_mac_locale() in 0.000286 seconds -[ 900s] Executed Test_setenv() in 0.000241 seconds -[ 900s] Executed Test_special_env() in 0.000345 seconds -[ 900s] Executed 6 tests in 0.107011 seconds -[ 900s] SKIPPED Test_mac_locale(): osxdarwin feature missing -[ 900s] -[ 900s] From test_erasebackword.vim: -[ 900s] Executed Test_erasebackword() in 0.001125 seconds -[ 900s] Executed 1 test in 0.097996 seconds -[ 900s] -[ 900s] From test_escaped_glob.vim: -[ 900s] Executed Test_glob() in 0.112190 seconds -[ 900s] Executed Test_globpath() in 0.000445 seconds -[ 900s] Executed 2 tests in 0.125167 seconds -[ 900s] -[ 900s] From test_eval_stuff.vim: -[ 900s] Executed Test_E963() in 0.000467 seconds -[ 900s] Executed Test_catch_return_with_error() in 0.000278 seconds -[ 900s] Executed Test_curly_assignment() in 0.000287 seconds -[ 900s] Executed Test_deep_recursion() in 0.000475 seconds -[ 900s] Executed Test_dict_access_scriptversion2() in 0.000257 seconds -[ 900s] Executed Test_eval_string_in_special_key() in 0.000274 seconds -[ 900s] Executed Test_execute_cmd_with_null() in 0.000425 seconds -[ 900s] Executed Test_for_invalid() in 0.000539 seconds -[ 900s] Executed Test_for_invalid_line_count() in 0.089452 seconds -[ 900s] Executed Test_for_over_null_string() in 0.000368 seconds -[ 900s] Executed Test_let_errmsg() in 0.000328 seconds -[ 900s] Executed Test_let_register() in 0.000391 seconds -[ 900s] Executed Test_line_continuation() in 0.000242 seconds -[ 900s] Executed Test_mkdir_p() in 0.050908 seconds -[ 900s] Executed Test_modified_char_no_escape_special() in 0.000451 seconds -[ 900s] Executed Test_nocatch_restore_silent_emsg() in 0.000363 seconds -[ 900s] Executed Test_number_max_min_size() in 0.000267 seconds -[ 900s] Executed Test_readfile_binary() in 0.100639 seconds -[ 900s] Executed Test_readfile_binary_empty() in 0.029452 seconds -[ 900s] Executed Test_readfile_bom() in 0.011311 seconds -[ 900s] Executed Test_readfile_max() in 0.011479 seconds -[ 900s] Executed Test_scriptversion_fail() in 0.033976 seconds -[ 900s] Executed Test_setreg_basic() in 0.020104 seconds -[ 900s] Executed Test_skip_after_throw() in 0.000290 seconds -[ 900s] Executed Test_string_concat_scriptversion1() in 0.000330 seconds -[ 900s] Executed Test_string_concat_scriptversion2() in 0.000349 seconds -[ 900s] Executed Test_string_concatenation() in 0.000308 seconds -[ 900s] Executed Test_vvar_scriptversion1() in 0.000248 seconds -[ 900s] Executed Test_vvar_scriptversion2() in 0.000327 seconds -[ 900s] Executed Test_vvar_scriptversion3() in 0.000307 seconds -[ 900s] Executed Test_vvar_scriptversion4() in 0.000345 seconds -[ 900s] Executed 31 tests in 0.460913 seconds -[ 900s] -[ 900s] From test_excmd.vim: -[ 900s] Executed Test_address_line_overflow() in 0.000784 seconds -[ 900s] Executed Test_append_cmd() in 0.000925 seconds -[ 900s] Executed Test_append_cmd_empty_buf() in 0.122367 seconds -[ 900s] Executed Test_buffers_lastused() in 0.001569 seconds -[ 900s] Executed Test_change_cmd() in 0.000921 seconds -[ 900s] Executed Test_command_not_implemented_E319() in 0.000358 seconds -[ 900s] Executed Test_confirm_cmd() in 0.793062 seconds -[ 900s] Executed Test_confirm_cmd_cancel() in 0.088147 seconds -[ 900s] Executed Test_confirm_q_wq() in 0.250490 seconds -[ 900s] Executed Test_confirm_write_partial_file() in 0.258963 seconds -[ 900s] Executed Test_confirm_write_ro() in 0.418672 seconds -[ 900s] Executed Test_copy() in 0.000673 seconds -[ 900s] Executed Test_drop_cmd() in 0.012449 seconds -[ 900s] Executed Test_ex_delete() in 0.000727 seconds -[ 900s] Executed Test_excmd_delete() in 0.000748 seconds -[ 900s] Executed Test_file_cmd() in 0.000974 seconds -[ 900s] Executed Test_filetype_cmd() in 0.000304 seconds -[ 900s] Executed Test_insert_cmd() in 0.012899 seconds -[ 900s] Executed Test_insert_cmd_empty_buf() in 0.053516 seconds -[ 900s] Executed Test_language_cmd() in 0.000384 seconds -[ 900s] Executed Test_mode_cmd() in 0.000276 seconds -[ 900s] Executed Test_not_break_expression_register() in 0.000236 seconds -[ 900s] Executed Test_print_cmd() in 0.000271 seconds -[ 900s] Executed Test_range_error() in 0.000395 seconds -[ 900s] Executed Test_read_cmd() in 0.091849 seconds -[ 900s] Executed Test_redir_cmd() in 0.000725 seconds -[ 900s] Executed Test_redir_cmd_readonly() in 0.028897 seconds -[ 900s] Executed Test_run_excmd_with_text_locked() in 0.001214 seconds -[ 900s] Executed Test_sandbox() in 0.000921 seconds -[ 900s] Executed Test_sleep_cmd() in 0.000271 seconds -[ 900s] Executed Test_using_zero_in_range() in 0.000717 seconds -[ 900s] Executed Test_verbose_cmd() in 0.000313 seconds -[ 900s] Executed Test_winsize_cmd() in 0.000313 seconds -[ 900s] Executed 33 tests in 2.165099 seconds -[ 900s] -[ 900s] From test_exec_while_if.vim: -[ 900s] Executed Test_exec_while_if() in 0.001759 seconds -[ 900s] Executed 1 test in 0.090284 seconds -[ 900s] -[ 900s] From test_execute_func.vim: -[ 900s] Executed Test_execute_does_not_change_col() in 0.000401 seconds -[ 900s] Executed Test_execute_func_with_null() in 0.000371 seconds -[ 900s] Executed Test_execute_list() in 0.000278 seconds -[ 900s] Executed Test_execute_not_silent() in 0.000330 seconds -[ 900s] Executed Test_execute_string() in 0.085844 seconds -[ 900s] Executed Test_win_execute() in 0.001376 seconds -[ 900s] Executed Test_win_execute_on_startup() in 0.208365 seconds -[ 900s] Executed Test_win_execute_other_tab() in 0.000375 seconds -[ 900s] Executed Test_win_execute_update_ruler() in 0.002347 seconds -[ 900s] Executed Test_win_execute_visual_redraw() in 0.001420 seconds -[ 900s] Executed 10 tests in 0.407113 seconds -[ 900s] -[ 900s] From test_exists.vim: -[ 900s] Executed Test_exists() in 0.001176 seconds -[ 900s] Executed Test_exists_funcarg() in 0.000250 seconds -[ 900s] Executed 2 tests in 0.109032 seconds -[ 900s] -[ 900s] From test_exists_autocmd.vim: -[ 900s] Executed Test_AutoCommands() in 0.001040 seconds -[ 900s] Executed 1 test in 0.100074 seconds -[ 900s] -[ 900s] From test_exit.vim: -[ 900s] Executed Test_exit_code() in 1.262613 seconds -[ 900s] Executed Test_exit_error_reading_input() in 0.162460 seconds -[ 900s] Executed Test_exiting() in 1.481826 seconds -[ 900s] Executed 3 tests in 2.940009 seconds -[ 900s] -[ 900s] From test_expr.vim: -[ 900s] Executed Test_bitwise_shift() in 2.164900 seconds -[ 900s] Executed Test_broken_number() in 0.853498 seconds -[ 900s] Executed Test_compare_with_null() in 0.000364 seconds -[ 900s] Executed Test_dict() in 0.075476 seconds -[ 900s] Executed Test_empty_concatenate() in 0.097609 seconds -[ 900s] Executed Test_equal() in 0.000423 seconds -[ 900s] Executed Test_eval_after_if() in 0.000260 seconds -[ 900s] Executed Test_expr_completion() in 0.006456 seconds -[ 900s] Executed Test_expr_eval_error() in 1.099078 seconds -[ 900s] Executed Test_float_compare() in 0.234622 seconds -[ 900s] Executed Test_funcref() in 0.000454 seconds -[ 900s] Executed Test_function_outside_script() in 0.244400 seconds -[ 900s] Executed Test_function_with_funcref() in 0.154754 seconds -[ 900s] Executed Test_getreg_empty_list() in 0.475802 seconds -[ 900s] Executed Test_loop_over_null_list() in 0.255441 seconds -[ 900s] Executed Test_max_min_errors() in 0.793232 seconds -[ 900s] Executed Test_method_with_prefix() in 0.287912 seconds -[ 900s] Executed Test_op_falsy() in 0.163947 seconds -[ 900s] Executed Test_op_ternary() in 0.470474 seconds -[ 900s] Executed Test_option_value() in 0.192997 seconds -[ 900s] Executed Test_printf_64bit() in 0.236281 seconds -[ 900s] Executed Test_printf_errors() in 1.590331 seconds -[ 900s] Executed Test_printf_float() in 0.299105 seconds -[ 900s] Executed Test_printf_misc() in 0.306104 seconds -[ 900s] Executed Test_printf_spec_b() in 0.129338 seconds -[ 900s] Executed Test_printf_spec_s() in 0.052155 seconds -[ 900s] Executed Test_setmatches() in 0.246611 seconds -[ 900s] Executed Test_setreg_null_list() in 0.068931 seconds -[ 900s] Executed Test_special_char() in 0.121648 seconds -[ 900s] Executed Test_strcharpart() in 0.243056 seconds -[ 900s] Executed Test_strgetchar() in 0.708927 seconds -[ 900s] Executed Test_string_interp() in 0.509919 seconds -[ 900s] Executed Test_version() in 0.000308 seconds -[ 900s] Executed Test_white_in_function_call() in 0.128734 seconds -[ 900s] Executed 34 tests in 12.232695 seconds -[ 900s] -[ 900s] From test_file_size.vim: -[ 900s] Executed Test_File_Read_Write() in 0.092598 seconds -[ 900s] Executed Test_File_Size() in 1.164260 seconds -[ 900s] Executed 2 tests in 1.277553 seconds -[ 900s] -[ 900s] From test_filechanged.vim: -[ 900s] Executed Test_FileChangedShell_edit() in 0.157003 seconds -[ 900s] Executed Test_FileChangedShell_edit_dialog() in 0.391706 seconds -[ 900s] Executed Test_FileChangedShell_newbuf() in 0.158597 seconds -[ 900s] Executed Test_FileChangedShell_reload() in 6.288785 seconds -[ 900s] Executed Test_file_changed_dialog() in 5.163867 seconds -[ 900s] Executed 5 tests in 12.185353 seconds -[ 900s] -[ 900s] From test_fileformat.vim: -[ 900s] Executed Test_fileformat_after_bw() in 0.000444 seconds -[ 900s] Executed Test_fileformat_autocommand() in 0.126940 seconds -[ 900s] Executed Test_fileformat_nomodifiable() in 0.000407 seconds -[ 900s] Executed Test_fileformat_on_startup() in 0.622649 seconds -[ 900s] Executed Test_fileformat_plusplus_read() in 0.092648 seconds -[ 900s] Executed Test_fileformats() in 3.335777 seconds -[ 900s] Executed 6 tests in 4.305613 seconds -[ 900s] -[ 900s] From test_filetype.vim: -[ 900s] Executed Test_bas_file() in 0.449255 seconds -[ 900s] Executed Test_cfg_file() in 0.317168 seconds -[ 900s] Executed Test_conf_type() in 0.018875 seconds -[ 900s] Executed Test_d_file() in 0.457183 seconds -[ 900s] Executed Test_dat_file() in 0.254947 seconds -[ 900s] Executed Test_dep3patch_file() in 0.408339 seconds -[ 900s] Executed Test_detection() in 0.003412 seconds -[ 900s] Executed Test_dsl_file() in 0.100559 seconds -[ 900s] Executed Test_emptybuf_ftdetect() in 0.007799 seconds -[ 900s] Executed Test_ex_file() in 0.270945 seconds -[ 900s] Executed Test_filetype_detection() in 2.293774 seconds -[ 900s] Executed Test_filetype_indent_off() in 0.008285 seconds -[ 900s] Executed Test_foam_file() in 0.393263 seconds -[ 900s] Executed Test_frm_file() in 0.132882 seconds -[ 900s] Executed Test_fs_file() in 0.469798 seconds -[ 900s] Executed Test_git_file() in 0.317045 seconds -[ 900s] Executed Test_hook_file() in 0.160288 seconds -[ 900s] Executed Test_m_file() in 1.194514 seconds -[ 900s] Executed Test_mod_file() in 0.707959 seconds -[ 900s] Executed Test_other_type() in 0.093277 seconds -[ 900s] Executed Test_patch_file() in 0.217385 seconds -[ 900s] Executed Test_perl_file() in 0.023187 seconds -[ 900s] Executed Test_pp_file() in 0.321554 seconds -[ 900s] Executed Test_prg_file() in 0.418641 seconds -[ 900s] Executed Test_sc_file() in 0.347305 seconds -[ 900s] Executed Test_scd_file() in 0.022603 seconds -[ 900s] Executed Test_script_detection() in 3.319217 seconds -[ 900s] Executed Test_setfiletype_completion() in 0.001122 seconds -[ 900s] Executed Test_src_file() in 0.151193 seconds -[ 900s] Executed Test_sys_file() in 0.171454 seconds -[ 900s] Executed Test_tex_file() in 0.062858 seconds -[ 900s] Executed Test_tf_file() in 0.122830 seconds -[ 900s] Executed Test_ts_file() in 0.039923 seconds -[ 900s] Executed Test_ttl_file() in 0.118297 seconds -[ 900s] Executed Test_xpm_file() in 0.066747 seconds -[ 900s] Executed 35 tests in 13.505890 seconds -[ 900s] -[ 900s] From test_filter_cmd.vim: -[ 900s] Executed Test_filter() in 0.001463 seconds -[ 900s] Executed Test_filter_cmd_completion() in 0.001525 seconds -[ 900s] Executed Test_filter_cmd_with_filter() in 0.080969 seconds -[ 900s] Executed Test_filter_commands() in 0.002327 seconds -[ 900s] Executed Test_filter_display() in 0.000807 seconds -[ 900s] Executed Test_filter_fails() in 0.000483 seconds -[ 900s] Executed Test_filter_scriptnames() in 0.000262 seconds -[ 900s] Executed 7 tests in 0.146725 seconds -[ 900s] -[ 900s] From test_filter_map.vim: -[ 900s] Executed Test_filter_map_dict_expr_funcref() in 0.000469 seconds -[ 900s] Executed Test_filter_map_dict_expr_string() in 0.000313 seconds -[ 900s] Executed Test_filter_map_list_expr_funcref() in 0.000339 seconds -[ 900s] Executed Test_filter_map_list_expr_string() in 0.000289 seconds -[ 900s] Executed Test_filter_map_nested() in 0.000260 seconds -[ 900s] Executed Test_filter_map_string() in 0.369041 seconds -[ 900s] Executed Test_map_and_modify() in 0.000459 seconds -[ 900s] Executed Test_map_filter_fails() in 0.000466 seconds -[ 900s] Executed Test_mapnew_blob() in 0.000251 seconds -[ 900s] Executed Test_mapnew_dict() in 0.000274 seconds -[ 900s] Executed Test_mapnew_list() in 0.000263 seconds -[ 900s] Executed 11 tests in 0.406479 seconds -[ 900s] -[ 900s] From test_find_complete.vim: -[ 900s] Executed Test_find_complete() in 0.308570 seconds -[ 900s] Executed 1 test in 0.368203 seconds -[ 900s] -[ 900s] From test_findfile.vim: -[ 900s] Executed Test_find_cmd() in 0.307100 seconds -[ 900s] Executed Test_find_non_existing_path() in 0.093399 seconds -[ 900s] Executed Test_finddir() in 0.363851 seconds -[ 900s] Executed Test_finddir_error() in 0.000552 seconds -[ 900s] Executed Test_findfile() in 0.141790 seconds -[ 900s] Executed Test_findfile_error() in 0.000530 seconds -[ 900s] Executed 6 tests in 0.921737 seconds -[ 900s] -[ 900s] From test_fixeol.vim: -[ 900s] Executed Test_fixeol() in 0.567894 seconds -[ 900s] Executed 1 test in 0.638079 seconds -[ 900s] -[ 900s] From test_flatten.vim: -[ 900s] Executed Test_flatten() in 0.000787 seconds -[ 900s] Executed Test_flattennew() in 0.000303 seconds -[ 900s] Executed 2 tests in 0.033791 seconds -[ 900s] -[ 900s] From test_float_func.vim: -[ 900s] Executed Test_abs() in 0.000550 seconds -[ 900s] Executed Test_acos() in 0.000339 seconds -[ 900s] Executed Test_asin() in 0.000318 seconds -[ 900s] Executed Test_atan() in 0.000314 seconds -[ 900s] Executed Test_atan2() in 0.000327 seconds -[ 900s] Executed Test_ceil() in 0.000320 seconds -[ 900s] Executed Test_cos() in 0.000325 seconds -[ 900s] Executed Test_cosh() in 0.000304 seconds -[ 900s] Executed Test_exp() in 0.000310 seconds -[ 900s] Executed Test_float2nr() in 0.000276 seconds -[ 900s] Executed Test_float_misc() in 0.000339 seconds -[ 900s] Executed Test_float_quotes() in 0.000347 seconds -[ 900s] Executed Test_float_quotes_from_legacy() in 0.000257 seconds -[ 900s] Executed Test_floor() in 0.000319 seconds -[ 900s] Executed Test_fmod() in 0.000331 seconds -[ 900s] Executed Test_isinf() in 0.000254 seconds -[ 900s] Executed Test_isnan() in 0.000247 seconds -[ 900s] Executed Test_log() in 0.000359 seconds -[ 900s] Executed Test_log10() in 0.000323 seconds -[ 900s] Executed Test_pow() in 0.000336 seconds -[ 900s] Executed Test_round() in 0.000322 seconds -[ 900s] Executed Test_sin() in 0.000328 seconds -[ 900s] Executed Test_sinh() in 0.000311 seconds -[ 900s] Executed Test_sqrt() in 0.000303 seconds -[ 900s] Executed Test_str2float() in 0.139968 seconds -[ 900s] Executed Test_tan() in 0.000354 seconds -[ 900s] Executed Test_tanh() in 0.000318 seconds -[ 900s] Executed Test_trunc() in 0.000354 seconds -[ 900s] Executed 28 tests in 0.164792 seconds -[ 900s] -[ 900s] From test_fnameescape.vim: -[ 900s] Executed Test_fnameescape() in 0.152122 seconds -[ 900s] Executed 1 test in 0.185627 seconds -[ 900s] -[ 900s] From test_fold.vim: -[ 900s] Executed Test_address_fold() in 0.000965 seconds -[ 900s] Executed Test_combining_folds_indent() in 0.000563 seconds -[ 900s] Executed Test_combining_folds_marker() in 0.000528 seconds -[ 900s] Executed Test_fold_create_delete() in 0.000324 seconds -[ 900s] Executed Test_fold_create_delete_create() in 0.000298 seconds -[ 900s] Executed Test_fold_create_marker_in_C() in 0.002461 seconds -[ 900s] Executed Test_fold_delete_first_line() in 0.000540 seconds -[ 900s] Executed Test_fold_delete_recursive_fold() in 0.000555 seconds -[ 900s] Executed Test_fold_delete_with_marker() in 0.000782 seconds -[ 900s] Executed Test_fold_delete_with_marker_and_whichwrap() in 0.000578 seconds -[ 900s] Executed Test_fold_error() in 0.001056 seconds -[ 900s] Executed Test_fold_expr() in 0.001061 seconds -[ 900s] Executed Test_fold_expr_error() in 0.000572 seconds -[ 900s] Executed Test_fold_indent() in 0.000662 seconds -[ 900s] Executed Test_fold_jump() in 0.000702 seconds -[ 900s] Executed Test_fold_last_line_with_pagedown() in 0.001562 seconds -[ 900s] Executed Test_fold_manual() in 0.000965 seconds -[ 900s] Executed Test_fold_marker() in 0.000691 seconds -[ 900s] Executed Test_fold_merge_recrusive() in 0.000543 seconds -[ 900s] Executed Test_fold_move() in 0.000642 seconds -[ 900s] Executed Test_fold_move_foldlevel() in 0.000641 seconds -[ 900s] Executed Test_fold_relative_move() in 0.000779 seconds -[ 900s] Executed Test_fold_split() in 0.000562 seconds -[ 900s] Executed Test_fold_syntax() in 0.000782 seconds -[ 900s] Executed Test_foldclose_opt() in 0.432910 seconds -[ 900s] Executed Test_foldcolumn_multibyte_char() in 0.022109 seconds -[ 900s] Executed Test_folddoopen_folddoclosed() in 0.000745 seconds -[ 900s] Executed Test_foldexpr_2() in 0.000581 seconds -[ 900s] Executed Test_foldexpr_foldlevel() in 0.000779 seconds -[ 900s] Executed Test_foldexpr_no_interrupt_addsub() in 0.000571 seconds -[ 900s] Executed Test_foldexpr_scriptlocal_func() in 0.001142 seconds -[ 900s] Executed Test_foldopen_exception() in 0.000424 seconds -[ 900s] Executed Test_folds_marker_in_comment() in 0.000650 seconds -[ 900s] Executed Test_folds_marker_in_comment2() in 0.000577 seconds -[ 900s] Executed Test_folds_with_rnu() in 0.173106 seconds -[ 900s] Executed Test_foldtext_recursive() in 0.000724 seconds -[ 900s] Executed Test_foldtext_scriptlocal_func() in 0.001297 seconds -[ 900s] Executed Test_foldtextresult() in 0.000636 seconds -[ 900s] Executed Test_indent_append_blank_small_fold_close() in 0.000562 seconds -[ 900s] Executed Test_indent_append_under_blank_line() in 0.000577 seconds -[ 900s] Executed Test_indent_fold() in 0.000576 seconds -[ 900s] Executed Test_indent_fold2() in 0.000611 seconds -[ 900s] Executed Test_indent_fold_max() in 0.000549 seconds -[ 900s] Executed Test_indent_fold_with_read() in 0.104177 seconds -[ 900s] Executed Test_indent_one_line_fold_close() in 0.000664 seconds -[ 900s] Executed Test_manual_fold_with_filter() in 0.039612 seconds -[ 900s] Executed Test_move_folds_around_indent() in 0.001347 seconds -[ 900s] Executed Test_move_folds_around_manual() in 0.001882 seconds -[ 900s] Executed Test_move_no_folds() in 0.000326 seconds -[ 900s] Executed Test_undo_fold_deletion() in 0.000631 seconds -[ 900s] Executed Test_update_folds_expr_read() in 0.032848 seconds -[ 900s] Executed 51 tests in 0.932689 seconds -[ 900s] -[ 900s] From test_functions.vim: -[ 900s] Executed Test_00_bufexists() in 0.000815 seconds -[ 900s] Executed Test_Executable() in 0.000525 seconds -[ 900s] Executed Test_append() in 0.000602 seconds -[ 900s] Skipped -[ 900s] Executed Test_balloon_show() in 0.000330 seconds -[ 900s] Skipped -[ 900s] Executed Test_browse() in 0.000275 seconds -[ 900s] Skipped -[ 900s] Executed Test_browsedir() in 0.000271 seconds -[ 900s] Executed Test_bufadd_bufload() in 0.103600 seconds -[ 900s] Executed Test_builtin_check() in 0.011804 seconds -[ 900s] Executed Test_byte2line_line2byte() in 0.001087 seconds -[ 900s] Executed Test_byteidx() in 0.000388 seconds -[ 900s] Executed Test_call() in 0.009477 seconds -[ 900s] Executed Test_changenr() in 0.000706 seconds -[ 900s] Executed Test_char2nr() in 0.000327 seconds -[ 900s] Executed Test_charclass() in 0.000257 seconds -[ 900s] Executed Test_charidx() in 0.000409 seconds -[ 900s] Executed Test_col() in 0.000784 seconds -[ 900s] Executed Test_confirm() in 0.000750 seconds -[ 900s] Executed Test_count() in 0.000487 seconds -[ 900s] Executed Test_default_arg_value() in 0.000243 seconds -[ 900s] Executed Test_delete_rf() in 0.137577 seconds -[ 900s] Executed Test_echohl() in 0.000871 seconds -[ 900s] Executed Test_echoraw() in 0.064063 seconds -[ 900s] Executed Test_empty() in 0.000429 seconds -[ 900s] Executed Test_eval() in 0.000301 seconds -[ 900s] Executed Test_eventhandler() in 0.000252 seconds -[ 900s] Skipped -[ 900s] Executed Test_executable_longname() in 0.000270 seconds -[ 900s] Skipped -[ 900s] Executed Test_executable_windows_store_apps() in 0.000265 seconds -[ 900s] Executed Test_exepath() in 0.000275 seconds -[ 900s] Executed Test_filewritable() in 0.082628 seconds -[ 900s] Executed Test_func_exists_on_reload() in 0.033963 seconds -[ 900s] Executed Test_func_range_with_edit() in 0.124785 seconds -[ 900s] Executed Test_func_sandbox() in 0.000487 seconds -[ 900s] Executed Test_funcref_to_string() in 0.000256 seconds -[ 900s] Executed Test_garbagecollect_now_fails() in 0.000298 seconds -[ 900s] Executed Test_getbufvar() in 0.000543 seconds -[ 900s] Executed Test_getchar() in 0.000656 seconds -[ 900s] Executed Test_getcurpos_setpos() in 0.000592 seconds -[ 900s] Executed Test_getmousepos() in 0.000709 seconds -[ 900s] Executed Test_getpid() in 0.004293 seconds -[ 900s] Executed Test_gettext() in 0.000436 seconds -[ 900s] Executed Test_glob() in 0.037986 seconds -[ 900s] Executed Test_has() in 0.000311 seconds -[ 900s] Executed Test_hlexists() in 0.014521 seconds -[ 900s] Executed Test_hostname() in 0.004509 seconds -[ 900s] Executed Test_input_func() in 0.001547 seconds -[ 900s] Executed Test_inputdialog() in 0.011066 seconds -[ 900s] Executed Test_inputlist() in 0.002413 seconds -[ 900s] Executed Test_inputsecret() in 0.000846 seconds -[ 900s] Executed Test_isabsolutepath() in 0.000660 seconds -[ 900s] Executed Test_islocked() in 0.000693 seconds -[ 900s] Executed Test_last_buffer_nr() in 0.000593 seconds -[ 900s] Executed Test_len() in 0.000755 seconds -[ 900s] Executed Test_libcall_libcallnr() in 0.008316 seconds -[ 900s] Executed Test_match_func() in 0.000673 seconds -[ 900s] Executed Test_matchend() in 0.000486 seconds -[ 900s] Executed Test_matchlist() in 0.000477 seconds -[ 900s] Executed Test_matchstr() in 0.000499 seconds -[ 900s] Executed Test_matchstrpos() in 0.000487 seconds -[ 900s] Executed Test_max() in 0.000602 seconds -[ 900s] Executed Test_min() in 0.000643 seconds -[ 900s] Executed Test_mode() in 0.007392 seconds -[ 900s] Executed Test_nextnonblank_prevnonblank() in 0.000998 seconds -[ 900s] Executed Test_nr2char() in 0.000572 seconds -[ 900s] Executed Test_pathshorten() in 0.000655 seconds -[ 900s] Executed Test_platform_name() in 0.004106 seconds -[ 900s] Executed Test_range() in 0.004604 seconds -[ 900s] Executed Test_readdir() in 0.093704 seconds -[ 900s] Executed Test_readdir_sort() in 0.166809 seconds -[ 900s] Executed Test_readdirex() in 0.145547 seconds -[ 900s] Skipped -[ 900s] Executed Test_readdirex_sort() in 0.210251 seconds -[ 900s] Executed Test_redo_in_nested_functions() in 0.001693 seconds -[ 900s] Executed Test_reg_executing_and_recording() in 0.002215 seconds -[ 900s] Executed Test_resolve_unix() in 0.022878 seconds -[ 900s] Skipped -[ 900s] Executed Test_resolve_win32() in 0.000711 seconds -[ 900s] Executed Test_screen_functions() in 0.000622 seconds -[ 900s] Executed Test_setbufvar_keep_window_title() in 0.126548 seconds -[ 900s] Executed Test_setbufvar_options() in 0.005271 seconds -[ 900s] Executed Test_setline() in 0.000976 seconds -[ 900s] Executed Test_simplify() in 0.111657 seconds -[ 900s] Executed Test_state() in 1.424406 seconds -[ 900s] Found errors in Test_state(): -[ 900s] command line..script /home/abuild/rpmbuild/BUILD/vim90/src/testdir/runtest.vim[464]..function RunTheTest[44]..Test_state[40]..WaitForAssert[2]..5_WaitForCommon[11]..41 line 1: Pattern 'state: aSc; mode: i' does not match 'state: mSc; mode: n\[ occurs 38 times]4,3 All' -[ 900s] Flaky test failed, running it again -[ 900s] Executed Test_state() in 0.778148 seconds -[ 900s] Executed Test_str2nr() in 0.026686 seconds -[ 900s] Executed Test_strftime() in 0.001791 seconds -[ 900s] Executed Test_stridx() in 0.000695 seconds -[ 900s] Executed Test_strpart() in 0.000600 seconds -[ 900s] Executed Test_strptime() in 0.000628 seconds -[ 900s] Executed Test_strridx() in 0.000560 seconds -[ 900s] Executed Test_strwidth() in 0.080795 seconds -[ 900s] Executed Test_test_void() in 0.000656 seconds -[ 900s] Executed Test_tolower() in 0.000839 seconds -[ 900s] Executed Test_toupper() in 0.000775 seconds -[ 900s] Executed Test_tr() in 0.000698 seconds -[ 900s] Executed Test_trim() in 0.000789 seconds -[ 900s] Executed Test_virtcol() in 0.001035 seconds -[ 900s] Executed 94 tests in 5.932262 seconds -[ 900s] SKIPPED Test_balloon_show(): balloon_eval feature missing -[ 900s] SKIPPED Test_browse(): browse feature missing -[ 900s] SKIPPED Test_browsedir(): browse feature missing -[ 900s] SKIPPED Test_executable_longname(): only works on MS-Windows -[ 900s] SKIPPED Test_executable_windows_store_apps(): only works on MS-Windows -[ 900s] SKIPPED Test_readdirex_sort(): de_DE collation is not available -[ 900s] SKIPPED Test_resolve_win32(): only works on MS-Windows -[ 900s] -[ 900s] From test_function_lists.vim: -[ 900s] Executed Test_function_lists() in 0.360370 seconds -[ 900s] Executed 1 test in 0.423993 seconds -[ 900s] -[ 900s] From test_getcwd.vim: -[ 900s] Executed Test_GetCwd() in 0.003172 seconds -[ 900s] Executed Test_GetCwd_lcd_shellslash() in 0.000929 seconds -[ 900s] Executed Test_Tab_Local_Cwd() in 0.004314 seconds -[ 900s] Executed 3 tests in 0.101400 seconds -[ 900s] -[ 900s] From test_getvar.vim: -[ 900s] Executed Test_get_dict() in 0.000320 seconds -[ 900s] Executed Test_get_func() in 0.000297 seconds -[ 900s] Executed Test_get_lambda() in 0.000265 seconds -[ 900s] Executed Test_get_list() in 0.000225 seconds -[ 900s] Executed Test_gettabvar_in_tabline() in 0.000495 seconds -[ 900s] Executed Test_var() in 0.000780 seconds -[ 900s] Executed 6 tests in 0.096886 seconds -[ 900s] -[ 900s] From test_gf.vim: -[ 900s] Executed Test_gF() in 0.340281 seconds -[ 900s] Executed Test_gf() in 0.158001 seconds -[ 900s] Executed Test_gf_error() in 0.001230 seconds -[ 900s] Executed Test_gf_includeexpr() in 0.000639 seconds -[ 900s] Executed Test_gf_url() in 0.001068 seconds -[ 900s] Executed Test_gf_visual() in 0.313574 seconds -[ 900s] Executed Test_includeexpr_scriptlocal_func() in 0.001313 seconds -[ 900s] Executed 7 tests in 0.924194 seconds -[ 900s] -[ 900s] From test_gn.vim: -[ 900s] Executed Test_gN_repeat() in 0.000701 seconds -[ 900s] Executed Test_gN_then_gn() in 0.000627 seconds -[ 900s] Executed Test_gn_command() in 0.001688 seconds -[ 900s] Executed Test_gn_multi_line() in 0.000588 seconds -[ 900s] Executed 4 tests in 0.097936 seconds -[ 900s] -[ 900s] From test_goto.vim: -[ 900s] Executed Test_cursorline_keep_col() in 0.000660 seconds -[ 900s] Executed Test_gD() in 0.000590 seconds -[ 900s] Executed Test_gD_char() in 0.000577 seconds -[ 900s] Executed Test_gD_comment() in 0.000590 seconds -[ 900s] Executed Test_gD_inline_comment() in 0.000595 seconds -[ 900s] Executed Test_gD_string() in 0.000575 seconds -[ 900s] Executed Test_gD_string_same_line() in 0.000568 seconds -[ 900s] Executed Test_gD_too() in 0.000606 seconds -[ 900s] Executed Test_gd() in 0.000581 seconds -[ 900s] Executed Test_gd_comment() in 0.000594 seconds -[ 900s] Executed Test_gd_comment_in_string() in 0.000604 seconds -[ 900s] Executed Test_gd_inline_comment() in 0.000603 seconds -[ 900s] Executed Test_gd_inline_comment_body() in 0.000597 seconds -[ 900s] Executed Test_gd_inline_comment_only() in 0.000562 seconds -[ 900s] Executed Test_gd_kr_style() in 0.000578 seconds -[ 900s] Executed Test_gd_local_block() in 0.000598 seconds -[ 900s] Executed Test_gd_missing_braces() in 0.000574 seconds -[ 900s] Executed Test_gd_not_local() in 0.000550 seconds -[ 900s] Executed Test_gd_string() in 0.000598 seconds -[ 900s] Executed Test_gd_string_in_comment() in 0.000576 seconds -[ 900s] Executed Test_gd_string_only() in 0.000577 seconds -[ 900s] Executed Test_gd_trailing_comment() in 0.000586 seconds -[ 900s] Executed Test_gd_trailing_multiline_comment() in 0.000586 seconds -[ 900s] Executed Test_gd_with_fold() in 0.000604 seconds -[ 900s] Executed Test_motion_c_comment() in 0.000575 seconds -[ 900s] Executed Test_motion_if_elif_else_endif() in 0.000690 seconds -[ 900s] Executed 26 tests in 0.112597 seconds -[ 900s] -[ 900s] From test_gui.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_gui.vim: cannot start the GUI -[ 900s] -[ 900s] From test_gui_init.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_gui_init.vim: cannot start the GUI -[ 900s] -[ 900s] From test_hardcopy.vim: -[ 900s] Executed Test_dark_background() in 0.205701 seconds -[ 900s] Executed Test_empty_buffer() in 0.000955 seconds -[ 900s] Executed Test_errors() in 0.002320 seconds -[ 900s] Executed Test_fname_with_spaces() in 0.003525 seconds -[ 900s] Executed Test_illegal_byte() in 0.001163 seconds -[ 900s] Executed Test_printexpr() in 0.068080 seconds -[ 900s] Executed Test_printheader_parsing() in 0.000489 seconds -[ 900s] Executed Test_printmbcharset() in 0.032985 seconds -[ 900s] Executed Test_printmbfont() in 0.863489 seconds -[ 900s] Executed Test_printoptions() in 0.505528 seconds -[ 900s] Executed 10 tests in 1.741676 seconds -[ 900s] -[ 900s] From test_help.vim: -[ 900s] Executed Test_help_completion() in 0.003947 seconds -[ 900s] Executed Test_help_errors() in 0.014971 seconds -[ 900s] Executed Test_help_expr() in 0.005883 seconds -[ 900s] Executed Test_help_keyword() in 0.004827 seconds -[ 900s] Executed Test_help_local_additions() in 0.295850 seconds -[ 900s] Executed Test_help_long_argument() in 0.003622 seconds -[ 900s] Executed Test_help_restore_snapshot() in 0.012180 seconds -[ 900s] Executed Test_help_restore_snapshot_split() in 0.004998 seconds -[ 900s] Executed Test_help_using_visual_match() in 0.096108 seconds -[ 900s] Executed Test_help_window_height() in 0.004461 seconds -[ 900s] Executed Test_helptag_cmd() in 0.069347 seconds -[ 900s] Executed Test_helptag_cmd_readonly() in 0.239841 seconds -[ 900s] Executed 12 tests in 0.836819 seconds -[ 900s] -[ 900s] From test_help_tagjump.vim: -[ 900s] Executed Test_help_complete() in 0.467667 seconds -[ 900s] Executed Test_help_respect_current_file_lang() in 0.478290 seconds -[ 900s] Executed Test_help_tagjump() in 0.181133 seconds -[ 900s] Executed 3 tests in 1.141144 seconds -[ 900s] -[ 900s] From test_hide.vim: -[ 900s] Executed Test_hide() in 0.004466 seconds -[ 900s] Executed 1 test in 0.037290 seconds -[ 900s] -[ 900s] From test_highlight.vim: -[ 900s] Executed Test_1_highlight_Normalgroup_exists() in 0.000414 seconds -[ 900s] Executed Test_colorcolumn() in 0.094415 seconds -[ 900s] Executed Test_colorcolumn_bri() in 0.153781 seconds -[ 900s] Executed Test_colorcolumn_sbr() in 0.158144 seconds -[ 900s] Executed Test_colornames_assignment_and_lookup() in 0.000551 seconds -[ 900s] Executed Test_colornames_assignment_and_unassignment() in 0.000351 seconds -[ 900s] Executed Test_colornames_default_list() in 0.010797 seconds -[ 900s] Executed Test_colornames_overwrite_default() in 0.004155 seconds -[ 900s] Executed Test_cursorcolumn_callback() in 0.481420 seconds -[ 900s] Executed Test_cursorcolumn_insert_on_tab() in 0.199541 seconds -[ 900s] Executed Test_cursorline_after_yank() in 0.142772 seconds -[ 900s] Executed Test_cursorline_with_visualmode() in 0.123831 seconds -[ 900s] Executed Test_highlight() in 0.001259 seconds -[ 900s] Executed Test_highlight_User() in 0.000595 seconds -[ 900s] Executed Test_highlight_clear_restores_context() in 0.133434 seconds -[ 900s] Executed Test_highlight_clear_restores_links() in 0.000440 seconds -[ 900s] Executed Test_highlight_cmd_errors() in 0.000431 seconds -[ 900s] Executed Test_highlight_ctermul() in 0.000331 seconds -[ 900s] Executed Test_highlight_default() in 0.000496 seconds -[ 900s] Executed Test_highlight_default_colorscheme_restores_links() in 0.003169 seconds -[ 900s] Executed Test_highlight_eol_on_diff() in 0.001299 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline() in 0.002141 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline_breakindent() in 0.002199 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline_linewrap() in 0.003296 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline_rightleft() in 0.002086 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline_sign() in 0.002105 seconds -[ 900s] Executed Test_highlight_eol_with_cursorline_vertsplit() in 0.002698 seconds -[ 900s] Executed Test_highlight_opt() in 0.000905 seconds -[ 900s] Executed Test_highlight_start_stop() in 0.000520 seconds -[ 900s] Executed Test_highlight_term_attr() in 0.000451 seconds -[ 900s] Executed Test_hlget() in 0.130468 seconds -[ 900s] Executed Test_hlset() in 1.490930 seconds -[ 900s] Executed Test_put_before_cursorline() in 0.001057 seconds -[ 900s] Executed Test_termguicolors() in 0.000816 seconds -[ 900s] Executed Test_wincolor() in 0.138067 seconds -[ 900s] Executed Test_wincolor_listchars() in 0.137908 seconds -[ 900s] Skipped -[ 900s] Executed Test_xxlast_highlight_RGB_color() in 0.000296 seconds -[ 900s] Executed Test_z_no_space_before_xxx() in 0.000427 seconds -[ 900s] Executed 38 tests in 3.448258 seconds -[ 900s] SKIPPED Test_xxlast_highlight_RGB_color(): cannot start the GUI -[ 900s] -[ 900s] From test_history.vim: -[ 900s] Executed Test_History() in 0.005893 seconds -[ 900s] Executed Test_Search_history_window() in 0.000986 seconds -[ 900s] Executed Test_history_completion() in 0.000342 seconds -[ 900s] Executed Test_history_crypt_key() in 0.000344 seconds -[ 900s] Executed Test_history_search() in 0.001273 seconds -[ 900s] Executed Test_history_size() in 0.000449 seconds -[ 900s] Executed Test_history_truncates_long_entry() in 0.000350 seconds -[ 900s] Executed 7 tests in 0.050264 seconds -[ 900s] -[ 900s] From test_hlsearch.vim: -[ 900s] Executed Test_hlsearch() in 0.001851 seconds -[ 900s] Executed Test_hlsearch_eol_highlight() in 0.000932 seconds -[ 900s] Executed Test_hlsearch_hangs() in 0.102152 seconds -[ 900s] Executed 3 tests in 0.159497 seconds -[ 900s] -[ 900s] From test_iminsert.vim: -[ 900s] Skipped -[ 900s] Executed Test_getimstatus() in 0.000391 seconds -[ 900s] Executed Test_imactivatefunc_imstatusfunc_callback() in 0.134010 seconds -[ 900s] Executed Test_imactivatefunc_imstatusfunc_callback_no_breaks_foldopen() in 0.053579 seconds -[ 900s] Executed Test_iminsert2() in 0.000434 seconds -[ 900s] Skipped -[ 900s] Executed Test_iminsert_toggle() in 0.000285 seconds -[ 900s] Executed Test_lmap_in_insert_mode() in 0.000603 seconds -[ 900s] Executed 6 tests in 0.283263 seconds -[ 900s] SKIPPED Test_getimstatus(): xim feature missing -[ 900s] SKIPPED Test_iminsert_toggle(): only works in the GUI -[ 900s] -[ 900s] From test_increment.vim: -[ 900s] Executed Test_increment_empty_line() in 0.000952 seconds -[ 900s] Executed Test_increment_special_char() in 0.000686 seconds -[ 900s] Executed Test_increment_unsigned() in 0.000823 seconds -[ 900s] Executed Test_normal_increment_01() in 0.000733 seconds -[ 900s] Executed Test_normal_increment_02() in 0.000676 seconds -[ 900s] Executed Test_normal_increment_03() in 0.000833 seconds -[ 900s] Executed Test_normal_increment_signed_hexoct_nr() in 0.001040 seconds -[ 900s] Executed Test_normal_increment_with_virtualedit() in 0.000810 seconds -[ 900s] Executed Test_visual_increment_01() in 0.000773 seconds -[ 900s] Executed Test_visual_increment_02() in 0.000768 seconds -[ 900s] Executed Test_visual_increment_03() in 0.000828 seconds -[ 900s] Executed Test_visual_increment_04() in 0.000684 seconds -[ 900s] Executed Test_visual_increment_05() in 0.000727 seconds -[ 900s] Executed Test_visual_increment_06() in 0.000727 seconds -[ 900s] Executed Test_visual_increment_07() in 0.000781 seconds -[ 900s] Executed Test_visual_increment_08() in 0.000790 seconds -[ 900s] Executed Test_visual_increment_09() in 0.000726 seconds -[ 900s] Executed Test_visual_increment_10() in 0.000711 seconds -[ 900s] Executed Test_visual_increment_11() in 0.000729 seconds -[ 900s] Executed Test_visual_increment_12() in 0.000762 seconds -[ 900s] Executed Test_visual_increment_13() in 0.000809 seconds -[ 900s] Executed Test_visual_increment_14() in 0.000716 seconds -[ 900s] Executed Test_visual_increment_15() in 0.000714 seconds -[ 900s] Executed Test_visual_increment_16() in 0.000710 seconds -[ 900s] Executed Test_visual_increment_17() in 0.000744 seconds -[ 900s] Executed Test_visual_increment_18() in 0.000751 seconds -[ 900s] Executed Test_visual_increment_19() in 0.000696 seconds -[ 900s] Executed Test_visual_increment_20() in 0.000693 seconds -[ 900s] Executed Test_visual_increment_21() in 0.000727 seconds -[ 900s] Executed Test_visual_increment_22() in 0.000725 seconds -[ 900s] Executed Test_visual_increment_23() in 0.000663 seconds -[ 900s] Executed Test_visual_increment_24() in 0.000659 seconds -[ 900s] Executed Test_visual_increment_25() in 0.000656 seconds -[ 900s] Executed Test_visual_increment_26() in 0.000803 seconds -[ 900s] Executed Test_visual_increment_27() in 0.000684 seconds -[ 900s] Executed Test_visual_increment_28() in 0.000704 seconds -[ 900s] Executed Test_visual_increment_29() in 0.000703 seconds -[ 900s] Executed Test_visual_increment_30() in 0.000710 seconds -[ 900s] Executed Test_visual_increment_31() in 0.000720 seconds -[ 900s] Executed Test_visual_increment_32() in 0.001056 seconds -[ 900s] Executed Test_visual_increment_33() in 0.000701 seconds -[ 900s] Executed Test_visual_increment_34() in 0.000702 seconds -[ 900s] Executed Test_visual_increment_35() in 0.000717 seconds -[ 900s] Executed Test_visual_increment_36() in 0.000708 seconds -[ 900s] Executed Test_visual_increment_37() in 0.000726 seconds -[ 900s] Executed Test_visual_increment_38() in 0.000682 seconds -[ 900s] Executed 46 tests in 0.100556 seconds -[ 900s] -[ 900s] From test_increment_dbcs.vim: -[ 900s] Executed Test_increment_dbcs_1() in 0.000703 seconds -[ 900s] Executed 1 test in 0.015491 seconds -[ 900s] -[ 900s] From test_indent.vim: -[ 900s] Executed Test_copyindent() in 0.000834 seconds -[ 900s] Executed Test_formatting_keeps_first_line_indent() in 0.000852 seconds -[ 900s] Executed Test_indent_func() in 0.000562 seconds -[ 900s] Executed Test_indent_func_with_gq() in 0.001907 seconds -[ 900s] Executed Test_indent_operator_undo() in 0.001288 seconds -[ 900s] Executed Test_lisp_indent() in 0.000700 seconds -[ 900s] Executed Test_lisp_indent_change_multiline() in 0.000671 seconds -[ 900s] Executed Test_lisp_indent_quoted() in 0.000694 seconds -[ 900s] Executed Test_modeline_indent_expr() in 0.106895 seconds -[ 900s] Executed Test_preproc_indent() in 0.000677 seconds -[ 900s] Executed Test_preserveindent() in 0.000790 seconds -[ 900s] Executed Test_reindent() in 0.000728 seconds -[ 900s] Executed 12 tests in 0.196896 seconds -[ 900s] -[ 900s] From test_ins_complete.vim: -[ 900s] Executed Test_CompleteDoneDict() in 0.000892 seconds -[ 900s] Executed Test_CompleteDoneDictNoUserData() in 0.000726 seconds -[ 900s] Executed Test_CompleteDoneList() in 0.000698 seconds -[ 900s] Executed Test_CompleteDoneNone() in 0.000918 seconds -[ 900s] Executed Test_CompleteDone_undo() in 0.001070 seconds -[ 900s] Executed Test_compl_feedkeys() in 0.000801 seconds -[ 900s] Executed Test_compl_in_cmdwin() in 0.003675 seconds -[ 900s] Executed Test_complete_across_line() in 0.000823 seconds -[ 900s] Executed Test_complete_add_onechar() in 0.001418 seconds -[ 900s] Executed Test_complete_cmdline() in 0.118670 seconds -[ 900s] Executed Test_complete_erase_firstmatch() in 0.000956 seconds -[ 900s] Executed Test_complete_from_unlistedbuf() in 0.078936 seconds -[ 900s] Executed Test_complete_from_unloadedbuf() in 0.210631 seconds -[ 900s] Executed Test_complete_func_error() in 0.000870 seconds -[ 900s] Executed Test_complete_item_refresh_always() in 0.001218 seconds -[ 900s] Executed Test_complete_items() in 0.002029 seconds -[ 900s] Executed Test_complete_joinspaces() in 0.001463 seconds -[ 900s] Executed Test_complete_local_expansion() in 0.010904 seconds -[ 900s] Executed Test_complete_long_word() in 0.006252 seconds -[ 900s] Executed Test_complete_longest_match() in 0.002224 seconds -[ 900s] Executed Test_complete_mbyte_char_add() in 0.000864 seconds -[ 900s] Executed Test_complete_overrun() in 0.000692 seconds -[ 900s] Executed Test_complete_reginsert() in 0.001332 seconds -[ 900s] Executed Test_complete_smartindent() in 0.000882 seconds -[ 900s] Executed Test_complete_special_chars() in 0.000789 seconds -[ 900s] Executed Test_complete_stop() in 0.002062 seconds -[ 900s] Executed Test_complete_stopinsert_startinsert() in 0.000444 seconds -[ 900s] Executed Test_complete_undo() in 0.001076 seconds -[ 900s] Executed Test_complete_unreadable_thesaurus_file() in 0.099270 seconds -[ 900s] Executed Test_complete_wholeline() in 0.002350 seconds -[ 900s] Executed Test_complete_wholeline_unlistedbuf() in 0.078876 seconds -[ 900s] Executed Test_complete_wholeline_unloadedbuf() in 0.077557 seconds -[ 900s] Executed Test_complete_with_cindent() in 0.001177 seconds -[ 900s] Executed Test_complete_wrapscan() in 0.001435 seconds -[ 900s] Executed Test_completefunc_args() in 0.000696 seconds -[ 900s] Executed Test_completefunc_callback() in 0.473046 seconds -[ 900s] Executed Test_completefunc_error() in 0.001674 seconds -[ 900s] Executed Test_completefunc_info() in 0.001048 seconds -[ 900s] Executed Test_completefunc_invalid_data() in 0.000708 seconds -[ 900s] Executed Test_infercase_very_long_line() in 0.049915 seconds -[ 900s] Executed Test_ins_compl_tag_sft() in 0.115368 seconds -[ 900s] Executed Test_ins_complete() in 0.218128 seconds -[ 900s] Executed Test_ins_complete_add() in 0.001075 seconds -[ 900s] Executed Test_ins_complete_end_of_line() in 0.000995 seconds -[ 900s] Executed Test_ins_complete_invalid_byte() in 0.150410 seconds -[ 900s] Skipped -[ 900s] Executed Test_ins_completeslash() in 0.000324 seconds -[ 900s] Skipped -[ 900s] Executed Test_issue_7021() in 0.000265 seconds -[ 900s] Executed Test_no_mapping_for_ctrl_x_key() in 0.000855 seconds -[ 900s] Executed Test_omni_autoload() in 0.100886 seconds -[ 900s] Executed Test_omni_dash() in 0.000793 seconds -[ 900s] Executed Test_omni_throw() in 0.000616 seconds -[ 900s] Executed Test_omnifunc_callback() in 0.288251 seconds -[ 900s] Executed Test_pum_stopped_by_timer() in 0.328333 seconds -[ 900s] Executed Test_pum_with_folds_two_tabs() in 0.199991 seconds -[ 900s] Executed Test_pum_with_preview_win() in 0.309442 seconds -[ 900s] Executed Test_recursive_complete_func() in 0.001014 seconds -[ 900s] Executed Test_scrollbar_on_wide_char() in 0.127391 seconds -[ 900s] Executed Test_tagfunc_wipes_out_buffer() in 0.000533 seconds -[ 900s] Executed Test_thesaurusfunc_callback() in 0.270800 seconds -[ 900s] Executed Test_z1_complete_no_history() in 0.001039 seconds -[ 900s] Executed 60 tests in 3.448791 seconds -[ 900s] SKIPPED Test_ins_completeslash(): only works on MS-Windows -[ 900s] SKIPPED Test_issue_7021(): only works on MS-Windows -[ 900s] -[ 900s] From test_ins_complete_no_halt.vim: -[ 900s] Executed Test_auto_complete_backwards_no_halt() in 0.035651 seconds -[ 900s] Executed Test_ins_complete_no_halt() in 0.151699 seconds -[ 900s] Executed 2 tests in 0.199915 seconds -[ 900s] -[ 900s] From test_interrupt.vim: -[ 900s] Executed Test_interrupt() in 0.000719 seconds -[ 900s] Executed 1 test in 0.032875 seconds -[ 900s] -[ 900s] From test_job_fails.vim: -[ 900s] Executed Test_job_start_fails() in 0.010938 seconds -[ 900s] Executed 1 test in 0.110144 seconds -[ 900s] -[ 900s] From test_join.vim: -[ 900s] Executed Test_join_comments_2() in 0.002080 seconds -[ 900s] Executed Test_join_lines() in 0.000694 seconds -[ 900s] Executed Test_join_lines_with_comments() in 0.000818 seconds -[ 900s] Executed Test_join_marks() in 0.000730 seconds -[ 900s] Executed Test_join_spaces_marks() in 0.002056 seconds -[ 900s] Executed Test_join_with_count() in 0.000748 seconds -[ 900s] Executed 6 tests in 0.102518 seconds -[ 900s] -[ 900s] From test_json.vim: -[ 900s] Executed Test_js_decode() in 0.000973 seconds -[ 900s] Executed Test_js_encode() in 0.000442 seconds -[ 900s] Executed Test_json_decode() in 0.001086 seconds -[ 900s] Executed Test_json_encode() in 0.000534 seconds -[ 900s] Executed Test_json_encode_long() in 0.000256 seconds -[ 900s] Executed 5 tests in 0.041780 seconds -[ 900s] -[ 900s] From test_jumplist.vim: -[ 900s] Executed Test_empty_buffer() in 0.000588 seconds -[ 900s] Executed Test_getjumplist() in 0.094749 seconds -[ 900s] Executed Test_jumplist_invalid() in 0.000920 seconds -[ 900s] Executed 3 tests in 0.204460 seconds -[ 900s] -[ 900s] From test_lambda.vim: -[ 900s] Executed Test_closure_counter() in 0.000503 seconds -[ 900s] Executed Test_closure_error() in 0.040202 seconds -[ 900s] Executed Test_closure_refcount() in 0.000409 seconds -[ 900s] Executed Test_closure_unlet() in 0.000313 seconds -[ 900s] Executed Test_lambda_call_lambda_from_lambda() in 0.000287 seconds -[ 900s] Executed Test_lambda_capture_by_reference() in 0.000261 seconds -[ 900s] Executed Test_lambda_circular_reference() in 0.151953 seconds -[ 900s] Executed Test_lambda_closure_counter() in 0.000409 seconds -[ 900s] Executed Test_lambda_combination() in 0.000457 seconds -[ 900s] Executed Test_lambda_delfunc() in 0.000352 seconds -[ 900s] Executed Test_lambda_do_not_share_local_variable() in 0.000328 seconds -[ 900s] Executed Test_lambda_error() in 0.000307 seconds -[ 900s] Executed Test_lambda_fails() in 0.000450 seconds -[ 900s] Executed Test_lambda_feature() in 0.000243 seconds -[ 900s] Executed Test_lambda_refer_local_variable_from_other_scope() in 0.000265 seconds -[ 900s] Executed Test_lambda_scope() in 0.000373 seconds -[ 900s] Executed Test_lambda_share_scope() in 0.000298 seconds -[ 900s] Executed Test_lambda_side_effect() in 0.000283 seconds -[ 900s] Executed Test_lambda_vim9cmd_linebreak() in 0.286685 seconds -[ 900s] Executed Test_lambda_with_a_var() in 0.000315 seconds -[ 900s] Executed Test_lambda_with_filter() in 0.000263 seconds -[ 900s] Executed Test_lambda_with_index() in 0.000261 seconds -[ 900s] Executed Test_lambda_with_map() in 0.000251 seconds -[ 900s] Executed Test_lambda_with_partial() in 0.000250 seconds -[ 900s] Executed Test_lambda_with_sort() in 0.000254 seconds -[ 900s] Executed Test_lambda_with_timer() in 0.020741 seconds -[ 900s] Executed Test_named_function_closure() in 0.000316 seconds -[ 900s] Executed Test_not_lamda() in 0.000261 seconds -[ 900s] Executed 28 tests in 0.529462 seconds -[ 900s] -[ 900s] From test_langmap.vim: -[ 900s] Executed Test_langmap() in 0.001438 seconds -[ 900s] Executed 1 test in 0.015017 seconds -[ 900s] -[ 900s] From test_let.vim: -[ 900s] Executed Test_let() in 0.001040 seconds -[ 900s] Executed Test_let_arg_fail() in 0.000831 seconds -[ 900s] Executed Test_let_errors() in 0.000884 seconds -[ 900s] Executed Test_let_heredoc() in 0.000339 seconds -[ 900s] Executed Test_let_heredoc_eval() in 0.125070 seconds -[ 900s] Executed Test_let_heredoc_fails() in 0.166949 seconds -[ 900s] Executed Test_let_heredoc_trim_no_indent_marker() in 0.000274 seconds -[ 900s] Executed Test_let_interpolated() in 0.000250 seconds -[ 900s] Executed Test_let_no_type_checking() in 0.000236 seconds -[ 900s] Executed Test_let_option_error() in 0.000373 seconds -[ 900s] Executed Test_let_termcap() in 0.001273 seconds -[ 900s] Executed Test_let_utf8_environment() in 0.000247 seconds -[ 900s] Executed Test_let_varg_fail() in 0.000630 seconds -[ 900s] Executed 13 tests in 0.435472 seconds -[ 900s] -[ 900s] From test_lineending.vim: -[ 900s] Executed Test_lineending() in 0.095483 seconds -[ 900s] Executed 1 test in 0.199694 seconds -[ 900s] -[ 900s] From test_listchars.vim: -[ 900s] Executed Test_listchars() in 0.015173 seconds -[ 900s] Executed Test_listchars_composing() in 0.000930 seconds -[ 900s] Executed Test_listchars_foldcolumn() in 0.282642 seconds -[ 900s] Executed Test_listchars_invalid() in 0.001228 seconds -[ 900s] Executed Test_listchars_unicode() in 0.001613 seconds -[ 900s] Executed Test_listchars_window_local() in 0.004947 seconds -[ 900s] Executed 6 tests in 0.330746 seconds -[ 900s] -[ 900s] From test_listdict.vim: -[ 900s] Executed Test_deep_nested_dict() in 0.001711 seconds -[ 900s] Executed Test_deep_nested_list() in 0.001333 seconds -[ 900s] Executed Test_dict() in 0.309401 seconds -[ 900s] Executed Test_dict_assign() in 0.526386 seconds -[ 900s] Executed Test_dict_big() in 0.034182 seconds -[ 900s] Executed Test_dict_deepcopy() in 0.207373 seconds -[ 900s] Executed Test_dict_func() in 0.000373 seconds -[ 900s] Executed Test_dict_func_remove() in 1.214680 seconds -[ 900s] Executed Test_dict_func_remove_in_use() in 0.212213 seconds -[ 900s] Executed Test_dict_identity() in 0.317284 seconds -[ 900s] Executed Test_dict_item_lock_map() in 0.210766 seconds -[ 900s] Executed Test_dict_item_lock_unlet() in 0.128285 seconds -[ 900s] Executed Test_dict_literal_keys() in 0.000326 seconds -[ 900s] Executed Test_dict_lock_extend() in 0.000339 seconds -[ 900s] Executed Test_dict_lock_filter() in 0.135121 seconds -[ 900s] Executed Test_dict_lock_map() in 0.075874 seconds -[ 900s] Executed Test_dict_lock_operator() in 0.000339 seconds -[ 900s] Executed Test_dict_lock_unlet() in 0.000319 seconds -[ 900s] Executed Test_dict_scope_var_extend() in 0.000317 seconds -[ 900s] Executed Test_dict_scope_var_extend_overwrite() in 0.000346 seconds -[ 900s] Executed Test_dict_scope_var_remove() in 0.000318 seconds -[ 900s] Executed Test_dict_unlet() in 0.238998 seconds -[ 900s] Executed Test_func_arg_list() in 0.000510 seconds -[ 900s] Executed Test_let_lock_list() in 0.075121 seconds -[ 900s] Executed Test_let_lock_list_items() in 0.000360 seconds -[ 900s] Executed Test_list_add() in 0.240574 seconds -[ 900s] Executed Test_list_assign() in 0.710791 seconds -[ 900s] Executed Test_list_create() in 0.000384 seconds -[ 900s] Executed Test_list_func_remove() in 0.173649 seconds -[ 900s] Executed Test_list_identity() in 0.194672 seconds -[ 900s] Executed Test_list_item_lock_map() in 0.158617 seconds -[ 900s] Executed Test_list_locked_var() in 0.161436 seconds -[ 900s] Executed Test_list_locked_var_unlet() in 0.002586 seconds -[ 900s] Executed Test_list_range_assign() in 0.311650 seconds -[ 900s] Executed Test_list_slice() in 0.386318 seconds -[ 900s] Executed Test_list_unlet() in 0.724252 seconds -[ 900s] Executed Test_listdict_compare() in 0.230325 seconds -[ 900s] Executed Test_listdict_compare_complex() in 0.057473 seconds -[ 900s] Executed Test_listdict_extend() in 0.355254 seconds -[ 900s] Executed Test_listdict_extendnew() in 0.000364 seconds -[ 900s] Executed Test_listdict_index() in 2.646893 seconds -[ 900s] Executed Test_lock_var_unlet() in 0.000363 seconds -[ 900s] Executed Test_lockvar_script_autoload() in 0.000385 seconds -[ 900s] Executed Test_null_dict() in 0.220396 seconds -[ 900s] Executed Test_null_list() in 0.254337 seconds -[ 900s] Executed Test_reduce() in 0.222345 seconds -[ 900s] Executed Test_reverse_sort_uniq() in 0.570810 seconds -[ 900s] Executed Test_scope_dict() in 0.001749 seconds -[ 900s] Executed Test_script_local_dict_func() in 0.000308 seconds -[ 900s] Executed Test_str_split() in 0.076032 seconds -[ 900s] Executed 50 tests in 11.415922 seconds -[ 900s] -[ 900s] From test_listener.vim: -[ 900s] Executed Test_col_after_deletion_moved_cur() in 0.000730 seconds -[ 900s] Executed Test_listener_args() in 0.001017 seconds -[ 900s] Executed Test_listener_caches_buffer_line() in 0.000782 seconds -[ 900s] Executed Test_listener_cleared_newbuf() in 0.001030 seconds -[ 900s] Executed Test_listener_garbage_collect() in 0.000621 seconds -[ 900s] Executed Test_listener_undo_delete_all() in 0.000666 seconds -[ 900s] Executed Test_listener_undo_line_number() in 0.000654 seconds -[ 900s] Executed Test_listening() in 0.001879 seconds -[ 900s] Executed Test_listening_other_buf() in 0.000680 seconds -[ 900s] Executed Test_no_change_for_empty_undo() in 0.000736 seconds -[ 900s] Executed Test_remove_listener_in_callback() in 0.000577 seconds -[ 900s] Executed 11 tests in 0.119115 seconds -[ 900s] -[ 900s] From test_listlbr.vim: -[ 900s] Executed Test_block_replace_after_wrapping() in 0.001719 seconds -[ 900s] Executed Test_linebreak_with_conceal() in 0.001256 seconds -[ 900s] Executed Test_linebreak_with_list() in 0.001133 seconds -[ 900s] Executed Test_linebreak_with_nolist() in 0.001105 seconds -[ 900s] Executed Test_linebreak_with_visual_operations() in 0.000956 seconds -[ 900s] Executed Test_list_with_listchars() in 0.001108 seconds -[ 900s] Executed Test_list_with_tab_and_skipping_first_chars() in 0.001154 seconds -[ 900s] Executed Test_norm_after_block_visual() in 0.001126 seconds -[ 900s] Executed Test_set_linebreak() in 0.001123 seconds -[ 900s] Executed Test_should_break() in 0.001121 seconds -[ 900s] Executed Test_undo_after_block_visual() in 0.001128 seconds -[ 900s] Executed Test_virtual_block() in 0.001187 seconds -[ 900s] Executed Test_virtual_block_and_vbA() in 0.001471 seconds -[ 900s] Executed Test_virtual_char_and_block() in 0.001196 seconds -[ 900s] Executed 14 tests in 0.109023 seconds -[ 900s] -[ 900s] From test_listlbr_utf8.vim: -[ 900s] Executed Test_chinese_char_on_wrap_column() in 0.001989 seconds -[ 900s] Executed Test_colorcolumn_priority() in 0.001157 seconds -[ 900s] Executed Test_illegal_byte_and_breakat() in 0.001187 seconds -[ 900s] Executed Test_linebreak_with_fancy_listchars() in 0.001391 seconds -[ 900s] Executed Test_linebreak_with_list_and_tabs() in 0.000647 seconds -[ 900s] Executed Test_linebreak_with_nolist() in 0.001255 seconds -[ 900s] Executed Test_list_and_concealing1() in 0.002020 seconds -[ 900s] Executed Test_list_and_concealing2() in 0.001397 seconds -[ 900s] Executed Test_multibyte_sign_and_colorcolumn() in 0.001440 seconds -[ 900s] Executed Test_multibyte_wrap_and_breakat() in 0.001232 seconds -[ 900s] Executed Test_nolinebreak_with_list() in 0.001325 seconds -[ 900s] Executed Test_screenattr_for_comment() in 0.017158 seconds -[ 900s] Executed Test_visual_block_and_selection_exclusive() in 0.002447 seconds -[ 900s] Executed 13 tests in 0.088849 seconds -[ 900s] -[ 900s] From test_lua.vim: -[ 900s] Executed Test_call_lua_func_from_vim9_func() in 0.000483 seconds -[ 900s] Executed Test_lua_beep() in 0.000275 seconds -[ 900s] Executed Test_lua_blob() in 0.000721 seconds -[ 900s] Executed Test_lua_buffer() in 0.001172 seconds -[ 900s] Executed Test_lua_buffer_delete() in 0.000656 seconds -[ 900s] Executed Test_lua_buffer_insert() in 0.000806 seconds -[ 900s] Executed Test_lua_buffer_isvalid() in 0.000636 seconds -[ 900s] Executed Test_lua_buffer_name() in 0.000738 seconds -[ 900s] Executed Test_lua_buffer_next_previous() in 0.001566 seconds -[ 900s] Executed Test_lua_buffer_number() in 0.000284 seconds -[ 900s] Executed Test_lua_buffer_number_lines() in 0.000570 seconds -[ 900s] Executed Test_lua_buffer_var_table() in 0.000602 seconds -[ 900s] Executed Test_lua_call() in 0.000479 seconds -[ 900s] Executed Test_lua_command() in 0.000588 seconds -[ 900s] Executed Test_lua_command_new_no_ml_get_error() in 0.000718 seconds -[ 900s] Executed Test_lua_debug() in 1.108337 seconds -[ 900s] Executed Test_lua_dict() in 0.000742 seconds -[ 900s] Executed Test_lua_dict_iter() in 0.000337 seconds -[ 900s] Executed Test_lua_dict_table() in 0.000453 seconds -[ 900s] Executed Test_lua_eval() in 0.000696 seconds -[ 900s] Executed Test_lua_fn() in 0.000306 seconds -[ 900s] Executed Test_lua_funcref() in 0.000616 seconds -[ 900s] Executed Test_lua_global_var_table() in 0.000822 seconds -[ 900s] Executed Test_lua_heredoc() in 0.000335 seconds -[ 900s] Executed Test_lua_line() in 0.000708 seconds -[ 900s] Executed Test_lua_list() in 0.000701 seconds -[ 900s] Executed Test_lua_list_iter() in 0.000307 seconds -[ 900s] Executed Test_lua_list_table() in 0.000426 seconds -[ 900s] Executed Test_lua_list_table_insert_remove() in 0.000364 seconds -[ 900s] Executed Test_lua_luado() in 0.000713 seconds -[ 900s] Executed Test_lua_multiple_commands() in 0.000409 seconds -[ 900s] Executed Test_lua_open() in 0.000825 seconds -[ 900s] Executed Test_lua_predefined_var_table() in 0.000454 seconds -[ 900s] Executed Test_lua_recursive_list() in 0.000428 seconds -[ 900s] Executed Test_lua_set_cursor() in 0.000620 seconds -[ 900s] Executed Test_lua_string_with_newline() in 0.000590 seconds -[ 900s] Executed Test_lua_tabpage_var_table() in 0.000728 seconds -[ 900s] Executed Test_lua_type() in 0.000401 seconds -[ 900s] Executed Test_lua_vim_version() in 0.000285 seconds -[ 900s] Executed Test_lua_window() in 0.001068 seconds -[ 900s] Executed Test_lua_window_buffer() in 0.001227 seconds -[ 900s] Executed Test_lua_window_height() in 0.000403 seconds -[ 900s] Executed Test_lua_window_isvalid() in 0.000634 seconds -[ 900s] Executed Test_lua_window_line_col() in 0.000676 seconds -[ 900s] Executed Test_lua_window_next_previous() in 0.001349 seconds -[ 900s] Executed Test_lua_window_set_current() in 0.001019 seconds -[ 900s] Executed Test_lua_window_var_table() in 0.000798 seconds -[ 900s] Executed Test_lua_window_width() in 0.000434 seconds -[ 900s] Executed Test_luaeval_error() in 0.000464 seconds -[ 900s] Executed Test_luaeval_with_lambda() in 0.000362 seconds -[ 900s] Executed Test_luafile() in 0.054349 seconds -[ 900s] Executed Test_luafile_error() in 0.011573 seconds -[ 900s] Executed Test_luafile_percent() in 0.017386 seconds -[ 900s] Executed Test_luafile_print() in 0.018190 seconds -[ 900s] Executed Test_pass_lua_callback_to_vim_from_lua() in 0.000344 seconds -[ 900s] Executed Test_pass_lua_metatable_callback_to_vim_from_lua() in 0.000343 seconds -[ 900s] Executed Test_skip_lua() in 0.000280 seconds -[ 900s] Executed Test_update_package_paths() in 0.000479 seconds -[ 900s] Executed 58 tests in 1.268382 seconds -[ 900s] -[ 900s] From test_makeencoding.vim: -[ 900s] Executed Test_getfile() in 0.281713 seconds -[ 900s] Executed Test_grep() in 0.297229 seconds -[ 900s] Executed Test_longline_conversion() in 0.096359 seconds -[ 900s] Executed Test_make() in 0.275524 seconds -[ 900s] Executed 4 tests in 1.034166 seconds -[ 900s] -[ 900s] From test_man.vim: -[ 900s] Executed Test_Man_uses_shellescape() in 0.014321 seconds -[ 900s] Executed Test_buffer_count_hidden() in 0.003890 seconds -[ 900s] Executed Test_g_ft_man_open_mode() in 0.003971 seconds -[ 900s] Executed Test_keep_unnamed_register() in 0.003873 seconds -[ 900s] Executed Test_local_options() in 0.003871 seconds -[ 900s] Executed Test_nomodifiable() in 0.003998 seconds -[ 900s] Executed 6 tests in 0.059032 seconds -[ 900s] -[ 900s] From test_map_functions.vim: -[ 900s] Executed Test_map_local() in 0.000444 seconds -[ 900s] Executed Test_map_restore() in 0.000368 seconds -[ 900s] Executed Test_maparg() in 0.000949 seconds -[ 900s] Executed Test_mapcheck() in 0.000360 seconds -[ 900s] Executed Test_maplist() in 0.001098 seconds -[ 900s] Executed Test_mapset() in 0.001199 seconds -[ 900s] Executed Test_mapset_arg1_dir() in 0.001633 seconds -[ 900s] Executed Test_range_map() in 0.000676 seconds -[ 900s] Executed Test_vim9_maparg() in 0.000301 seconds -[ 900s] Executed 9 tests in 0.079134 seconds -[ 900s] -[ 900s] From test_mapping.vim: -[ 900s] Executed Test_abbr_after_line_join() in 0.000756 seconds -[ 900s] Executed Test_abbr_remove() in 0.000294 seconds -[ 900s] Executed Test_abbr_trigger_special() in 0.000600 seconds -[ 900s] Executed Test_abbreviate_latin1_encoding() in 0.000915 seconds -[ 900s] Executed Test_abbreviate_multi_byte() in 0.000611 seconds -[ 900s] Executed Test_abbreviation() in 0.000501 seconds -[ 900s] Executed Test_abbreviation_CR() in 0.000843 seconds -[ 900s] Executed Test_abclear() in 0.000372 seconds -[ 900s] Executed Test_abclear_buffer() in 0.001103 seconds -[ 900s] Executed Test_break_undo() in 0.000544 seconds -[ 900s] Executed Test_cabbr_visual_mode() in 0.000503 seconds -[ 900s] Executed Test_error_in_map_expr() in 0.208998 seconds -[ 900s] Executed Test_expr_abbr() in 0.000894 seconds -[ 900s] Executed Test_expr_map_error() in 0.196268 seconds -[ 900s] Executed Test_expr_map_escape_special() in 0.000331 seconds -[ 900s] Executed Test_expr_map_gets_cursor() in 0.000678 seconds -[ 900s] Executed Test_expr_map_restore_cursor() in 0.112073 seconds -[ 900s] Executed Test_hasmapto() in 0.000477 seconds -[ 900s] Executed Test_list_mappings() in 0.000654 seconds -[ 900s] Executed Test_map_after_timed_out_nop() in 0.717202 seconds -[ 900s] Executed Test_map_cmdkey() in 0.217740 seconds -[ 900s] Executed Test_map_cmdkey_cmdline_mode() in 0.001286 seconds -[ 900s] Executed Test_map_cmdkey_insert_complete_mode() in 0.001206 seconds -[ 900s] Executed Test_map_cmdkey_insert_mode() in 0.001336 seconds -[ 900s] Executed Test_map_cmdkey_normal_cmd() in 0.001112 seconds -[ 900s] Executed Test_map_cmdkey_normal_mode() in 0.011426 seconds -[ 900s] Executed Test_map_cmdkey_op_pending_mode() in 0.001218 seconds -[ 900s] Executed Test_map_cmdkey_redo() in 0.000829 seconds -[ 900s] Executed Test_map_cmdkey_select_mode() in 0.004652 seconds -[ 900s] Executed Test_map_cmdkey_visual_mode() in 0.001843 seconds -[ 900s] Executed Test_map_cpo_special_keycode() in 0.000472 seconds -[ 900s] Executed Test_map_ctrl_c_insert() in 0.000528 seconds -[ 900s] Executed Test_map_ctrl_c_visual() in 0.000564 seconds -[ 900s] Executed Test_map_cursor() in 0.065367 seconds -[ 900s] Executed Test_map_cursor_ctrl_gU() in 0.000892 seconds -[ 900s] Executed Test_map_error() in 0.002617 seconds -[ 900s] Executed Test_map_feedkeys() in 0.000639 seconds -[ 900s] Executed Test_map_langmap() in 0.033171 seconds -[ 900s] Executed Test_map_listing() in 0.064375 seconds -[ 900s] Executed Test_map_meta_multibyte() in 0.000260 seconds -[ 900s] Executed Test_map_meta_quotes() in 0.000518 seconds -[ 900s] Executed Test_map_recursive() in 0.000505 seconds -[ 900s] Executed Test_map_script_cmd_finds_func() in 0.087928 seconds -[ 900s] Executed Test_map_script_cmd_restore() in 0.011972 seconds -[ 900s] Executed Test_map_script_cmd_survives_unmap() in 0.011580 seconds -[ 900s] Executed Test_map_special() in 0.000836 seconds -[ 900s] Executed Test_map_timeout() in 0.300186 seconds -[ 900s] Executed Test_map_timeout_with_timer_interrupt() in 0.211366 seconds -[ 900s] Executed Test_mapcomplete() in 0.000576 seconds -[ 900s] Executed Test_mkvimrc_mapmodes() in 0.004001 seconds -[ 900s] Executed Test_motionforce_omap() in 0.001180 seconds -[ 900s] Executed Test_mouse_drag_insert_map() in 0.000430 seconds -[ 900s] Executed Test_mouse_drag_mapped_start_select() in 0.000349 seconds -[ 900s] Executed Test_plug_remap() in 0.000670 seconds -[ 900s] Executed Test_script_local_remap() in 0.000564 seconds -[ 900s] Executed Test_unmap_simplifiable() in 0.000282 seconds -[ 900s] Executed Test_using_past_typeahead() in 0.000364 seconds -[ 900s] Executed 57 tests in 2.373666 seconds -[ 900s] -[ 900s] From test_marks.vim: -[ 900s] Executed Test_Incr_Marks() in 0.000740 seconds -[ 900s] Executed Test_Restore_DelMark() in 0.000783 seconds -[ 900s] Executed Test_delmarks() in 0.000598 seconds -[ 900s] Executed Test_file_mark() in 0.128433 seconds -[ 900s] Executed Test_getmarklist() in 0.000614 seconds -[ 900s] Executed Test_jump_mark_autocmd() in 0.001493 seconds -[ 900s] Executed Test_lockmarks_with_put() in 0.000605 seconds -[ 900s] Executed Test_mark_error() in 0.000363 seconds -[ 900s] Executed Test_marks_cmd() in 0.094279 seconds -[ 900s] Executed Test_marks_cmd_multibyte() in 0.000621 seconds -[ 900s] Executed Test_marks_k_cmd() in 0.000484 seconds -[ 900s] Executed Test_previous_jump_mark() in 0.000596 seconds -[ 900s] Executed Test_setpos() in 0.001313 seconds -[ 900s] Executed 13 tests in 0.263974 seconds -[ 900s] -[ 900s] From test_match.vim: -[ 900s] Executed Test_match() in 0.001426 seconds -[ 900s] Executed Test_match_error() in 0.000413 seconds -[ 900s] Executed Test_match_in_linebreak() in 0.133341 seconds -[ 900s] Executed Test_match_tab_with_linebreak() in 0.132616 seconds -[ 900s] Executed Test_match_with_incsearch() in 0.142902 seconds -[ 900s] Executed Test_matchadd_error() in 0.000423 seconds -[ 900s] Executed Test_matchadd_other_window() in 0.147885 seconds -[ 900s] Executed Test_matchaddpos() in 0.014328 seconds -[ 900s] Executed Test_matchaddpos_error() in 0.001034 seconds -[ 900s] Executed Test_matchaddpos_otherwin() in 0.002398 seconds -[ 900s] Executed Test_matchaddpos_using_negative_priority() in 0.001068 seconds -[ 900s] Executed Test_matchclear_other_window() in 0.138728 seconds -[ 900s] Executed Test_matchdelete_error() in 0.000582 seconds -[ 900s] Executed Test_matchdelete_other_window() in 0.073710 seconds -[ 900s] Executed Test_matchdelete_redraw() in 0.001531 seconds -[ 900s] Executed 15 tests in 0.851328 seconds -[ 900s] -[ 900s] From test_matchadd_conceal.vim: -[ 900s] Executed Test_clearmatches() in 0.002268 seconds -[ 900s] Executed Test_cursor_column_in_concealed_line_after_leftcol_change() in 0.053737 seconds -[ 900s] Executed Test_cursor_column_in_concealed_line_after_window_scroll() in 0.237847 seconds -[ 900s] Executed Test_default_conceal_char() in 0.002155 seconds -[ 900s] Executed Test_interaction_matchadd_syntax() in 0.001313 seconds -[ 900s] Executed Test_matchadd_and_conceallevel_3() in 0.016171 seconds -[ 900s] Executed Test_matchadd_and_syn_conceal() in 0.003390 seconds -[ 900s] Executed Test_matchadd_repeat_conceal_with_syntax_off() in 0.002142 seconds -[ 900s] Executed Test_simple_matchadd() in 0.001768 seconds -[ 900s] Executed Test_simple_matchadd_and_conceal() in 0.001794 seconds -[ 900s] Executed Test_syn_and_match_conceal() in 0.005825 seconds -[ 900s] Executed Test_using_matchaddpos() in 0.003030 seconds -[ 900s] Executed 12 tests in 0.405501 seconds -[ 900s] -[ 900s] From test_matchadd_conceal_utf8.vim: -[ 900s] Executed Test_match_using_multibyte_conceal_char() in 0.001532 seconds -[ 900s] Executed 1 test in 0.016193 seconds -[ 900s] -[ 900s] From test_matchfuzzy.vim: -[ 900s] Executed Test_matchfuzzy() in 0.002553 seconds -[ 900s] Executed Test_matchfuzzy_limit() in 0.000586 seconds -[ 900s] Executed Test_matchfuzzy_mbyte() in 0.000446 seconds -[ 900s] Executed Test_matchfuzzypos() in 0.001028 seconds -[ 900s] Executed Test_matchfuzzypos_mbyte() in 0.001243 seconds -[ 900s] Executed 5 tests in 0.022052 seconds -[ 900s] -[ 900s] From test_memory_usage.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_memory_usage.vim: ps program missing -[ 900s] -[ 900s] From test_menu.vim: -[ 900s] Executed Test_buffer_menu_special_buffers() in 0.006595 seconds -[ 900s] Executed Test_emenu_cmd() in 0.000796 seconds -[ 900s] Executed Test_load_menu() in 0.003661 seconds -[ 900s] Executed Test_menu_commands() in 0.001079 seconds -[ 900s] Executed Test_menu_errors() in 0.000705 seconds -[ 900s] Executed Test_menu_expand() in 0.002027 seconds -[ 900s] Skipped -[ 900s] Executed Test_menu_icon() in 0.000366 seconds -[ 900s] Executed Test_menu_info() in 0.001024 seconds -[ 900s] Executed Test_menu_special() in 0.000883 seconds -[ 900s] Executed Test_only_modifier() in 0.000442 seconds -[ 900s] Executed Test_popup_menu() in 0.000374 seconds -[ 900s] Executed Test_show_menus() in 0.000383 seconds -[ 900s] Executed Test_tmenu() in 0.000345 seconds -[ 900s] Executed Test_translate_menu() in 0.004688 seconds -[ 900s] Executed 14 tests in 0.120980 seconds -[ 900s] SKIPPED Test_menu_icon(): toolbar feature missing -[ 900s] -[ 900s] From test_messages.vim: -[ 900s] Executed Test_ask_yesno() in 0.185618 seconds -[ 900s] Executed Test_echo_string_partial() in 0.000253 seconds -[ 900s] Executed Test_echoerr() in 0.000303 seconds -[ 900s] Executed Test_echomsg() in 0.000325 seconds -[ 900s] Executed Test_echospace() in 0.000279 seconds -[ 900s] Executed Test_fileinfo_after_echo() in 0.249224 seconds -[ 900s] Executed Test_mapping_at_hit_return_prompt() in 0.000973 seconds -[ 900s] Executed Test_message_completion() in 0.000308 seconds -[ 900s] Executed Test_message_more() in 0.299949 seconds -[ 900s] Executed Test_messages() in 0.000735 seconds -[ 900s] Executed Test_mode_message_at_leaving_insert_by_ctrl_c() in 0.206885 seconds -[ 900s] Executed Test_mode_message_at_leaving_insert_with_esc_mapped() in 0.229713 seconds -[ 900s] Executed Test_null() in 0.000339 seconds -[ 900s] Executed Test_quit_long_message() in 0.131105 seconds -[ 900s] Executed Test_stopinsert_does_not_break_message_output() in 0.000542 seconds -[ 900s] Executed 15 tests in 1.320022 seconds -[ 900s] -[ 900s] From test_method.vim: -[ 900s] Executed Test_dict_method() in 0.000623 seconds -[ 900s] Executed Test_list_method() in 0.000487 seconds -[ 900s] Executed Test_method_append() in 0.000594 seconds -[ 900s] Executed Test_method_args() in 0.000251 seconds -[ 900s] Executed Test_method_float() in 0.000266 seconds -[ 900s] Executed Test_method_funcref() in 0.000378 seconds -[ 900s] Executed Test_method_lambda() in 0.000320 seconds -[ 900s] Executed Test_method_not_supported() in 0.000328 seconds -[ 900s] Executed Test_method_syntax() in 0.000334 seconds -[ 900s] Executed Test_string_method() in 0.000277 seconds -[ 900s] Executed 10 tests in 0.016316 seconds -[ 900s] -[ 900s] From test_mksession.vim: -[ 900s] Executed Test__mksession_arglocal() in 0.013107 seconds -[ 900s] Executed Test_altfile() in 0.011209 seconds -[ 900s] Executed Test_mksession() in 0.020402 seconds -[ 900s] Executed Test_mksession_arglist() in 0.009869 seconds -[ 900s] Executed Test_mksession_blank_tabs() in 0.017227 seconds -[ 900s] Executed Test_mksession_blank_windows() in 0.017024 seconds -[ 900s] Executed Test_mksession_buffer_count() in 0.092242 seconds -[ 900s] Executed Test_mksession_buffer_order() in 0.070394 seconds -[ 900s] Executed Test_mksession_compatible() in 0.000944 seconds -[ 900s] Executed Test_mksession_foldopt() in 0.000883 seconds -[ 900s] Executed Test_mksession_globals() in 0.004669 seconds -[ 900s] Executed Test_mksession_help_noopt() in 0.013261 seconds -[ 900s] Executed Test_mksession_hlsearch() in 0.008937 seconds -[ 900s] Executed Test_mksession_large_winheight() in 0.004595 seconds -[ 900s] Executed Test_mksession_lcd_multiple_tabs() in 0.013068 seconds -[ 900s] Executed Test_mksession_no_balt() in 0.005458 seconds -[ 900s] Executed Test_mksession_no_errmsg() in 0.004653 seconds -[ 900s] Executed Test_mksession_one_buffer_two_windows() in 0.010887 seconds -[ 900s] Executed Test_mksession_quote_in_filename() in 0.017484 seconds -[ 900s] Executed Test_mksession_resize() in 0.002029 seconds -[ 900s] Executed Test_mksession_rtp() in 0.001638 seconds -[ 900s] Executed Test_mksession_scratch() in 0.005030 seconds -[ 900s] Executed Test_mksession_sesdir() in 0.009199 seconds -[ 900s] Executed Test_mksession_shortmess() in 0.003363 seconds -[ 900s] Executed Test_mksession_shortmess_with_A() in 0.106849 seconds -[ 900s] Executed Test_mksession_skiprtp() in 0.001625 seconds -[ 900s] Executed Test_mksession_slash() in 0.009682 seconds -[ 900s] Executed Test_mksession_tcd_multiple_tabs() in 0.026702 seconds -[ 900s] Executed Test_mksession_tcd_single_tabs() in 0.005142 seconds -[ 900s] Executed Test_mksession_terminal_no_restore_cmdarg() in 0.012621 seconds -[ 900s] Executed Test_mksession_terminal_no_restore_func() in 0.012440 seconds -[ 900s] Executed Test_mksession_terminal_no_restore_funcarg() in 0.022669 seconds -[ 900s] Executed Test_mksession_terminal_no_ssop() in 0.012474 seconds -[ 900s] Executed Test_mksession_terminal_restore_other() in 0.013186 seconds -[ 900s] Executed Test_mksession_terminal_shared_windows() in 0.018002 seconds -[ 900s] Executed Test_mksession_terminal_shell() in 0.014744 seconds -[ 900s] Executed Test_mksession_winheight() in 0.008854 seconds -[ 900s] Executed Test_mksession_winminheight() in 0.001007 seconds -[ 900s] Skipped -[ 900s] Executed Test_mksession_winpos() in 0.000231 seconds -[ 900s] Executed Test_mksession_zero_winheight() in 0.000850 seconds -[ 900s] Executed Test_mkview_file() in 0.012965 seconds -[ 900s] Executed Test_mkview_loadview_jumplist() in 0.098781 seconds -[ 900s] Executed Test_mkview_loadview_with_viewdir() in 0.007879 seconds -[ 900s] Executed Test_mkview_manual_fold() in 0.022980 seconds -[ 900s] Executed Test_mkview_no_balt() in 0.004836 seconds -[ 900s] Executed Test_mkview_no_file_name() in 0.007398 seconds -[ 900s] Executed Test_mkview_open_folds() in 0.116639 seconds -[ 900s] Executed Test_mkview_terminal_windows() in 0.011409 seconds -[ 900s] Executed Test_mkvimrc() in 0.001140 seconds -[ 900s] Executed Test_scrolloff() in 0.004585 seconds -[ 900s] Executed 50 tests in 1.030880 seconds -[ 900s] SKIPPED Test_mksession_winpos(): only works in the GUI -[ 900s] -[ 900s] From test_modeless.vim: -[ 900s] Skipped -[ 900s] Executed Test_modeless_characterwise_selection() in 0.000374 seconds -[ 900s] Skipped -[ 900s] Executed Test_modeless_line_selection() in 0.000265 seconds -[ 900s] Skipped -[ 900s] Executed Test_modeless_word_selection() in 0.000277 seconds -[ 900s] Executed 3 tests in 0.109854 seconds -[ 900s] SKIPPED Test_modeless_characterwise_selection(): clipboard_working feature missing -[ 900s] SKIPPED Test_modeless_line_selection(): clipboard_working feature missing -[ 900s] SKIPPED Test_modeless_word_selection(): clipboard_working feature missing -[ 900s] -[ 900s] From test_modeline.vim: -[ 900s] Executed Test_modeline_colon() in 0.096515 seconds -[ 900s] Executed Test_modeline_default() in 0.007894 seconds -[ 900s] Executed Test_modeline_diff_buffer() in 0.100419 seconds -[ 900s] Executed Test_modeline_disable() in 0.103695 seconds -[ 900s] Skipped -[ 900s] Executed Test_modeline_fails_always() in 1.590015 seconds -[ 900s] Skipped -[ 900s] Executed Test_modeline_fails_modelineexpr() in 0.346510 seconds -[ 900s] Executed Test_modeline_filetype() in 0.101165 seconds -[ 900s] Executed Test_modeline_filetype_fails() in 0.114165 seconds -[ 900s] Executed Test_modeline_invalid() in 0.391295 seconds -[ 900s] Executed Test_modeline_keymap() in 0.082043 seconds -[ 900s] Executed Test_modeline_keymap_fails() in 0.011775 seconds -[ 900s] Executed Test_modeline_setoption_verbose() in 0.221897 seconds -[ 900s] Executed Test_modeline_syntax() in 0.093233 seconds -[ 900s] Executed Test_modeline_syntax_fails() in 0.066236 seconds -[ 900s] Executed Test_modeline_version() in 0.950326 seconds -[ 900s] Executed 15 tests in 4.378659 seconds -[ 900s] SKIPPED Test_modeline_fails_always(): imstyle option not supported -[ 900s] SKIPPED Test_modeline_fails_modelineexpr(): guitablabel option not supported -[ 900s] -[ 900s] From test_mzscheme.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_mzscheme.vim: mzscheme feature missing -[ 900s] -[ 900s] From test_nested_function.vim: -[ 900s] Executed Test_max_nesting() in 0.004428 seconds -[ 900s] Executed Test_nested_argument() in 0.000281 seconds -[ 900s] Executed Test_nested_functions() in 0.000282 seconds -[ 900s] Executed 3 tests in 0.094971 seconds -[ 900s] -[ 900s] From test_netbeans.vim: -[ 900s] Executed Test_nb_basic() in 7.007323 seconds -[ 900s] Executed Test_nb_bwipe_buffer() in 3.235984 seconds -[ 900s] Executed Test_nb_file_auth() in 3.108963 seconds -[ 900s] Executed Test_nb_quit_with_conn() in 3.188074 seconds -[ 900s] Executed 4 tests in 16.871357 seconds -[ 900s] -[ 900s] From test_normal.vim: -[ 900s] Executed Test_delete_until_paragraph() in 0.000760 seconds -[ 900s] Executed Test_formatexpr_scriptlocal_func() in 0.001988 seconds -[ 900s] Executed Test_g_ctrl_g() in 0.001138 seconds -[ 900s] Executed Test_gr_command() in 0.000886 seconds -[ 900s] Executed Test_horiz_motion() in 0.000605 seconds -[ 900s] Executed Test_java_motion() in 0.001035 seconds -[ 900s] Executed Test_message_when_using_ctrl_c() in 0.001804 seconds -[ 900s] Executed Test_mode_updated_after_ctrl_c() in 0.103624 seconds -[ 900s] Executed Test_normal00_optrans() in 0.000827 seconds -[ 900s] Executed Test_normal01_keymodel() in 0.001081 seconds -[ 900s] Executed Test_normal03_join() in 0.000740 seconds -[ 900s] Executed Test_normal04_filter() in 0.126865 seconds -[ 900s] Executed Test_normal05_formatexpr() in 0.000819 seconds -[ 900s] Executed Test_normal05_formatexpr_newbuf() in 0.000614 seconds -[ 900s] Executed Test_normal05_formatexpr_setopt() in 0.000324 seconds -[ 900s] Executed Test_normal06_formatprg() in 0.168326 seconds -[ 900s] Executed Test_normal07_internalfmt() in 0.000794 seconds -[ 900s] Executed Test_normal08_fold() in 0.000988 seconds -[ 900s] Executed Test_normal09a_operatorfunc() in 0.001294 seconds -[ 900s] Executed Test_normal09b_operatorfunc() in 0.001191 seconds -[ 900s] Executed Test_normal09c_operatorfunc() in 0.001078 seconds -[ 900s] Executed Test_normal10_expand() in 0.004390 seconds -[ 900s] Executed Test_normal11_showcmd() in 0.002880 seconds -[ 900s] Executed Test_normal12_nv_error() in 0.000786 seconds -[ 900s] Executed Test_normal13_help() in 0.004463 seconds -[ 900s] Executed Test_normal14_page() in 0.000907 seconds -[ 900s] Executed Test_normal14_page_eol() in 0.000642 seconds -[ 900s] Executed Test_normal15_z_scroll_vert() in 0.001030 seconds -[ 900s] Executed Test_normal16_z_scroll_hor() in 0.000897 seconds -[ 900s] Executed Test_normal17_z_scroll_hor2() in 0.000837 seconds -[ 900s] Executed Test_normal18_z_fold() in 0.002192 seconds -[ 900s] Executed Test_normal20_exmode() in 0.128071 seconds -[ 900s] Executed Test_normal21_nv_hat() in 0.002766 seconds -[ 900s] Executed Test_normal22_zet() in 0.168300 seconds -[ 900s] Executed Test_normal23_K() in 0.064579 seconds -[ 900s] Executed Test_normal24_rot13() in 0.000858 seconds -[ 900s] Executed Test_normal25_tag() in 0.025182 seconds -[ 900s] Executed Test_normal26_put() in 0.000787 seconds -[ 900s] Executed Test_normal27_bracket() in 0.000857 seconds -[ 900s] Executed Test_normal28_parenthesis() in 0.000846 seconds -[ 900s] Executed Test_normal29_brace() in 0.000929 seconds -[ 900s] Executed Test_normal30_changecase() in 0.001495 seconds -[ 900s] Executed Test_normal31_r_cmd() in 0.001930 seconds -[ 900s] Executed Test_normal32_g_cmd1() in 0.000705 seconds -[ 900s] Executed Test_normal33_g_cmd2() in 0.002206 seconds -[ 900s] Executed Test_normal34_g_cmd3() in 0.000658 seconds -[ 900s] Skipped -[ 900s] Executed Test_normal35_g_cmd4() in 0.000276 seconds -[ 900s] Executed Test_normal36_g_cmd5() in 0.000788 seconds -[ 900s] Executed Test_normal37_g_cmd6() in 0.001375 seconds -[ 900s] Executed Test_normal38_nvhome() in 0.000733 seconds -[ 900s] Executed Test_normal39_cw() in 0.053074 seconds -[ 900s] Executed Test_normal40_ctrl_bsl() in 0.001025 seconds -[ 900s] Executed Test_normal41_insert_reg() in 0.000810 seconds -[ 900s] Executed Test_normal42_halfpage() in 0.000791 seconds -[ 900s] Executed Test_normal45_drop() in 0.000268 seconds -[ 900s] Executed Test_normal46_ignore() in 0.000368 seconds -[ 900s] Executed Test_normal47_visual_buf_wipe() in 0.000781 seconds -[ 900s] Executed Test_normal48_wincmd() in 0.000488 seconds -[ 900s] Executed Test_normal49_counts() in 0.000611 seconds -[ 900s] Executed Test_normal50_commandline() in 0.099961 seconds -[ 900s] Executed Test_normal51_FileChangedRO() in 0.059818 seconds -[ 900s] Executed Test_normal52_rl() in 0.000753 seconds -[ 900s] Executed Test_normal54_Ctrl_bsl() in 0.000673 seconds -[ 900s] Executed Test_normal_8g8() in 0.000662 seconds -[ 900s] Skipped -[ 900s] Executed Test_normal_changecase_turkish() in 0.000528 seconds -[ 900s] Executed Test_normal_colon_op() in 0.000587 seconds -[ 900s] Executed Test_normal_count_after_operator() in 0.000994 seconds -[ 900s] Executed Test_normal_count_out_of_range() in 0.000654 seconds -[ 900s] Executed Test_normal_cursorhold_with_count() in 0.000698 seconds -[ 900s] Executed Test_normal_delete_cmd() in 0.000780 seconds -[ 900s] Executed Test_normal_ex_substitute() in 0.000721 seconds -[ 900s] Executed Test_normal_expand_latin1() in 0.000659 seconds -[ 900s] Executed Test_normal_formatexpr_returns_nonzero() in 0.000599 seconds -[ 900s] Executed Test_normal_gdollar_cmd() in 0.001437 seconds -[ 900s] Executed Test_normal_gj_on_extra_wide_char() in 0.000609 seconds -[ 900s] Executed Test_normal_gk_gj() in 0.001378 seconds -[ 900s] Executed Test_normal_large_count() in 0.000591 seconds -[ 900s] Executed Test_normal_nvend() in 0.000705 seconds -[ 900s] Executed Test_normal_op_across_lines() in 0.000706 seconds -[ 900s] Executed Test_normal_percent_jump() in 0.000673 seconds -[ 900s] Executed Test_normal_scroloff() in 0.000867 seconds -[ 900s] Executed Test_normal_section() in 0.000631 seconds -[ 900s] Executed Test_normal_shift_rightleft() in 0.000812 seconds -[ 900s] Executed Test_normal_vert_scroll_longline() in 0.000827 seconds -[ 900s] Executed Test_normal_word_move() in 0.000760 seconds -[ 900s] Executed Test_normal_yank_with_excmd() in 0.000727 seconds -[ 900s] Executed Test_normal_z_error() in 0.000376 seconds -[ 900s] Executed Test_nv_hat_count() in 0.001823 seconds -[ 900s] Executed Test_opfunc_callback() in 0.124160 seconds -[ 900s] Executed Test_scroll_in_ex_mode() in 0.085424 seconds -[ 900s] Executed Test_sidescroll_opt() in 0.000865 seconds -[ 900s] Executed Test_vert_scroll_cmds() in 0.001449 seconds -[ 900s] Executed Test_wincmd_with_count() in 0.000460 seconds -[ 900s] Executed 93 tests in 1.415072 seconds -[ 900s] SKIPPED Test_normal35_g_cmd4(): output of g< can't be tested currently -[ 900s] SKIPPED Test_normal_changecase_turkish(): Turkish locale not available -[ 900s] -[ 900s] From test_number.vim: -[ 900s] Executed Test_number() in 0.001362 seconds -[ 900s] Executed Test_number_no_text_virtual_edit() in 0.000603 seconds -[ 900s] Executed Test_number_rightleft() in 0.003705 seconds -[ 900s] Executed Test_number_with_linewrap1() in 0.001243 seconds -[ 900s] Executed Test_number_with_relativenumber() in 0.001160 seconds -[ 900s] Executed Test_numberwidth() in 0.001531 seconds -[ 900s] Executed Test_numberwidth_adjusted() in 0.004828 seconds -[ 900s] Executed Test_relativenumber() in 0.001169 seconds -[ 900s] Executed Test_relativenumber_callback() in 0.442697 seconds -[ 900s] Executed Test_relativenumber_colors() in 0.221964 seconds -[ 900s] Executed Test_relativenumber_uninitialised() in 0.000762 seconds -[ 900s] Executed Test_set_global_and_local() in 0.000331 seconds -[ 900s] Executed Test_set_options() in 0.000618 seconds -[ 900s] Executed 13 tests in 0.741092 seconds -[ 900s] -[ 900s] From test_options.vim: -[ 900s] Executed Test_000_term_option_verbose() in 0.000769 seconds -[ 900s] Executed Test_VIM_POSIX() in 0.057782 seconds -[ 900s] Executed Test_backupskip() in 0.106682 seconds -[ 900s] Executed Test_buftype() in 0.387482 seconds -[ 900s] Executed Test_cinkeys() in 0.000357 seconds -[ 900s] Executed Test_cmdheight() in 0.000318 seconds -[ 900s] Executed Test_complete() in 0.000489 seconds -[ 900s] Executed Test_copy_context() in 0.000951 seconds -[ 900s] Executed Test_copy_winopt() in 0.000648 seconds -[ 900s] Executed Test_debug_option() in 0.000888 seconds -[ 900s] Executed Test_dictionary() in 0.000377 seconds -[ 900s] Executed Test_filetype_valid() in 0.000399 seconds -[ 900s] Executed Test_isfname() in 0.003892 seconds -[ 900s] Executed Test_isfname_with_options() in 0.000307 seconds -[ 900s] Executed Test_keymap_valid() in 0.000769 seconds -[ 900s] Executed Test_local_scrolloff() in 0.000353 seconds -[ 900s] Executed Test_opt_boolean() in 0.000273 seconds -[ 900s] Skipped -[ 900s] Executed Test_opt_cdhome() in 0.000266 seconds -[ 900s] Executed Test_opt_control_char() in 0.000245 seconds -[ 900s] Executed Test_opt_default() in 0.000393 seconds -[ 900s] Executed Test_opt_default_cdpath() in 0.212817 seconds -[ 900s] Executed Test_opt_errorbells() in 0.000326 seconds -[ 900s] Executed Test_opt_local_to_global() in 0.000285 seconds -[ 900s] Executed Test_opt_num_op() in 0.000256 seconds -[ 900s] Executed Test_opt_reset_scroll() in 0.120873 seconds -[ 900s] Executed Test_opt_sandbox() in 0.000448 seconds -[ 900s] Executed Test_opt_scrolljump() in 0.004683 seconds -[ 900s] Executed Test_opt_set_keycode() in 0.000373 seconds -[ 900s] Executed Test_opt_winminheight() in 0.000313 seconds -[ 900s] Executed Test_opt_winminheight_term() in 0.143685 seconds -[ 900s] Executed Test_opt_winminheight_term_tabs() in 0.073804 seconds -[ 900s] Executed Test_opt_winminwidth() in 0.000334 seconds -[ 900s] Executed Test_options_command() in 0.090928 seconds -[ 900s] Executed Test_pastetoggle() in 0.000359 seconds -[ 900s] Executed Test_path_keep_commas() in 0.000251 seconds -[ 900s] Executed Test_path_too_long() in 0.000636 seconds -[ 900s] Executed Test_renderoptions() in 0.000251 seconds -[ 900s] Executed Test_rightleftcmd() in 0.000452 seconds -[ 900s] Executed Test_set_all() in 0.000797 seconds -[ 900s] Executed Test_set_completion() in 0.017066 seconds -[ 900s] Executed Test_set_completion_2() in 0.001278 seconds -[ 900s] Executed Test_set_encoding() in 0.000526 seconds -[ 900s] Executed Test_set_errors() in 0.001947 seconds -[ 900s] Executed Test_set_in_sandbox() in 0.000386 seconds -[ 900s] Executed Test_set_indentexpr() in 0.000442 seconds -[ 900s] Executed Test_set_one_column() in 0.001278 seconds -[ 900s] Executed Test_set_ttytype() in 0.001151 seconds -[ 900s] Executed Test_set_values() in 0.037328 seconds -[ 900s] Executed Test_shortmess_F() in 0.000886 seconds -[ 900s] Executed Test_shortmess_F2() in 0.002714 seconds -[ 900s] Executed Test_signcolumn() in 0.000328 seconds -[ 900s] Executed Test_switchbuf_reset() in 0.000409 seconds -[ 900s] Executed Test_syntax_valid() in 0.000441 seconds -[ 900s] Executed Test_thesaurus() in 0.000373 seconds -[ 900s] Executed Test_visualbell() in 0.100664 seconds -[ 900s] Executed Test_whichwrap() in 0.000310 seconds -[ 900s] Executed Test_wildchar() in 0.000337 seconds -[ 900s] Executed Test_wildoptions() in 0.000245 seconds -[ 900s] Executed Test_window_opt() in 0.000685 seconds -[ 900s] Executed Test_write() in 0.000599 seconds -[ 900s] Executed Test_writedelay() in 0.715981 seconds -[ 900s] Executed 61 tests in 2.168991 seconds -[ 900s] SKIPPED Test_opt_cdhome(): only works on non-Unix -[ 900s] -[ 900s] From test_packadd.vim: -[ 900s] Executed Test_colorscheme() in 0.188420 seconds -[ 900s] Executed Test_colorscheme_completion() in 0.253126 seconds -[ 900s] Executed Test_helptags() in 0.050722 seconds -[ 900s] Executed Test_packadd() in 0.189894 seconds -[ 900s] Executed Test_packadd_completion() in 0.002401 seconds -[ 900s] Executed Test_packadd_noload() in 0.043779 seconds -[ 900s] Executed Test_packadd_start() in 0.064330 seconds -[ 900s] Executed Test_packadd_symlink_dir() in 0.097749 seconds -[ 900s] Executed Test_packadd_symlink_dir2() in 0.114617 seconds -[ 900s] Executed Test_packloadall() in 0.422442 seconds -[ 900s] Executed Test_runtime() in 0.585165 seconds -[ 900s] Executed Test_start_autoload() in 0.065176 seconds -[ 900s] Executed 12 tests in 2.173012 seconds -[ 900s] -[ 900s] From test_partial.vim: -[ 900s] Executed Test_auto_partial_rebind() in 0.000419 seconds -[ 900s] Skipped -[ 900s] Executed Test_bind_in_python() in 0.000300 seconds -[ 900s] Executed Test_compare_partials() in 0.000441 seconds -[ 900s] Executed Test_cycle_partial_job() in 0.000573 seconds -[ 900s] Executed Test_cyclic_dict_arg() in 0.000259 seconds -[ 900s] Executed Test_cyclic_list_arg() in 0.000238 seconds -[ 900s] Executed Test_func_unref() in 0.000262 seconds -[ 900s] Executed Test_function_in_dict() in 0.000237 seconds -[ 900s] Executed Test_get_partial_items() in 0.000359 seconds -[ 900s] Executed Test_partial_args() in 0.000482 seconds -[ 900s] Executed Test_partial_dict() in 0.000500 seconds -[ 900s] Executed Test_partial_exists() in 0.000256 seconds -[ 900s] Executed Test_partial_implicit() in 0.000352 seconds -[ 900s] Executed Test_partial_string() in 0.000300 seconds -[ 900s] Executed Test_redefine_dict_func() in 0.000242 seconds -[ 900s] Executed Test_ref_job_partial_dict() in 0.000548 seconds -[ 900s] Executed Test_script_function_in_dict() in 0.000311 seconds -[ 900s] Executed Test_script_function_in_dict_arg() in 0.000330 seconds -[ 900s] Executed Test_tostring() in 0.000240 seconds -[ 900s] Executed 19 tests in 0.098644 seconds -[ 900s] SKIPPED Test_bind_in_python(): python feature missing -[ 900s] -[ 900s] From test_paste.vim: -[ 900s] Skipped -[ 900s] Executed Test_paste_clipboard() in 0.000414 seconds -[ 900s] Executed Test_paste_cmdline() in 0.000345 seconds -[ 900s] Executed Test_paste_ex_mode() in 0.000393 seconds -[ 900s] Executed Test_paste_insert_mode() in 0.000811 seconds -[ 900s] Executed Test_paste_normal_mode() in 0.000931 seconds -[ 900s] Executed Test_paste_onechar() in 0.000657 seconds -[ 900s] Executed Test_paste_opt_restore() in 0.000464 seconds -[ 900s] Executed Test_paste_visual_mode() in 0.061535 seconds -[ 900s] Executed Test_pastetoggle() in 0.000803 seconds -[ 900s] Executed Test_pastetoggle_timeout_no_typed_after_mapped() in 0.324108 seconds -[ 900s] Executed Test_pastetoggle_timeout_typed_after_mapped() in 0.309898 seconds -[ 900s] Executed Test_pastetoggle_timeout_typed_after_noremap() in 0.308496 seconds -[ 900s] Skipped -[ 900s] Executed Test_xrestore() in 0.000351 seconds -[ 900s] Executed 13 tests in 1.028997 seconds -[ 900s] SKIPPED Test_paste_clipboard(): clipboard_working feature missing -[ 900s] SKIPPED Test_xrestore(): xterm_clipboard feature missing -[ 900s] -[ 900s] From test_perl.vim: -[ 900s] Executed Test_000_SvREFCNT() in 0.007028 seconds -[ 900s] Executed Test_VIM_Blob() in 0.000362 seconds -[ 900s] Executed Test_VIM_Buffers() in 0.000775 seconds -[ 900s] Executed Test_VIM_Windows() in 0.000725 seconds -[ 900s] Executed Test_VIM_package() in 0.000323 seconds -[ 900s] Executed Test_buffer_Append() in 0.001028 seconds -[ 900s] Executed Test_buffer_Count() in 0.000632 seconds -[ 900s] Executed Test_buffer_Delete() in 0.000697 seconds -[ 900s] Executed Test_buffer_Get() in 0.000639 seconds -[ 900s] Executed Test_buffer_Name() in 0.000791 seconds -[ 900s] Executed Test_buffer_Number() in 0.000295 seconds -[ 900s] Executed Test_buffer_Set() in 0.000921 seconds -[ 900s] Executed Test_change_buffer() in 0.000632 seconds -[ 900s] Executed Test_evaluate_list() in 0.000734 seconds -[ 900s] Executed Test_perl_heredoc() in 0.000412 seconds -[ 900s] Executed Test_perl_in_sandbox() in 0.000549 seconds -[ 900s] Executed Test_perldo() in 0.002951 seconds -[ 900s] Executed Test_perleval() in 0.000992 seconds -[ 900s] Executed Test_set_cursor() in 0.000693 seconds -[ 900s] Executed Test_stack_usage_fix() in 0.113898 seconds -[ 900s] Executed Test_stdio() in 0.000389 seconds -[ 900s] Executed Test_window_Cursor() in 0.000721 seconds -[ 900s] Executed Test_window_SetHeight() in 0.000389 seconds -[ 900s] Executed 23 tests in 0.205887 seconds -[ 900s] -[ 900s] From test_plus_arg_edit.vim: -[ 900s] Executed Test_binary_arg() in 0.001110 seconds -[ 900s] Executed Test_edit() in 0.223733 seconds -[ 900s] Executed Test_edit_bad() in 0.096176 seconds -[ 900s] Executed 3 tests in 0.384235 seconds -[ 900s] -[ 900s] From test_popup.vim: -[ 900s] Executed Test_CompleteChanged() in 0.002451 seconds -[ 900s] Executed Test_balloon_split() in 0.000331 seconds -[ 900s] Executed Test_compl_ignore_mappings() in 0.001324 seconds -[ 900s] Executed Test_compl_vim_cmds_after_register_expr() in 0.000981 seconds -[ 900s] Executed Test_complete_CTRLN_startofbuffer() in 0.002051 seconds -[ 900s] Executed Test_complete_func_mess() in 0.000911 seconds -[ 900s] Executed Test_complete_no_filter() in 0.001358 seconds -[ 900s] Executed Test_complete_no_undo() in 0.001453 seconds -[ 900s] Executed Test_complete_o_tab() in 0.001454 seconds -[ 900s] Executed Test_completefunc_opens_new_window_one() in 0.000830 seconds -[ 900s] Executed Test_completefunc_opens_new_window_two() in 0.000863 seconds -[ 900s] Executed Test_completefunc_with_scratch_buffer() in 0.000906 seconds -[ 900s] Executed Test_completefunc_works() in 0.000836 seconds -[ 900s] Executed Test_completion_can_undo() in 0.000827 seconds -[ 900s] Executed Test_completion_clear_candidate_list() in 0.002111 seconds -[ 900s] Executed Test_completion_comment_formatting() in 0.000798 seconds -[ 900s] Executed Test_completion_ctrl_e_without_autowrap() in 0.000702 seconds -[ 900s] Executed Test_completion_respect_bs_option() in 0.084831 seconds -[ 900s] Executed Test_menu_only_exists_in_terminal() in 0.000319 seconds -[ 900s] Executed Test_noinsert_complete() in 0.001357 seconds -[ 900s] Executed Test_omnifunc_with_check() in 0.001540 seconds -[ 900s] Skipped -[ 900s] Executed Test_popup_and_preview_autocommand() in 0.000326 seconds -[ 900s] Executed Test_popup_and_previewwindow_dump() in 0.152319 seconds -[ 900s] Executed Test_popup_and_window_resize() in 0.244164 seconds -[ 900s] Executed Test_popup_command() in 0.291701 seconds -[ 900s] Executed Test_popup_complete() in 0.078414 seconds -[ 900s] Executed Test_popup_complete2() in 0.000860 seconds -[ 900s] Executed Test_popup_complete_backwards() in 0.000879 seconds -[ 900s] Executed Test_popup_complete_backwards_ctrl_p() in 0.000922 seconds -[ 900s] Executed Test_popup_complete_info_01() in 0.057718 seconds -[ 900s] Executed Test_popup_complete_info_02() in 0.001035 seconds -[ 900s] Executed Test_popup_complete_info_no_pum() in 0.000358 seconds -[ 900s] Executed Test_popup_completion_insertmode() in 0.100031 seconds -[ 900s] Executed Test_popup_position() in 0.136651 seconds -[ 900s] Executed Test_pum_getpos() in 0.000704 seconds -[ 900s] Executed Test_pum_rightleft() in 0.359743 seconds -[ 900s] Executed Test_pum_scrollbar() in 0.231579 seconds -[ 900s] Executed 37 tests in 1.874229 seconds -[ 900s] SKIPPED Test_popup_and_preview_autocommand(): python feature missing -[ 900s] -[ 900s] From test_popupwin.vim: -[ 900s] Executed Test_adjust_left_past_screen_width() in 0.002865 seconds -[ 900s] Executed Test_bufdel_skips_popupwin_buffer() in 0.000423 seconds -[ 900s] Executed Test_notifications() in 0.165804 seconds -[ 900s] Executed Test_popup_all_corners() in 0.137339 seconds -[ 900s] Executed Test_popup_atcursor() in 0.002273 seconds -[ 900s] Executed Test_popup_atcursor_pos() in 0.156571 seconds -[ 900s] Executed Test_popup_beval() in 0.331908 seconds -[ 900s] Executed Test_popup_close_callback() in 0.000473 seconds -[ 900s] Executed Test_popup_close_with_mouse() in 0.195324 seconds -[ 900s] Executed Test_popup_cursorline() in 0.758546 seconds -[ 900s] Executed Test_popup_cursorline_vim9() in 0.000547 seconds -[ 900s] Executed Test_popup_dialog() in 0.001998 seconds -[ 900s] Executed Test_popup_drag() in 0.260282 seconds -[ 900s] Executed Test_popup_drag_minwidth() in 0.187289 seconds -[ 900s] Executed Test_popup_drag_termwin() in 0.178566 seconds -[ 900s] Executed Test_popup_empty() in 0.000639 seconds -[ 900s] Executed Test_popup_filter() in 0.001055 seconds -[ 900s] Executed Test_popup_filter_menu() in 0.000414 seconds -[ 900s] Executed Test_popup_filter_normal_cmd() in 0.211599 seconds -[ 900s] Executed Test_popup_filter_win_execute() in 0.105916 seconds -[ 900s] Executed Test_popup_filter_win_execute_error() in 0.083513 seconds -[ 900s] Executed Test_popup_firstline() in 0.001069 seconds -[ 900s] Executed Test_popup_firstline_cursorline() in 0.000386 seconds -[ 900s] Executed Test_popup_firstline_dump() in 0.129641 seconds -[ 900s] Executed Test_popup_fitting_scrollbar() in 0.000478 seconds -[ 900s] Executed Test_popup_getoptions() in 0.000680 seconds -[ 900s] Executed Test_popup_getoptions_other_tab() in 0.000909 seconds -[ 900s] Executed Test_popup_getpos() in 0.000446 seconds -[ 900s] Executed Test_popup_hidden() in 0.001093 seconds -[ 900s] Executed Test_popup_hide() in 0.001200 seconds -[ 900s] Executed Test_popup_in_tab() in 0.000894 seconds -[ 900s] Executed Test_popup_invalid_arguments() in 0.002510 seconds -[ 900s] Executed Test_popup_menu() in 0.002189 seconds -[ 900s] Executed Test_popup_menu_filter() in 0.236541 seconds -[ 900s] Executed Test_popup_menu_narrow() in 0.124910 seconds -[ 900s] Executed Test_popup_menu_screenshot() in 0.104857 seconds -[ 900s] Executed Test_popup_menu_with_maxwidth() in 0.113211 seconds -[ 900s] Executed Test_popup_menu_with_scrollbar() in 0.241123 seconds -[ 900s] Executed Test_popup_menu_wrap() in 0.156887 seconds -[ 900s] Executed Test_popup_move() in 0.001227 seconds -[ 900s] Executed Test_popup_moved() in 0.001941 seconds -[ 900s] Executed Test_popup_never_behind() in 0.157903 seconds -[ 900s] Executed Test_popup_noscrolloff() in 0.000565 seconds -[ 900s] Executed Test_popup_nospace() in 0.158268 seconds -[ 900s] Executed Test_popup_option_values() in 0.000506 seconds -[ 900s] Executed Test_popup_position_adjust() in 0.008435 seconds -[ 900s] Executed Test_popup_prop_not_visible() in 0.262488 seconds -[ 900s] Executed Test_popup_scrollbar() in 0.656063 seconds -[ 900s] Skipped -[ 900s] Executed Test_popup_select() in 0.000360 seconds -[ 900s] Executed Test_popup_set_firstline() in 0.135956 seconds -[ 900s] Executed Test_popup_setoptions_other_tab() in 0.000924 seconds -[ 900s] Executed Test_popup_settext() in 0.284191 seconds -[ 900s] Executed Test_popup_settext_getline() in 0.000442 seconds -[ 900s] Executed Test_popup_settext_null() in 0.000429 seconds -[ 900s] Executed Test_popup_time() in 1.401742 seconds -[ 900s] Executed Test_popup_title() in 0.301702 seconds -[ 900s] Executed Test_popup_too_high_scrollbar() in 0.195375 seconds -[ 900s] Executed Test_popup_valid_arguments() in 0.000568 seconds -[ 900s] Executed Test_popup_width_longest() in 0.000994 seconds -[ 900s] Executed Test_popup_with_border_and_padding() in 0.344216 seconds -[ 900s] Executed Test_popup_with_mask() in 0.316079 seconds -[ 900s] Executed Test_popup_with_matches() in 0.158258 seconds -[ 900s] Executed Test_popup_with_showbreak() in 0.158487 seconds -[ 900s] Executed Test_popup_with_syntax_setbufvar() in 0.164169 seconds -[ 900s] Executed Test_popup_with_syntax_win_execute() in 0.142432 seconds -[ 900s] Executed Test_popup_with_wrap() in 0.117833 seconds -[ 900s] Executed Test_popup_without_wrap() in 0.152365 seconds -[ 900s] Executed Test_popup_wraps() in 0.000832 seconds -[ 900s] Executed Test_popupmenu_info_align_menu() in 0.226250 seconds -[ 900s] Executed Test_popupmenu_info_border() in 0.366084 seconds -[ 900s] Executed Test_popupmenu_info_hidden() in 0.220190 seconds -[ 900s] Executed Test_popupmenu_info_noborder() in 0.160789 seconds -[ 900s] Executed Test_popupmenu_info_too_wide() in 0.186766 seconds -[ 900s] Executed Test_popupmenu_masking() in 0.285976 seconds -[ 900s] Executed Test_popupwin_atcursor_far_right() in 0.000874 seconds -[ 900s] Executed Test_popupwin_buf_close() in 0.000963 seconds -[ 900s] Executed Test_popupwin_buffer_with_swapfile() in 0.087095 seconds -[ 900s] Executed Test_popupwin_bufnr() in 0.000969 seconds -[ 900s] Executed Test_popupwin_cancel() in 0.000671 seconds -[ 900s] Executed Test_popupwin_close_prevwin() in 0.101243 seconds -[ 900s] Executed Test_popupwin_double_width() in 0.109311 seconds -[ 900s] Executed Test_popupwin_exiting_terminal() in 0.021920 seconds -[ 900s] Executed Test_popupwin_filter_close_ctrl_c() in 0.161585 seconds -[ 900s] Executed Test_popupwin_filter_close_three_errors() in 0.179565 seconds -[ 900s] Executed Test_popupwin_filter_close_wrong_name() in 0.166512 seconds -[ 900s] Executed Test_popupwin_filter_input_multibyte() in 0.000717 seconds -[ 900s] Executed Test_popupwin_filter_mode() in 0.001596 seconds -[ 900s] Executed Test_popupwin_filter_mouse() in 0.106182 seconds -[ 900s] Executed Test_popupwin_filter_redraw() in 0.000749 seconds -[ 900s] Executed Test_popupwin_garbage_collect() in 0.000623 seconds -[ 900s] Executed Test_popupwin_getoptions_tablocal() in 0.000547 seconds -[ 900s] Executed Test_popupwin_latin1_encoding() in 0.073157 seconds -[ 900s] Executed Test_popupwin_recycle_bnr() in 0.000525 seconds -[ 900s] Executed Test_popupwin_sign() in 0.181843 seconds -[ 900s] Executed Test_popupwin_splitmove() in 0.000539 seconds -[ 900s] Executed Test_popupwin_terminal_buffer() in 0.058882 seconds -[ 900s] Executed Test_popupwin_terminal_buffer_none() in 0.051138 seconds -[ 900s] Executed Test_popupwin_terminal_scrollbar() in 0.205059 seconds -[ 900s] Executed Test_popupwin_width() in 0.002174 seconds -[ 900s] Executed Test_popupwin_with_buffer() in 0.064718 seconds -[ 900s] Executed Test_popupwin_with_buffer_and_filter() in 0.001155 seconds -[ 900s] Executed Test_previewpopup() in 0.357453 seconds -[ 900s] Executed Test_set_get_options() in 0.000556 seconds -[ 900s] Executed Test_simple_popup() in 0.330329 seconds -[ 900s] Executed Test_win_execute_closing_curwin() in 0.000745 seconds -[ 900s] Executed Test_win_execute_not_allowed() in 0.000951 seconds -[ 900s] Executed 106 tests in 12.845844 seconds -[ 900s] SKIPPED Test_popup_select(): clipboard_working feature missing -[ 900s] -[ 900s] From test_popupwin_textprop.vim: -[ 900s] Executed Test_textprop_popup() in 0.500704 seconds -[ 900s] Executed Test_textprop_popup_corners() in 0.346235 seconds -[ 900s] Executed Test_textprop_popup_offsets() in 0.128624 seconds -[ 900s] Executed 3 tests in 1.056766 seconds -[ 900s] -[ 900s] From test_preview.vim: -[ 900s] Executed Test_Psearch() in 0.004835 seconds -[ 900s] Executed Test_multiple_preview_windows() in 0.000525 seconds -[ 900s] Executed Test_window_preview() in 0.000729 seconds -[ 900s] Executed Test_window_preview_from_help() in 0.101085 seconds -[ 900s] Executed 4 tests in 0.119865 seconds -[ 900s] -[ 900s] From test_profile.vim: -[ 900s] Executed Test_profdel_func() in 0.028790 seconds -[ 900s] Executed Test_profdel_star() in 0.028586 seconds -[ 900s] Executed Test_profile_completion() in 0.004677 seconds -[ 900s] Executed Test_profile_errors() in 0.000361 seconds -[ 900s] Executed Test_profile_file() in 0.102818 seconds -[ 900s] Executed Test_profile_file_with_cont() in 0.035063 seconds -[ 900s] Executed Test_profile_func() in 0.126108 seconds -[ 900s] Executed Test_profile_func_with_ifelse() in 0.057049 seconds -[ 900s] Executed Test_profile_func_with_trycatch() in 0.148968 seconds -[ 900s] Executed Test_profile_stop_dump() in 0.001397 seconds -[ 900s] Executed Test_profile_truncate_mbyte() in 0.124085 seconds -[ 900s] Executed Test_profile_typed_func() in 0.228799 seconds -[ 900s] Executed Test_vim9_nested_call() in 0.098065 seconds -[ 900s] Executed Test_vim9_profiling() in 0.028283 seconds -[ 900s] Executed 14 tests in 1.030422 seconds -[ 900s] -[ 900s] From test_prompt_buffer.vim: -[ 900s] Executed Test_prompt_backspace() in 0.000567 seconds -[ 900s] Executed Test_prompt_basic() in 0.125145 seconds -[ 900s] Executed Test_prompt_buffer_edit() in 0.001103 seconds -[ 900s] Executed Test_prompt_buffer_getbufinfo() in 0.000665 seconds -[ 900s] Executed Test_prompt_editing() in 0.176606 seconds -[ 900s] Executed Test_prompt_garbage_collect() in 0.000653 seconds -[ 900s] Executed Test_prompt_switch_windows() in 0.288169 seconds -[ 900s] Executed Test_prompt_while_writing_to_hidden_buffer() in 0.118610 seconds -[ 900s] Executed 8 tests in 0.807017 seconds -[ 900s] -[ 900s] From test_python2.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_python2.vim: python feature missing -[ 900s] -[ 900s] From test_python3.vim: -[ 900s] Executed Test_AAA_python3_setup() in 0.025038 seconds -[ 900s] Executed Test_Catch_Exception_Message() in 0.000523 seconds -[ 900s] Executed Test_Write_To_Current_Buffer_Fixes_Cursor_Clear() in 0.000870 seconds -[ 900s] Executed Test_Write_To_Current_Buffer_Fixes_Cursor_List() in 0.000776 seconds -[ 900s] Executed Test_Write_To_Current_Buffer_Fixes_Cursor_Str() in 0.000758 seconds -[ 900s] Executed Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Clear() in 0.001200 seconds -[ 900s] Executed Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_ClearLine() in 0.001122 seconds -[ 900s] Executed Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_List() in 0.001123 seconds -[ 900s] Executed Test_Write_To_HiddenBuffer_Does_Not_Fix_Cursor_Str() in 0.001124 seconds -[ 900s] Executed Test_aaa_python3_threading() in 1.003442 seconds -[ 900s] Executed Test_py3do() in 0.002249 seconds -[ 900s] Executed Test_python3_buffer() in 0.009666 seconds -[ 900s] Executed Test_python3_buffers() in 0.002553 seconds -[ 900s] Executed Test_python3_chdir() in 0.001304 seconds -[ 900s] Executed Test_python3_dict() in 0.001257 seconds -[ 900s] Executed Test_python3_dict_del_items() in 0.000797 seconds -[ 900s] Executed Test_python3_dict_extend() in 0.001091 seconds -[ 900s] Executed Test_python3_dict_key_error() in 0.000886 seconds -[ 900s] Executed Test_python3_dir_method() in 0.000787 seconds -[ 900s] Executed Test_python3_errors() in 0.052358 seconds -[ 900s] Executed Test_python3_exception() in 0.001587 seconds -[ 900s] Executed Test_python3_float() in 0.000508 seconds -[ 900s] Executed Test_python3_fold_hidden_buffer() in 0.022637 seconds -[ 900s] Executed Test_python3_function_call() in 0.001358 seconds -[ 900s] Executed Test_python3_heredoc() in 0.000492 seconds -[ 900s] Executed Test_python3_hidden_buf_mod_does_not_mess_up_display() in 0.222081 seconds -[ 900s] Executed Test_python3_import() in 0.007593 seconds -[ 900s] Executed Test_python3_iter_ref() in 0.001048 seconds -[ 900s] Executed Test_python3_keyboard_interrupt() in 0.001139 seconds -[ 900s] Executed Test_python3_list() in 0.001604 seconds -[ 900s] Executed Test_python3_list_del_items() in 0.001239 seconds -[ 900s] Executed Test_python3_list_slice() in 0.001889 seconds -[ 900s] Executed Test_python3_lock_scope_attr() in 0.001312 seconds -[ 900s] Executed Test_python3_lockedvar() in 0.000929 seconds -[ 900s] Executed Test_python3_new() in 0.000980 seconds -[ 900s] Executed Test_python3_non_utf8_string() in 0.000416 seconds -[ 900s] Executed Test_python3_opt_reset_local_to_global() in 0.014373 seconds -[ 900s] Executed Test_python3_opts() in 0.027509 seconds -[ 900s] Executed Test_python3_pyeval() in 0.000920 seconds -[ 900s] Executed Test_python3_range() in 0.002225 seconds -[ 900s] Executed Test_python3_range2() in 0.001436 seconds -[ 900s] Executed Test_python3_settrace() in 0.000684 seconds -[ 900s] Executed Test_python3_slice_assignment() in 0.001432 seconds -[ 900s] Executed Test_python3_stdin_stderr() in 0.000524 seconds -[ 900s] Executed Test_python3_subclass() in 0.001053 seconds -[ 900s] Executed Test_python3_tabpage() in 0.001354 seconds -[ 900s] Executed Test_python3_tabpage_window() in 0.003478 seconds -[ 900s] Executed Test_python3_types() in 0.000941 seconds -[ 900s] Executed Test_python3_vars() in 0.000520 seconds -[ 900s] Executed Test_python3_vim_bindeval() in 0.000561 seconds -[ 900s] Executed Test_python3_vim_current() in 0.003780 seconds -[ 900s] Executed Test_python3_vim_func() in 0.006797 seconds -[ 900s] Executed Test_python3_vim_val() in 0.001151 seconds -[ 900s] Executed Test_python3_window() in 0.001589 seconds -[ 900s] Executed Test_set_cursor() in 0.000737 seconds -[ 900s] Executed Test_skipped_python3_command_does_not_affect_pyxversion() in 0.000264 seconds -[ 900s] Executed Test_unicode() in 0.003043 seconds -[ 900s] Executed Test_vim_function() in 0.000809 seconds -[ 900s] Executed 58 tests in 1.525817 seconds -[ 900s] -[ 900s] From test_pyx2.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_pyx2.vim: python feature missing -[ 900s] -[ 900s] From test_pyx3.vim: -[ 900s] Executed Test_Catch_Exception_Message() in 0.014728 seconds -[ 900s] Executed Test_has_pythonx() in 0.000283 seconds -[ 900s] Executed Test_pyx() in 0.000379 seconds -[ 900s] Executed Test_pyx3_heredoc() in 0.000405 seconds -[ 900s] Executed Test_pyxdo() in 0.000673 seconds -[ 900s] Executed Test_pyxeval() in 0.000404 seconds -[ 900s] Executed Test_pyxfile() in 0.002744 seconds -[ 900s] Executed 7 tests in 0.100569 seconds -[ 900s] -[ 900s] From test_quickfix.vim: -[ 900s] Executed Test_AA_cc_no_errors() in 0.000416 seconds -[ 900s] Executed Test_Autocmd() in 0.288417 seconds -[ 900s] Executed Test_Autocmd_Exception() in 0.000696 seconds -[ 900s] Executed Test_Multi_LL_Help() in 0.176444 seconds -[ 900s] Executed Test_Qf_Size() in 0.006031 seconds -[ 900s] Executed Test_add_invalid_entry_with_qf_window() in 0.001190 seconds -[ 900s] Executed Test_add_qf() in 0.001638 seconds -[ 900s] Executed Test_adjust_lnum() in 0.072416 seconds -[ 900s] Executed Test_autocmd_changelist() in 0.212304 seconds -[ 900s] Executed Test_browse() in 0.313164 seconds -[ 900s] Executed Test_bufoverflow() in 0.000822 seconds -[ 900s] Executed Test_bufwinenter_once() in 0.000438 seconds -[ 900s] Executed Test_caddbuffer_to_empty() in 0.134637 seconds -[ 900s] Executed Test_caddbuffer_wrong() in 0.000680 seconds -[ 900s] Executed Test_caddexpr_wrong() in 0.000522 seconds -[ 900s] Executed Test_cage() in 0.001751 seconds -[ 900s] Executed Test_cbelow() in 0.220978 seconds -[ 900s] Executed Test_cbottom() in 0.001378 seconds -[ 900s] Executed Test_cbuffer() in 0.004630 seconds -[ 900s] Executed Test_cclose_from_copen() in 0.000544 seconds -[ 900s] Executed Test_cclose_in_autocmd() in 0.000437 seconds -[ 900s] Executed Test_cexpr() in 0.000851 seconds -[ 900s] Executed Test_cexpr_acmd_freelist() in 0.000882 seconds -[ 900s] Executed Test_cfile() in 0.507700 seconds -[ 900s] Executed Test_cgetexpr_works() in 0.000405 seconds -[ 900s] Executed Test_cgetfile_on_long_lines() in 1.140182 seconds -[ 900s] Executed Test_changedtick() in 0.001709 seconds -[ 900s] Executed Test_clist() in 0.169190 seconds -[ 900s] Executed Test_copenHeight() in 0.000587 seconds -[ 900s] Executed Test_copenHeight_tabline() in 0.000496 seconds -[ 900s] Executed Test_cquit() in 0.127048 seconds -[ 900s] Executed Test_curswant() in 0.067669 seconds -[ 900s] Executed Test_cwindow() in 0.003761 seconds -[ 900s] Executed Test_cwindow_highlight() in 0.180992 seconds -[ 900s] Executed Test_cwindow_jump() in 0.004084 seconds -[ 900s] Executed Test_cwindow_newwin_fails() in 0.001504 seconds -[ 900s] Executed Test_dirstack_cleanup() in 0.000671 seconds -[ 900s] Executed Test_duplicate_buf() in 0.057801 seconds -[ 900s] Executed Test_efm() in 0.000507 seconds -[ 900s] Executed Test_efm1() in 0.036417 seconds -[ 900s] Executed Test_efm2() in 0.148664 seconds -[ 900s] Executed Test_efm_dirstack() in 0.346396 seconds -[ 900s] Executed Test_efm_end_lnum_col() in 0.000865 seconds -[ 900s] Executed Test_efm_error_type() in 0.000872 seconds -[ 900s] Executed Test_efm_ignore_continuations() in 0.001081 seconds -[ 900s] Executed Test_empty_list_quickfixtextfunc() in 0.096643 seconds -[ 900s] Executed Test_empty_qfbuf() in 0.074125 seconds -[ 900s] Executed Test_errortitle() in 0.000510 seconds -[ 900s] Executed Test_file_from_copen() in 0.000509 seconds -[ 900s] Executed Test_filetype_autocmd() in 0.000564 seconds -[ 900s] Executed Test_filter_clist() in 0.000755 seconds -[ 900s] Executed Test_get_list_from_lines() in 0.001569 seconds -[ 900s] Executed Test_getqflist() in 0.001699 seconds -[ 900s] Executed Test_getqflist_by_idx() in 0.001878 seconds -[ 900s] Executed Test_getqflist_invalid_nr() in 0.000264 seconds -[ 900s] Executed Test_getqflist_wiped_out_buffer() in 0.000790 seconds -[ 900s] Executed Test_grep() in 0.230070 seconds -[ 900s] Executed Test_helpgrep() in 0.385385 seconds -[ 900s] Executed Test_helpgrep_restore_cpo_aucmd() in 0.143716 seconds -[ 900s] Executed Test_helpgrep_vim9_restore_cpo() in 0.228897 seconds -[ 900s] Executed Test_helpgrep_with_lang_specifier() in 0.148545 seconds -[ 900s] Executed Test_history() in 0.016391 seconds -[ 900s] Executed Test_invalid_efm() in 0.002435 seconds -[ 900s] Executed Test_jumpto_first_error() in 0.129112 seconds -[ 900s] Executed Test_lbuffer_crash() in 0.002908 seconds -[ 900s] Executed Test_lbuffer_with_bwipe() in 0.001230 seconds -[ 900s] Executed Test_lexpr_crash() in 0.003409 seconds -[ 900s] Executed Test_lfile_crash() in 0.002157 seconds -[ 900s] Executed Test_lhelpgrep_autocmd() in 0.659847 seconds -[ 900s] Executed Test_lhelpgrep_autocmd_free_loclist() in 0.146922 seconds -[ 900s] Executed Test_lhelpgrep_from_help_window() in 0.400494 seconds -[ 900s] Executed Test_ll_window_ctx() in 0.001961 seconds -[ 900s] Executed Test_locationlist() in 0.023201 seconds -[ 900s] Executed Test_locationlist_cross_tab_jump() in 0.055705 seconds -[ 900s] Executed Test_locationlist_curwin_was_closed() in 0.001311 seconds -[ 900s] Executed Test_locationlist_open_in_newtab() in 0.056357 seconds -[ 900s] Executed Test_loclist_replace_autocmd() in 0.002409 seconds -[ 900s] Executed Test_loclist_update_with_llwin_only() in 0.004293 seconds -[ 900s] Executed Test_long_lines() in 0.059974 seconds -[ 900s] Executed Test_lopen_bwipe() in 0.027923 seconds -[ 900s] Executed Test_lopen_bwipe_all() in 0.069984 seconds -[ 900s] Executed Test_lvimgrep_crash() in 0.801416 seconds -[ 900s] Executed Test_lvimgrep_crash2() in 0.004685 seconds -[ 900s] Executed Test_multidirstack() in 0.077331 seconds -[ 900s] Executed Test_multifilestack() in 0.022944 seconds -[ 900s] Executed Test_nomem() in 0.304819 seconds -[ 900s] Executed Test_perbuf_efm() in 0.022398 seconds -[ 900s] Executed Test_qf_free() in 0.037109 seconds -[ 900s] Executed Test_qf_id() in 0.002216 seconds -[ 900s] Executed Test_qf_property() in 0.050308 seconds -[ 900s] Executed Test_qf_tick() in 0.123338 seconds -[ 900s] Executed Test_qf_title() in 0.005175 seconds -[ 900s] Executed Test_qfbuf() in 0.019078 seconds -[ 900s] Executed Test_qfbuf_update() in 0.020424 seconds -[ 900s] Executed Test_qfcmd_abort() in 0.106947 seconds -[ 900s] Executed Test_qfjump() in 0.192365 seconds -[ 900s] Executed Test_qflist_statusmsg() in 0.013218 seconds -[ 900s] Executed Test_qftextfunc() in 0.051894 seconds -[ 900s] Executed Test_qftextfunc_callback() in 0.315557 seconds -[ 900s] Executed Test_qftextfunc_other_loclist() in 0.011571 seconds -[ 900s] Executed Test_qftitle() in 0.120278 seconds -[ 900s] Executed Test_qfwin_pos() in 0.005828 seconds -[ 900s] Executed Test_quickfix_count() in 0.002838 seconds -[ 900s] Executed Test_quickfix_set_list_with_act() in 0.003171 seconds -[ 900s] Executed Test_quickfix_was_changed_by_autocmd() in 0.007689 seconds -[ 900s] Executed Test_quickfix_window_fails_to_open() in 0.252143 seconds -[ 900s] Executed Test_quickfixtextfunc_recursive() in 0.002603 seconds -[ 900s] Executed Test_recursive_setqflist() in 0.003511 seconds -[ 900s] Executed Test_resize_from_copen() in 0.001950 seconds -[ 900s] Executed Test_search_in_dirstack() in 0.214230 seconds -[ 900s] Executed Test_setexpr() in 0.002949 seconds -[ 900s] Executed Test_setloclist_crash() in 0.010667 seconds -[ 900s] Executed Test_setloclist_in_autocommand() in 0.091209 seconds -[ 900s] Executed Test_setqfidx() in 0.009589 seconds -[ 900s] Executed Test_setqflist() in 0.029614 seconds -[ 900s] Executed Test_setqflist_empty_middle() in 0.014684 seconds -[ 900s] Executed Test_setqflist_empty_older() in 0.014437 seconds -[ 900s] Executed Test_setqflist_invalid_nr() in 0.000918 seconds -[ 900s] Executed Test_setqflist_user_sets_buftype() in 0.000690 seconds -[ 900s] Executed Test_shorten_fname() in 0.003846 seconds -[ 900s] Executed Test_splitview() in 0.206746 seconds -[ 900s] Executed Test_switchbuf() in 0.388510 seconds -[ 900s] Executed Test_two_qf_windows() in 0.009468 seconds -[ 900s] Executed Test_two_windows() in 0.231198 seconds -[ 900s] Executed Test_view_result_split() in 0.003530 seconds -[ 900s] Executed Test_vim9_cexpr() in 0.002167 seconds -[ 900s] Executed Test_vimgrep() in 0.246189 seconds -[ 900s] Executed Test_vimgrep_autocmd() in 0.204704 seconds -[ 900s] Executed Test_vimgrep_autocmd_cd() in 0.201672 seconds -[ 900s] Executed Test_vimgrep_existing_swapfile() in 0.192150 seconds -[ 900s] Executed Test_vimgrep_fuzzy_match() in 0.165152 seconds -[ 900s] Executed Test_vimgrep_incsearch() in 0.004955 seconds -[ 900s] Executed Test_vimgrep_nomatch() in 0.005505 seconds -[ 900s] Executed Test_vimgrep_noswapfile() in 0.080293 seconds -[ 900s] Executed Test_vimgrep_wildcards_expanded_once() in 0.003440 seconds -[ 900s] Executed Test_vimgrep_with_no_last_search_pat() in 0.208609 seconds -[ 900s] Executed Test_vimgrep_with_textlock() in 0.008023 seconds -[ 900s] Executed Test_vimgrep_without_swap_file() in 0.272514 seconds -[ 900s] Executed Test_vimgreptitle() in 0.003638 seconds -[ 900s] Executed Test_viscol() in 0.144598 seconds -[ 900s] Executed Test_win_gettype() in 0.002950 seconds -[ 900s] Executed Test_winonly_autocmd() in 0.018311 seconds -[ 900s] Executed 142 tests in 12.951378 seconds -[ 900s] -[ 900s] From test_quotestar.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_quotestar.vim: clipboard_working feature missing -[ 900s] -[ 900s] From test_random.vim: -[ 900s] Executed Test_Rand() in 0.000696 seconds -[ 900s] Executed Test_issue_5587() in 0.000252 seconds -[ 900s] Executed 2 tests in 0.091951 seconds -[ 900s] -[ 900s] From test_recover.vim: -[ 900s] Executed Test_nocatch_process_still_running() in 1.154034 seconds -[ 900s] Executed Test_noname_buffer() in 0.084308 seconds -[ 900s] Executed Test_recover_corrupted_swap_file() in 0.609396 seconds -[ 900s] Executed Test_recover_empty_swap_file() in 0.096386 seconds -[ 900s] Executed Test_recover_encrypted_swap_file() in 0.724348 seconds -[ 900s] Executed Test_recover_invalid_cursor_pos() in 0.389597 seconds -[ 900s] Executed Test_recover_multiple_swap_files() in 0.291985 seconds -[ 900s] Executed Test_recover_root_dir() in 0.001269 seconds -[ 900s] Executed Test_recover_symbolic_link() in 0.470882 seconds -[ 900s] Executed Test_recover_unmodified_file() in 0.196168 seconds -[ 900s] Executed Test_recover_unreadable_swap_file() in 0.040988 seconds -[ 900s] Executed Test_swap_file() in 0.549153 seconds -[ 900s] Executed 12 tests in 4.666985 seconds -[ 900s] -[ 900s] From test_regex_char_classes.vim: -[ 900s] Executed Test_regex_char_classes() in 0.005226 seconds -[ 900s] Executed Test_s_search() in 0.006129 seconds -[ 900s] Executed Test_x_search() in 0.006511 seconds -[ 900s] Executed 3 tests in 0.121589 seconds -[ 900s] -[ 900s] From test_registers.vim: -[ 900s] Executed Test_aaa_empty_reg_test() in 0.000586 seconds -[ 900s] Skipped -[ 900s] Executed Test_clipboard_nul() in 0.000280 seconds -[ 900s] Skipped -[ 900s] Executed Test_clipboard_regs() in 0.000276 seconds -[ 900s] Executed Test_display_registers() in 0.001413 seconds -[ 900s] Executed Test_end_record_using_mapping() in 0.000698 seconds -[ 900s] Executed Test_end_reg_executing() in 0.000595 seconds -[ 900s] Executed Test_execute_reg_as_ex_cmd() in 0.506866 seconds -[ 900s] Executed Test_execute_register() in 0.000801 seconds -[ 900s] Executed Test_get_reginfo() in 0.000802 seconds -[ 900s] Executed Test_get_register() in 0.001209 seconds -[ 900s] Executed Test_insert_small_delete() in 0.000650 seconds -[ 900s] Executed Test_last_used_exec_reg() in 0.000887 seconds -[ 900s] Executed Test_put_reg_restart_mode() in 0.000703 seconds -[ 900s] Executed Test_record_in_insert_mode() in 0.000577 seconds -[ 900s] Executed Test_record_in_select_mode() in 0.000713 seconds -[ 900s] Executed Test_recording_esc_sequence() in 0.000682 seconds -[ 900s] Executed Test_recording_status_in_ex_line() in 0.002346 seconds -[ 900s] Executed Test_recording_with_select_mode() in 0.000668 seconds -[ 900s] Executed Test_register_one() in 0.000830 seconds -[ 900s] Executed Test_register_y_append_reset() in 0.000712 seconds -[ 900s] Executed Test_set_register() in 0.001538 seconds -[ 900s] Executed Test_set_register_dict() in 0.000600 seconds -[ 900s] Executed Test_v_register() in 0.001118 seconds -[ 900s] Executed Test_ve_blockpaste() in 0.000591 seconds -[ 900s] Executed Test_yank_shows_register() in 0.000742 seconds -[ 900s] Executed 25 tests in 0.590211 seconds -[ 900s] SKIPPED Test_clipboard_nul(): clipboard_working feature missing -[ 900s] SKIPPED Test_clipboard_regs(): clipboard_working feature missing -[ 900s] -[ 900s] From test_rename.vim: -[ 900s] Executed Test_rename_copy() in 0.013015 seconds -[ 900s] Executed Test_rename_dir_to_dir() in 0.098767 seconds -[ 900s] Executed Test_rename_fails() in 0.012210 seconds -[ 900s] Executed Test_rename_file_ignore_case() in 0.017354 seconds -[ 900s] Executed Test_rename_file_to_file() in 0.184487 seconds -[ 900s] Executed Test_rename_same_dir() in 0.102590 seconds -[ 900s] Executed Test_rename_same_file() in 0.082711 seconds -[ 900s] Executed 7 tests in 0.588937 seconds -[ 900s] -[ 900s] From test_restricted.vim: -[ 900s] Executed Test_restricted_mode() in 0.441897 seconds -[ 900s] Executed 1 test in 0.539593 seconds -[ 900s] -[ 900s] From test_retab.vim: -[ 900s] Executed Test_nocatch_retab_endless() in 0.008330 seconds -[ 900s] Executed Test_retab() in 0.001758 seconds -[ 900s] Executed Test_retab_endless() in 0.008334 seconds -[ 900s] Executed Test_retab_error() in 0.000724 seconds -[ 900s] Executed 4 tests in 0.101749 seconds -[ 900s] -[ 900s] From test_ruby.vim: -[ 900s] Executed Test_ruby_Vim_blob() in 0.077264 seconds -[ 900s] Executed Test_ruby_Vim_buffer_count() in 0.001219 seconds -[ 900s] Executed Test_ruby_Vim_buffer_current() in 0.000307 seconds -[ 900s] Executed Test_ruby_Vim_buffer_get() in 0.001170 seconds -[ 900s] Executed Test_ruby_Vim_command() in 0.000601 seconds -[ 900s] Executed Test_ruby_Vim_evaluate() in 0.000679 seconds -[ 900s] Executed Test_ruby_Vim_evaluate_dict() in 0.000312 seconds -[ 900s] Executed Test_ruby_Vim_evaluate_list() in 0.000677 seconds -[ 900s] Executed Test_ruby_Vim_message() in 0.000378 seconds -[ 900s] Executed Test_ruby_Vim_set_option() in 0.000296 seconds -[ 900s] Executed Test_ruby_Vim_window_count() in 0.001015 seconds -[ 900s] Executed Test_ruby_Vim_window_current() in 0.000302 seconds -[ 900s] Executed Test_ruby_Vim_window_get() in 0.001085 seconds -[ 900s] Executed Test_ruby_buffer_append() in 0.000791 seconds -[ 900s] Executed Test_ruby_buffer_count() in 0.000590 seconds -[ 900s] Executed Test_ruby_buffer_delete() in 0.000725 seconds -[ 900s] Executed Test_ruby_buffer_get() in 0.000745 seconds -[ 900s] Executed Test_ruby_buffer_line() in 0.000631 seconds -[ 900s] Executed Test_ruby_buffer_line_number() in 0.000579 seconds -[ 900s] Executed Test_ruby_buffer_name() in 0.000663 seconds -[ 900s] Executed Test_ruby_buffer_number() in 0.000497 seconds -[ 900s] Executed Test_ruby_buffer_set() in 0.000763 seconds -[ 900s] Executed Test_ruby_change_buffer() in 0.000560 seconds -[ 900s] Executed Test_ruby_heredoc() in 0.000410 seconds -[ 900s] Executed Test_ruby_p() in 0.001022 seconds -[ 900s] Executed Test_ruby_print() in 0.000540 seconds -[ 900s] Executed Test_ruby_set_cursor() in 0.000808 seconds -[ 900s] Executed Test_ruby_window_buffer() in 0.001175 seconds -[ 900s] Executed Test_ruby_window_height() in 0.000370 seconds -[ 900s] Executed Test_ruby_window_width() in 0.000379 seconds -[ 900s] Executed Test_rubydo() in 0.001092 seconds -[ 900s] Executed Test_rubydo_dollar_underscore() in 0.000830 seconds -[ 900s] Executed Test_rubyeval_error() in 0.000302 seconds -[ 900s] Executed Test_rubyfile() in 0.057733 seconds -[ 900s] Executed 34 tests in 0.176164 seconds -[ 900s] -[ 900s] From test_scriptnames.vim: -[ 900s] Executed Test_scriptnames() in 0.077953 seconds -[ 900s] Executed 1 test in 0.090567 seconds -[ 900s] -[ 900s] From test_scrollbind.vim: -[ 900s] Executed Test_scrollbind() in 0.006435 seconds -[ 900s] Executed Test_scrollbind_opt() in 0.002886 seconds -[ 900s] Executed 2 tests in 0.088806 seconds -[ 900s] -[ 900s] From test_search.vim: -[ 900s] Executed Test_hlsearch_and_visual() in 0.138320 seconds -[ 900s] Executed Test_hlsearch_block_visual_match() in 0.359409 seconds -[ 900s] Executed Test_hlsearch_cursearch() in 0.318500 seconds -[ 900s] Executed Test_hlsearch_dump() in 0.123754 seconds -[ 900s] Executed Test_incsearch_add_char_under_cursor() in 0.000811 seconds -[ 900s] Executed Test_incsearch_cmdline_modifier() in 0.000662 seconds -[ 900s] Executed Test_incsearch_highlighting() in 0.385483 seconds -[ 900s] Executed Test_incsearch_highlighting_newline() in 0.183690 seconds -[ 900s] Executed Test_incsearch_scrolling() in 0.502521 seconds -[ 900s] Executed Test_incsearch_search_dump() in 0.334171 seconds -[ 900s] Executed Test_incsearch_sort_dump() in 0.230846 seconds -[ 900s] Executed Test_incsearch_substitute() in 0.001041 seconds -[ 900s] Executed Test_incsearch_substitute_dump() in 1.235889 seconds -[ 900s] Executed Test_incsearch_substitute_dump2() in 0.380541 seconds -[ 900s] Executed Test_incsearch_substitute_long_line() in 0.005093 seconds -[ 900s] Executed Test_incsearch_vimgrep_dump() in 0.246499 seconds -[ 900s] Executed Test_incsearch_with_change() in 0.460234 seconds -[ 900s] Executed Test_invalid_regexp() in 0.000990 seconds -[ 900s] Executed Test_keep_last_search_pattern() in 0.000773 seconds -[ 900s] Executed Test_large_hex_chars1() in 0.000314 seconds -[ 900s] Executed Test_large_hex_chars2() in 0.000329 seconds -[ 900s] Executed Test_look_behind() in 0.000533 seconds -[ 900s] Executed Test_no_last_search_pattern() in 0.000378 seconds -[ 900s] Executed Test_no_last_substitute_pat() in 0.082103 seconds -[ 900s] Executed Test_one_error_msg() in 0.000349 seconds -[ 900s] Executed Test_pattern_is_uppercase_smartcase() in 0.000869 seconds -[ 900s] Executed Test_regexp_switch_engine() in 0.022726 seconds -[ 900s] Executed Test_search_Ctrl_L_combining() in 0.000819 seconds -[ 900s] Executed Test_search_cmdline() in 0.023108 seconds -[ 900s] Executed Test_search_cmdline2() in 0.001573 seconds -[ 900s] Executed Test_search_cmdline3() in 0.000675 seconds -[ 900s] Executed Test_search_cmdline3g() in 0.001244 seconds -[ 900s] Executed Test_search_cmdline3s() in 0.081342 seconds -[ 900s] Executed Test_search_cmdline3v() in 0.001098 seconds -[ 900s] Executed Test_search_cmdline4() in 0.001134 seconds -[ 900s] Executed Test_search_cmdline5() in 0.000761 seconds -[ 900s] Executed Test_search_cmdline6() in 0.000926 seconds -[ 900s] Executed Test_search_cmdline7() in 0.000834 seconds -[ 900s] Executed Test_search_cmdline8() in 0.298481 seconds -[ 900s] Executed Test_search_cmdline_incsearch_highlight() in 0.225272 seconds -[ 900s] Executed Test_search_cmdline_incsearch_highlight_attr() in 0.646730 seconds -[ 900s] Executed Test_search_display_pattern() in 0.000847 seconds -[ 900s] Executed Test_search_errors() in 0.000870 seconds -[ 900s] Executed Test_search_in_visual_area() in 0.000663 seconds -[ 900s] Executed Test_search_match_at_curpos() in 0.000759 seconds -[ 900s] Executed Test_search_match_paren() in 0.000684 seconds -[ 900s] Executed Test_search_multibyte() in 0.000769 seconds -[ 900s] Executed Test_search_offset() in 0.000917 seconds -[ 900s] Executed Test_search_past_eof() in 0.000648 seconds -[ 900s] Executed Test_search_pat_not_found() in 0.000539 seconds -[ 900s] Executed Test_search_regexp() in 0.001535 seconds -[ 900s] Executed Test_search_sentence() in 0.000395 seconds -[ 900s] Executed Test_search_smartcase() in 0.000945 seconds -[ 900s] Executed Test_search_smartcase_utf8() in 0.000749 seconds -[ 900s] Executed Test_search_special() in 0.000383 seconds -[ 900s] Executed Test_search_stopline() in 0.000555 seconds -[ 900s] Executed Test_search_tilde_pat() in 0.106026 seconds -[ 900s] Executed Test_search_timeout() in 2.605886 seconds -[ 900s] Executed Test_search_undefined_behaviour() in 0.001170 seconds -[ 900s] Executed Test_search_undefined_behaviour2() in 0.000264 seconds -[ 900s] Executed Test_search_visual_area_linewise() in 0.000879 seconds -[ 900s] Executed Test_search_with_invalid_range() in 0.058372 seconds -[ 900s] Executed Test_search_with_no_last_pat() in 0.041432 seconds -[ 900s] Executed Test_searchc() in 0.000617 seconds -[ 900s] Executed Test_searchdecl() in 0.000628 seconds -[ 900s] Executed Test_searchforward_var() in 0.000596 seconds -[ 900s] Executed Test_searchpair() in 0.001007 seconds -[ 900s] Executed Test_searchpair_errors() in 0.000470 seconds -[ 900s] Executed Test_searchpair_leak() in 0.000610 seconds -[ 900s] Executed Test_searchpair_skip() in 0.000671 seconds -[ 900s] Executed Test_searchpair_timeout() in 0.101279 seconds -[ 900s] Executed Test_searchpair_timeout_with_skip() in 0.003395 seconds -[ 900s] Executed Test_searchpairpos() in 0.000902 seconds -[ 900s] Executed Test_searchpairpos_errors() in 0.000511 seconds -[ 900s] Executed Test_subst_word_under_cursor() in 0.000951 seconds -[ 900s] Executed Test_use_sub_pat() in 0.000596 seconds -[ 900s] Executed Test_word_under_cursor_after_match() in 0.000743 seconds -[ 900s] Executed 77 tests in 9.328105 seconds -[ 900s] -[ 900s] From test_search_stat.vim: -[ 900s] Executed Test_search_stat() in 0.160249 seconds -[ 900s] Executed Test_search_stat_and_incsearch() in 0.201010 seconds -[ 900s] Executed Test_search_stat_foldopen() in 0.170057 seconds -[ 900s] Executed Test_search_stat_screendump() in 0.164356 seconds -[ 900s] Executed Test_search_stat_then_gd() in 0.164450 seconds -[ 900s] Executed Test_searchcount_fails() in 0.000541 seconds -[ 900s] Executed Test_searchcount_in_statusline() in 0.141991 seconds -[ 900s] Executed 7 tests in 1.130430 seconds -[ 900s] -[ 900s] From test_selectmode.vim: -[ 900s] Executed Test_blockwise_select_mode() in 0.000687 seconds -[ 900s] Executed Test_characterwise_select_mode() in 0.000936 seconds -[ 900s] Executed Test_linewise_select_mode() in 0.000707 seconds -[ 900s] Executed Test_select_mode_map() in 0.000749 seconds -[ 900s] Executed Test_selectmode_basic() in 0.001058 seconds -[ 900s] Executed Test_selectmode_register() in 0.000726 seconds -[ 900s] Executed Test_selectmode_start() in 0.000714 seconds -[ 900s] Executed Test_term_mouse_multiple_clicks_to_select_mode() in 0.164058 seconds -[ 900s] Executed 8 tests in 0.268030 seconds -[ 900s] -[ 900s] From test_shell.vim: -[ 900s] Executed Test_set_shell() in 0.137896 seconds -[ 900s] Executed Test_shell() in 0.000336 seconds -[ 900s] Executed Test_shell_options() in 1.650032 seconds -[ 900s] Executed Test_shellescape() in 0.000350 seconds -[ 900s] Executed Test_shellquote() in 0.001633 seconds -[ 900s] Skipped -[ 900s] Executed Test_shellslash() in 0.000305 seconds -[ 900s] Executed Test_shellxquote() in 0.121643 seconds -[ 900s] Executed 7 tests in 1.930413 seconds -[ 900s] SKIPPED Test_shellslash(): shellslash option not supported -[ 900s] -[ 900s] From test_shortpathname.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_shortpathname.vim: only works on MS-Windows -[ 900s] -[ 900s] From test_signals.vim: -[ 900s] Executed Test_deadly_signal_TERM() in 0.268378 seconds -[ 900s] Executed Test_signal_INT() in 0.107863 seconds -[ 900s] Executed Test_signal_PWR() in 0.091010 seconds -[ 900s] Executed Test_signal_TSTP() in 5.164592 seconds -[ 900s] Found errors in Test_signal_TSTP(): -[ 900s] command line..script /home/abuild/rpmbuild/BUILD/vim90/src/testdir/runtest.vim[464]..function RunTheTest[44]..Test_signal_TSTP[34]..StopVimInTerminal[14]..WaitForAssert[2]..6_WaitForCommon[11]..13 line 1: Expected 'finished' but got 'running' -[ 900s] Flaky test failed, running it again -[ 900s] Executed Test_signal_TSTP() in 0.259906 seconds -[ 900s] Executed Test_signal_WINCH() in 0.006957 seconds -[ 900s] Executed 6 tests in 7.992347 seconds -[ 900s] -[ 900s] From test_signs.vim: -[ 900s] Executed Test_aaa_sign_id_autogen() in 0.179057 seconds -[ 900s] Executed Test_sign() in 0.002832 seconds -[ 900s] Executed Test_sign_change_type() in 0.000801 seconds -[ 900s] Executed Test_sign_completion() in 0.074499 seconds -[ 900s] Executed Test_sign_cursor_position() in 0.258966 seconds -[ 900s] Executed Test_sign_delete_buffer() in 0.000523 seconds -[ 900s] Executed Test_sign_funcs() in 0.089591 seconds -[ 900s] Executed Test_sign_funcs_multi() in 0.077222 seconds -[ 900s] Executed Test_sign_group() in 0.081287 seconds -[ 900s] Executed Test_sign_invalid_commands() in 0.000976 seconds -[ 900s] Executed Test_sign_jump_func() in 0.001253 seconds -[ 900s] Executed Test_sign_lnum_adjust() in 0.000768 seconds -[ 900s] Executed Test_sign_memfailures() in 0.077284 seconds -[ 900s] Executed Test_sign_null_list() in 0.000290 seconds -[ 900s] Executed Test_sign_numcol() in 0.003821 seconds -[ 900s] Executed Test_sign_priority() in 0.012283 seconds -[ 900s] Executed Test_sign_undefine_still_placed() in 0.000664 seconds -[ 900s] Executed Test_sign_unplace() in 0.047349 seconds -[ 900s] Executed 18 tests in 0.974468 seconds -[ 900s] -[ 900s] From test_sleep.vim: -[ 900s] Executed Test_sleep_bang() in 2.201460 seconds -[ 900s] Executed 1 test in 2.268434 seconds -[ 900s] -[ 900s] From test_smartindent.vim: -[ 900s] Executed Test_no_si_after_completion() in 0.001001 seconds -[ 900s] Executed Test_nosmartindent() in 0.000726 seconds -[ 900s] Executed Test_si_add_line_around_comment() in 0.000578 seconds -[ 900s] Executed Test_si_after_completion() in 0.000920 seconds -[ 900s] Executed Test_si_comment_line_continuation() in 0.000550 seconds -[ 900s] Executed Test_si_if_cond_split_across_lines() in 0.000667 seconds -[ 900s] Executed Test_si_indent_after_c_comment() in 0.000668 seconds -[ 900s] Executed Test_si_one_line_comment() in 0.000646 seconds -[ 900s] Executed Test_si_with_paste() in 0.000788 seconds -[ 900s] Executed Test_smartindent_braces() in 0.000614 seconds -[ 900s] Executed Test_smartindent_has_no_effect() in 0.000719 seconds -[ 900s] Executed 11 tests in 0.108032 seconds -[ 900s] -[ 900s] From test_sort.vim: -[ 900s] Executed Test_sort_cmd() in 0.010589 seconds -[ 900s] Executed Test_sort_cmd_report() in 0.001277 seconds -[ 900s] Executed Test_sort_default() in 0.000382 seconds -[ 900s] Executed Test_sort_float() in 0.000261 seconds -[ 900s] Executed Test_sort_followed_by_cmd() in 0.000521 seconds -[ 900s] Executed Test_sort_large_num() in 0.000849 seconds -[ 900s] Executed Test_sort_last_search_pat() in 0.000482 seconds -[ 900s] Executed Test_sort_nested() in 0.000362 seconds -[ 900s] Executed Test_sort_null_string() in 0.000238 seconds -[ 900s] Executed Test_sort_numbers() in 0.000277 seconds -[ 900s] Executed Test_sort_numeric() in 0.000247 seconds -[ 900s] Executed Test_sort_strings() in 0.000329 seconds -[ 900s] Executed Test_sort_using_dict_func() in 0.000356 seconds -[ 900s] Executed Test_sort_with_marks() in 0.000490 seconds -[ 900s] Executed Test_sort_with_no_last_search_pat() in 0.134975 seconds -[ 900s] Executed 15 tests in 0.250580 seconds -[ 900s] -[ 900s] From test_sound.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_sound.vim: sound feature missing -[ 900s] -[ 900s] From test_source.vim: -[ 900s] Executed Test_different_script() in 0.152777 seconds -[ 900s] Executed Test_nested_script() in 0.094738 seconds -[ 900s] Executed Test_source_autocmd() in 0.091681 seconds -[ 900s] Executed Test_source_autocmd_sfile() in 0.013619 seconds -[ 900s] Executed Test_source_buffer() in 0.012326 seconds -[ 900s] Executed Test_source_buffer_long_line() in 0.011789 seconds -[ 900s] Executed Test_source_buffer_vim9() in 0.002052 seconds -[ 900s] Executed Test_source_buffer_with_NUL_char() in 0.097611 seconds -[ 900s] Executed Test_source_cmd() in 0.000313 seconds -[ 900s] Executed Test_source_error() in 0.000709 seconds -[ 900s] Executed Test_source_ignore_shebang() in 0.085049 seconds -[ 900s] Executed Test_source_sandbox() in 0.101374 seconds -[ 900s] Executed 12 tests in 0.752421 seconds -[ 900s] -[ 900s] From test_spell.vim: -[ 900s] Executed Test_compl_with_CTRL_X_CTRL_K_using_spell() in 0.009039 seconds -[ 900s] Executed Test_curswant() in 0.000737 seconds -[ 900s] Executed Test_region_error() in 0.062993 seconds -[ 900s] Executed Test_spell_dump_word_length() in 0.035123 seconds -[ 900s] Executed Test_spell_file_missing() in 0.001480 seconds -[ 900s] Executed Test_spell_good_word_invalid() in 0.014149 seconds -[ 900s] Executed Test_spell_long_word() in 0.016343 seconds -[ 900s] Executed Test_spell_screendump() in 0.156268 seconds -[ 900s] Executed Test_spellbadword() in 0.093340 seconds -[ 900s] Executed Test_spelldump() in 0.120894 seconds -[ 900s] Executed Test_spelldump_bang() in 0.173133 seconds -[ 900s] Executed Test_spellfile_value() in 0.000313 seconds -[ 900s] Executed Test_spellinfo() in 0.062163 seconds -[ 900s] Executed Test_spelllang_inv_region() in 0.016084 seconds -[ 900s] Executed Test_spellreall() in 0.055685 seconds -[ 900s] Executed Test_spellsuggest() in 0.329514 seconds -[ 900s] Executed Test_spellsuggest_expr_errors() in 0.000525 seconds -[ 900s] Executed Test_spellsuggest_option_expr() in 0.085197 seconds -[ 900s] Executed Test_spellsuggest_option_file() in 0.297796 seconds -[ 900s] Executed Test_spellsuggest_option_methods() in 0.195684 seconds -[ 900s] Executed Test_spellsuggest_option_number() in 0.210917 seconds -[ 900s] Executed Test_spellsuggest_timeout() in 0.000452 seconds -[ 900s] Executed Test_spellsuggest_too_deep() in 0.002774 seconds -[ 900s] Executed Test_spellsuggest_visual_end_of_line() in 0.016337 seconds -[ 900s] Executed Test_wrap_search() in 0.016045 seconds -[ 900s] Executed Test_z_equal_on_invalid_utf8_word() in 0.000742 seconds -[ 900s] Executed Test_z_equal_on_single_character() in 0.001011 seconds -[ 900s] Executed Test_zeq_crash() in 0.000812 seconds -[ 900s] Executed Test_zeq_no_spelllang() in 0.000792 seconds -[ 900s] Executed Test_zeq_nospell() in 0.056161 seconds -[ 900s] Executed Test_zz_NOSLITSUGS() in 0.070982 seconds -[ 900s] Executed Test_zz_Numbers() in 0.022782 seconds -[ 900s] Executed Test_zz_affix() in 0.173594 seconds -[ 900s] Executed Test_zz_affix_flags() in 0.160239 seconds -[ 900s] Executed Test_zz_basic() in 0.023831 seconds -[ 900s] Executed Test_zz_compound() in 0.387595 seconds -[ 900s] Executed Test_zz_prefixes() in 0.146941 seconds -[ 900s] Executed Test_zz_sal_and_addition() in 0.235644 seconds -[ 900s] Executed 38 tests in 3.342598 seconds -[ 900s] -[ 900s] From test_spell_utf8.vim: -[ 900s] Executed Test_check_empty_line() in 0.007718 seconds -[ 900s] Executed Test_check_for_valid_word() in 0.000307 seconds -[ 900s] Executed Test_no_crash_with_weird_text() in 0.085963 seconds -[ 900s] Executed Test_spell_NOSLITSUGS() in 0.072504 seconds -[ 900s] Executed Test_spell_Numbers() in 0.022616 seconds -[ 900s] Executed Test_spell_affix() in 0.328422 seconds -[ 900s] Executed Test_spell_affix_flags() in 0.045165 seconds -[ 900s] Executed Test_spell_basic() in 0.156232 seconds -[ 900s] Executed Test_spell_compound() in 0.290921 seconds -[ 900s] Executed Test_spell_prefixes() in 0.046510 seconds -[ 900s] Executed Test_spell_sal_and_addition() in 0.301147 seconds -[ 900s] Executed Test_spellfile_value() in 0.000332 seconds -[ 900s] Executed Test_word_index() in 0.022498 seconds -[ 900s] Executed 13 tests in 1.489408 seconds -[ 900s] -[ 900s] From test_spellfile.vim: -[ 900s] Executed Test_NOBREAK() in 0.207308 seconds -[ 900s] Executed Test_aff_file_format_error() in 4.781985 seconds -[ 900s] Executed Test_init_spellfile() in 0.105670 seconds -[ 900s] Executed Test_mkspell() in 0.528486 seconds -[ 900s] Executed Test_mkspell_empty_dic() in 0.211601 seconds -[ 900s] Executed Test_mkspellmem_opt() in 0.000505 seconds -[ 900s] Executed Test_spell_add_word() in 0.000932 seconds -[ 900s] Executed Test_spell_normal() in 0.013541 seconds -[ 900s] Executed Test_spellfile_CHECKCOMPOUNDPATTERN() in 0.196112 seconds -[ 900s] Executed Test_spellfile_CIRCUMFIX() in 0.136037 seconds -[ 900s] Executed Test_spellfile_COMMON() in 0.074949 seconds -[ 900s] Executed Test_spellfile_NOCOMPOUNDSUGS() in 0.190154 seconds -[ 900s] Executed Test_spellfile_NOSUGGEST() in 0.135964 seconds -[ 900s] Executed Test_spellfile_SFX_strip() in 0.073096 seconds -[ 900s] Executed Test_spellfile_format_error() in 3.413238 seconds -[ 900s] Executed Test_spellfile_verbose() in 0.087759 seconds -[ 900s] Executed Test_sugfile_format_error() in 0.302160 seconds -[ 900s] Executed Test_wordlist_dic() in 0.430025 seconds -[ 900s] Executed 18 tests in 10.928981 seconds -[ 900s] -[ 900s] From test_startup.vim: -[ 900s] Executed Test_A_F_H_arg() in 0.136555 seconds -[ 900s] Executed Test_D_arg() in 0.021824 seconds -[ 900s] Executed Test_EXINIT() in 0.128650 seconds -[ 900s] Executed Test_E_arg() in 0.048011 seconds -[ 900s] Executed Test_F_arg() in 0.006988 seconds -[ 900s] Executed Test_T_arg() in 0.300485 seconds -[ 900s] Executed Test_VIMINIT() in 0.085062 seconds -[ 900s] Executed Test_V_arg() in 0.081338 seconds -[ 900s] Executed Test_V_file_arg() in 0.016203 seconds -[ 900s] Executed Test_after_comes_later() in 0.276432 seconds -[ 900s] Executed Test_b_arg() in 0.172327 seconds -[ 900s] Skipped -[ 900s] Executed Test_background_foreground() in 0.000310 seconds -[ 900s] Executed Test_compatible_args() in 0.190752 seconds -[ 900s] Executed Test_default_term() in 0.006942 seconds -[ 900s] Executed Test_defaults_error() in 0.014063 seconds -[ 900s] Executed Test_echo_true_in_cmd() in 0.109621 seconds -[ 900s] Skipped -[ 900s] Executed Test_echo_wid() in 0.000289 seconds -[ 900s] Executed Test_exrc() in 0.144075 seconds -[ 900s] Executed Test_file_args() in 0.560229 seconds -[ 900s] Skipped -[ 900s] Executed Test_font() in 0.000303 seconds -[ 900s] Skipped -[ 900s] Executed Test_geometry() in 0.000255 seconds -[ 900s] Executed Test_h_arg() in 0.013498 seconds -[ 900s] Executed Test_help_arg() in 0.004995 seconds -[ 900s] Skipped -[ 900s] Executed Test_iconic() in 0.000285 seconds -[ 900s] Executed Test_invalid_args() in 0.077360 seconds -[ 900s] Executed Test_io_not_a_terminal() in 0.003843 seconds -[ 900s] Executed Test_issue_3969() in 0.006934 seconds -[ 900s] Executed Test_l_arg() in 0.240562 seconds -[ 900s] Executed Test_log() in 0.072984 seconds -[ 900s] Executed Test_m_M_R() in 0.454409 seconds -[ 900s] Executed Test_missing_vimrc() in 0.164723 seconds -[ 900s] Executed Test_n_arg() in 0.152273 seconds -[ 900s] Executed Test_not_a_term() in 2.016932 seconds -[ 900s] Executed Test_o_arg() in 0.272028 seconds -[ 900s] Executed Test_p_arg() in 0.151195 seconds -[ 900s] Executed Test_pack_in_rtp_when_plugins_run() in 0.242836 seconds -[ 900s] Executed Test_progname() in 1.084580 seconds -[ 900s] Executed Test_progpath() in 0.000288 seconds -[ 900s] Executed Test_q_arg() in 0.665842 seconds -[ 900s] Executed Test_r_arg() in 0.007420 seconds -[ 900s] Executed Test_read_stdin() in 0.043575 seconds -[ 900s] Executed Test_rename_buffer_on_startup() in 0.066741 seconds -[ 900s] Skipped -[ 900s] Executed Test_reverse() in 0.000341 seconds -[ 900s] Executed Test_s_arg() in 0.066669 seconds -[ 900s] Executed Test_silent_ex_mode() in 0.016133 seconds -[ 900s] Executed Test_start_in_minimal_window() in 0.164320 seconds -[ 900s] Executed Test_start_insertmode() in 0.085534 seconds -[ 900s] Executed Test_start_with_tabs() in 0.053550 seconds -[ 900s] Executed Test_startup_script() in 0.012365 seconds -[ 900s] Executed Test_startuptime() in 0.098121 seconds -[ 900s] Executed Test_t_arg() in 0.358582 seconds -[ 900s] Executed Test_too_many_edit_args() in 0.004229 seconds -[ 900s] Executed Test_v_argv() in 0.004447 seconds -[ 900s] Executed Test_w_arg() in 0.419473 seconds -[ 900s] Executed Test_write_in_vimrc() in 0.063028 seconds -[ 900s] Executed Test_x_arg() in 0.218705 seconds -[ 900s] Executed Test_zzz_startinsert() in 0.378118 seconds -[ 900s] Executed 57 tests in 10.071874 seconds -[ 900s] SKIPPED Test_background_foreground(): cannot start the GUI -[ 900s] SKIPPED Test_echo_wid(): cannot start the GUI -[ 900s] SKIPPED Test_font(): cannot start the GUI -[ 900s] SKIPPED Test_geometry(): cannot start the GUI -[ 900s] SKIPPED Test_iconic(): cannot start the GUI -[ 900s] SKIPPED Test_reverse(): cannot start the GUI -[ 900s] -[ 900s] From test_stat.vim: -[ 900s] Executed Test_autoread_fast() in 0.218435 seconds -[ 900s] Executed Test_autoread_file_deleted() in 4.062559 seconds -[ 900s] Executed Test_checktime() in 1.268070 seconds -[ 900s] Executed Test_checktime_fast() in 0.028576 seconds -[ 900s] Executed Test_existent_directory() in 0.000303 seconds -[ 900s] Executed Test_existent_file() in 0.137217 seconds -[ 900s] Executed Test_getftype() in 0.017760 seconds -[ 900s] Executed Test_nonexistent_file() in 0.000308 seconds -[ 900s] Skipped -[ 900s] Executed Test_win32_symlink_dir() in 0.000276 seconds -[ 900s] Executed 9 tests in 5.832111 seconds -[ 900s] SKIPPED Test_win32_symlink_dir(): only works on MS-Windows -[ 900s] -[ 900s] From test_statusline.vim: -[ 900s] Executed Test_caught_error_in_statusline() in 0.000649 seconds -[ 900s] Executed Test_statusline() in 0.177656 seconds -[ 900s] Executed Test_statusline_after_split_vsplit() in 0.000807 seconds -[ 900s] Executed Test_statusline_highlight_truncate() in 0.127270 seconds -[ 900s] Executed Test_statusline_mbyte_fillchar() in 0.002221 seconds -[ 900s] Executed Test_statusline_removed_group() in 0.089577 seconds -[ 900s] Executed Test_statusline_using_mode() in 0.179345 seconds -[ 900s] Executed Test_statusline_verylong_filename() in 0.001679 seconds -[ 900s] Executed Test_statusline_visual() in 0.003648 seconds -[ 900s] Executed Test_statusline_will_be_disabled_with_error() in 0.000714 seconds -[ 900s] Executed 10 tests in 0.672252 seconds -[ 900s] -[ 900s] From test_substitute.vim: -[ 900s] Executed Test_invalid_submatch() in 0.000482 seconds -[ 900s] Executed Test_multiline_subst() in 0.000721 seconds -[ 900s] Executed Test_nocatch_sub_failure_handling() in 0.000715 seconds -[ 900s] Executed Test_repeat_last_sub() in 0.000513 seconds -[ 900s] Executed Test_replace_keeppatterns() in 0.000687 seconds -[ 900s] Executed Test_replace_with_tilde() in 0.000566 seconds -[ 900s] Executed Test_sub_beyond_end() in 0.000563 seconds -[ 900s] Executed Test_sub_change_window() in 0.000677 seconds -[ 900s] Executed Test_sub_cmd_1() in 0.001649 seconds -[ 900s] Executed Test_sub_cmd_2() in 0.001643 seconds -[ 900s] Executed Test_sub_cmd_3() in 0.001231 seconds -[ 900s] Executed Test_sub_cmd_4() in 0.001266 seconds -[ 900s] Executed Test_sub_cmd_5() in 0.000743 seconds -[ 900s] Executed Test_sub_cmd_6() in 0.001107 seconds -[ 900s] Executed Test_sub_cmd_7() in 0.001268 seconds -[ 900s] Executed Test_sub_cmd_8() in 0.000876 seconds -[ 900s] Executed Test_sub_cmd_9() in 0.000590 seconds -[ 900s] Executed Test_sub_edit_scriptfile() in 0.000646 seconds -[ 900s] Executed Test_sub_expand_text() in 0.000521 seconds -[ 900s] Executed Test_sub_open_cmdline_win() in 0.103423 seconds -[ 900s] Executed Test_sub_replace_1() in 0.000436 seconds -[ 900s] Executed Test_sub_replace_10() in 0.000306 seconds -[ 900s] Executed Test_sub_replace_2() in 0.000369 seconds -[ 900s] Executed Test_sub_replace_3() in 0.000279 seconds -[ 900s] Executed Test_sub_replace_4() in 0.000328 seconds -[ 900s] Executed Test_sub_replace_5() in 0.000295 seconds -[ 900s] Executed Test_sub_replace_6() in 0.000250 seconds -[ 900s] Executed Test_sub_replace_7() in 0.000267 seconds -[ 900s] Executed Test_sub_replace_8() in 0.001024 seconds -[ 900s] Executed Test_sub_replace_9() in 0.000788 seconds -[ 900s] Executed Test_sub_undo_change() in 0.001099 seconds -[ 900s] Executed Test_sub_vi_compatibility() in 0.000615 seconds -[ 900s] Executed Test_sub_with_no_last_pat() in 0.291698 seconds -[ 900s] Executed Test_submatch_list_concatenate() in 0.000327 seconds -[ 900s] Executed Test_substitute() in 0.000250 seconds -[ 900s] Executed Test_substitute_count() in 0.000722 seconds -[ 900s] Executed Test_substitute_errors() in 0.000743 seconds -[ 900s] Executed Test_substitute_expr() in 0.000414 seconds -[ 900s] Executed Test_substitute_expr_arg() in 0.000583 seconds -[ 900s] Executed Test_substitute_flag_n() in 0.000641 seconds -[ 900s] Executed Test_substitute_flags_lp() in 0.000574 seconds -[ 900s] Executed Test_substitute_float() in 0.000298 seconds -[ 900s] Executed Test_substitute_gdefault() in 0.000753 seconds -[ 900s] Executed Test_substitute_join() in 0.000653 seconds -[ 900s] Executed Test_substitute_multiline_submatch() in 0.000511 seconds -[ 900s] Executed Test_substitute_partial() in 0.000416 seconds -[ 900s] Executed Test_substitute_repeat() in 0.000659 seconds -[ 900s] Executed Test_substitute_short_cmd() in 0.002355 seconds -[ 900s] Executed Test_substitute_skipped_range() in 0.000339 seconds -[ 900s] Executed Test_substitute_using_func() in 0.000242 seconds -[ 900s] Executed Test_substitute_variants() in 0.329979 seconds -[ 900s] Executed Test_using_old_sub() in 0.001108 seconds -[ 900s] Executed Test_z_substitute_expr_leak() in 0.000435 seconds -[ 900s] Executed 53 tests in 0.868923 seconds -[ 900s] -[ 900s] From test_suspend.vim: -[ 900s] Executed Test_suspend() in 0.239064 seconds -[ 900s] Executed Test_suspend_autocmd() in 0.177398 seconds -[ 900s] Executed 2 tests in 0.489341 seconds -[ 900s] -[ 900s] From test_swap.vim: -[ 900s] Executed Test_missing_dir() in 0.001217 seconds -[ 900s] Executed Test_missing_swap_file() in 0.000930 seconds -[ 900s] Executed Test_no_swap_file() in 0.000231 seconds -[ 900s] Executed Test_preserve() in 0.000644 seconds -[ 900s] Executed Test_swap_auto_delete() in 0.311438 seconds -[ 900s] Executed Test_swap_directory() in 0.020978 seconds -[ 900s] Skipped -[ 900s] Executed Test_swap_group() in 0.003980 seconds -[ 900s] Executed Test_swap_prompt_splitwin() in 0.358026 seconds -[ 900s] Executed Test_swap_recover() in 0.101780 seconds -[ 900s] Executed Test_swap_recover_ext() in 0.158881 seconds -[ 900s] Executed Test_swap_split_win() in 0.162507 seconds -[ 900s] Executed Test_swap_symlink() in 0.015496 seconds -[ 900s] Executed Test_swapchoice() in 0.272238 seconds -[ 900s] Executed Test_swapfile_delete() in 0.423049 seconds -[ 900s] Executed Test_swapinfo() in 0.316798 seconds -[ 900s] Executed Test_swapname() in 0.001274 seconds -[ 900s] Executed 16 tests in 2.260804 seconds -[ 900s] SKIPPED Test_swap_group(): need at least two groups, got ['abuild'] -[ 900s] -[ 900s] From test_syn_attr.vim: -[ 900s] Executed Test_color_names() in 0.009419 seconds -[ 900s] Executed Test_missing_attr() in 0.000386 seconds -[ 900s] Executed 2 tests in 0.095234 seconds -[ 900s] -[ 900s] From test_syntax.vim: -[ 900s] Executed Test_WinEnter_synstack_synID() in 0.000750 seconds -[ 900s] Executed Test_bg_detection() in 0.000591 seconds -[ 900s] Executed Test_conceal() in 0.001702 seconds -[ 900s] Executed Test_echohl_completion() in 0.000338 seconds -[ 900s] Executed Test_highlight_invalid_arg() in 0.000432 seconds -[ 900s] Executed Test_invalid_name() in 0.000299 seconds -[ 900s] Executed Test_ownsyntax() in 0.021338 seconds -[ 900s] Executed Test_ownsyntax_completion() in 0.001021 seconds -[ 900s] Executed Test_search_syntax_skip() in 0.002102 seconds -[ 900s] Executed Test_syn_clear() in 0.000766 seconds -[ 900s] Executed Test_syn_contained_transparent() in 0.006733 seconds -[ 900s] Executed Test_syn_include_contains_TOP() in 0.003720 seconds -[ 900s] Executed Test_syn_iskeyword() in 0.004092 seconds -[ 900s] Executed Test_syn_sync() in 0.000772 seconds -[ 900s] Executed Test_syn_wrong_z_one() in 0.001279 seconds -[ 900s] Executed Test_syn_zsub() in 0.004236 seconds -[ 900s] Executed Test_synstack_synIDtrans() in 0.005258 seconds -[ 900s] Executed Test_syntax_after_bufdo() in 0.192657 seconds -[ 900s] Executed Test_syntax_after_reload() in 0.085625 seconds -[ 900s] Executed Test_syntax_arg_skipped() in 0.003182 seconds -[ 900s] Executed Test_syntax_c() in 0.123720 seconds -[ 900s] Executed Test_syntax_completion() in 0.003373 seconds -[ 900s] Executed Test_syntax_foldlevel() in 0.010693 seconds -[ 900s] Executed Test_syntax_hangs() in 0.204363 seconds -[ 900s] Executed Test_syntax_invalid_arg() in 0.001696 seconds -[ 900s] Executed Test_syntax_list() in 0.010272 seconds -[ 900s] Executed Test_syntime() in 0.012347 seconds -[ 900s] Executed Test_syntime_completion() in 0.000749 seconds -[ 900s] Executed 28 tests in 0.782022 seconds -[ 900s] -[ 900s] From test_system.vim: -[ 900s] Executed Test_System() in 0.029126 seconds -[ 900s] Executed Test_system_exmode() in 0.087146 seconds -[ 900s] Skipped -[ 900s] Executed Test_system_with_shell_quote() in 0.000296 seconds -[ 900s] Executed 3 tests in 0.136947 seconds -[ 900s] SKIPPED Test_system_with_shell_quote(): only works on MS-Windows -[ 900s] -[ 900s] From test_tab.vim: -[ 900s] Executed Test_smarttab() in 0.001099 seconds -[ 900s] Executed Test_softtabstop() in 0.000825 seconds -[ 900s] Executed 2 tests in 0.090167 seconds -[ 900s] -[ 900s] From test_tabpage.vim: -[ 900s] Executed Test_close_on_quitpre() in 0.001621 seconds -[ 900s] Executed Test_lastused_tabpage() in 0.001027 seconds -[ 900s] Skipped -[ 900s] Executed Test_tabline_tabmenu() in 0.000289 seconds -[ 900s] Executed Test_tabnext_on_buf_unload1() in 0.000376 seconds -[ 900s] Executed Test_tabnext_on_buf_unload2() in 0.000838 seconds -[ 900s] Executed Test_tabpage() in 0.003808 seconds -[ 900s] Executed Test_tabpage_Ctrl_Pageup() in 0.000558 seconds -[ 900s] Executed Test_tabpage_alloc_failure() in 0.002850 seconds -[ 900s] Executed Test_tabpage_close_cmdwin() in 0.000936 seconds -[ 900s] Executed Test_tabpage_close_on_switch() in 0.000822 seconds -[ 900s] Executed Test_tabpage_cmdheight() in 0.136728 seconds -[ 900s] Executed Test_tabpage_ctrl_pgup_pgdown() in 0.001013 seconds -[ 900s] Executed Test_tabpage_switchtab_on_close() in 0.000603 seconds -[ 900s] Executed Test_tabpage_with_autocmd() in 0.001117 seconds -[ 900s] Executed Test_tabpage_with_autocmd_tab_drop() in 0.001381 seconds -[ 900s] Executed Test_tabpage_with_tab_modifier() in 0.039282 seconds -[ 900s] Executed Test_tabpage_with_tabclose() in 0.007187 seconds -[ 900s] Executed Test_tabpage_with_tabnext() in 0.001754 seconds -[ 900s] Executed Test_tabpage_with_tabonly() in 0.035397 seconds -[ 900s] Executed Test_tabpage_with_tabprevious() in 0.002648 seconds -[ 900s] Executed Test_tabs() in 0.000842 seconds -[ 900s] Executed 21 tests in 0.326795 seconds -[ 900s] SKIPPED Test_tabline_tabmenu(): only works in the GUI -[ 900s] -[ 900s] From test_tagjump.vim: -[ 900s] Executed Test_cancel_ptjump() in 0.096336 seconds -[ 900s] Executed Test_comment_search() in 0.000824 seconds -[ 900s] Executed Test_define_search() in 0.001278 seconds -[ 900s] Executed Test_duplicate_tagjump() in 0.112277 seconds -[ 900s] Executed Test_getsettagstack() in 0.397781 seconds -[ 900s] Executed Test_inc_search() in 0.001941 seconds -[ 900s] Executed Test_isearch_copy_line() in 0.000667 seconds -[ 900s] Executed Test_keyword_jump() in 0.182444 seconds -[ 900s] Executed Test_ltag() in 0.046157 seconds -[ 900s] Executed Test_macro_search() in 0.001918 seconds -[ 900s] Executed Test_multimatch_non_existing_files() in 0.081460 seconds -[ 900s] Executed Test_preview_tag_multimatch() in 0.159199 seconds -[ 900s] Executed Test_ptag_with_notagstack() in 0.000413 seconds -[ 900s] Executed Test_ptjump() in 0.158758 seconds -[ 900s] Executed Test_stag_close_window_on_error() in 0.231754 seconds -[ 900s] Executed Test_static_tagjump() in 0.158304 seconds -[ 900s] Executed Test_tag_envvar() in 0.074586 seconds -[ 900s] Executed Test_tag_file_encoding() in 0.505299 seconds -[ 900s] Executed Test_tag_fold() in 0.187543 seconds -[ 900s] Executed Test_tag_guess() in 0.087172 seconds -[ 900s] Executed Test_tag_last_search_pat() in 0.119820 seconds -[ 900s] Executed Test_tag_length() in 0.294890 seconds -[ 900s] Executed Test_tag_line_toolong() in 0.263265 seconds -[ 900s] Executed Test_tag_multimatch() in 0.186514 seconds -[ 900s] Executed Test_tag_preview() in 0.022717 seconds -[ 900s] Executed Test_tag_sort() in 0.188664 seconds -[ 900s] Executed Test_tag_stack() in 0.025727 seconds -[ 900s] Executed Test_tag_symbolic() in 0.118374 seconds -[ 900s] Executed Test_tag_with_count() in 0.137900 seconds -[ 900s] Executed Test_tagbsearch() in 0.300276 seconds -[ 900s] Executed Test_tagfile_errors() in 0.207712 seconds -[ 900s] Executed Test_tagjump_etags() in 0.689356 seconds -[ 900s] Executed Test_tagjump_switchbuf() in 0.159891 seconds -[ 900s] Executed Test_tagline() in 0.157298 seconds -[ 900s] Executed Test_tagnr_recall() in 0.245793 seconds -[ 900s] Executed Test_tnext_multimatch() in 0.317375 seconds -[ 900s] Executed Test_tselect() in 0.332880 seconds -[ 900s] Executed Test_tselect_listing() in 0.084307 seconds -[ 900s] Executed 38 tests in 6.359226 seconds -[ 900s] -[ 900s] From test_taglist.vim: -[ 900s] Executed Test_duplicate_field() in 0.072524 seconds -[ 900s] Executed Test_format_error() in 0.022659 seconds -[ 900s] Executed Test_tag_addr_with_semicolon() in 0.016986 seconds -[ 900s] Executed Test_tag_complete_wildoptions() in 0.012905 seconds -[ 900s] Executed Test_tag_complete_with_overlong_line() in 0.032910 seconds -[ 900s] Executed Test_tagfile_excmd() in 0.034039 seconds -[ 900s] Executed Test_tagfile_ignore_comments() in 0.040305 seconds -[ 900s] Executed Test_tagfiles() in 0.170385 seconds -[ 900s] Executed Test_taglist() in 0.024412 seconds -[ 900s] Executed Test_taglist_ctags_etags() in 0.017144 seconds -[ 900s] Executed Test_taglist_native_etags() in 0.064472 seconds -[ 900s] Executed Test_tags_too_long() in 0.000638 seconds -[ 900s] Executed Test_tagsfile_without_trailing_newline() in 0.043372 seconds -[ 900s] Executed 13 tests in 0.567912 seconds -[ 900s] -[ 900s] From test_tcl.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_tcl.vim: tcl feature missing -[ 900s] -[ 900s] From test_termcodes.vim: -[ 900s] Executed Test_1xterm_mouse_wheel() in 0.002070 seconds -[ 900s] Executed Test_Keycode_Translation() in 0.000609 seconds -[ 900s] Executed Test_cmdline_literal() in 0.000807 seconds -[ 900s] Executed Test_focus_events() in 0.000702 seconds -[ 900s] Executed Test_get_termcode() in 0.000662 seconds -[ 900s] Executed Test_ignore_dec_mouse() in 0.004448 seconds -[ 900s] Executed Test_insert_literal() in 0.141550 seconds -[ 900s] Executed Test_list_builtin_terminals() in 0.233035 seconds -[ 900s] Executed Test_mapping_esc() in 0.000790 seconds -[ 900s] Executed Test_mapping_works_with_alt() in 0.906726 seconds -[ 900s] Executed Test_mapping_works_with_alt_and_shift() in 0.551945 seconds -[ 900s] Executed Test_mapping_works_with_ctrl() in 1.224867 seconds -[ 900s] Executed Test_mapping_works_with_ctrl_alt() in 1.108976 seconds -[ 900s] Executed Test_mapping_works_with_shift() in 0.353848 seconds -[ 900s] Executed Test_mapping_works_with_shift_alt() in 0.418602 seconds -[ 900s] Executed Test_mapping_works_with_shift_ctrl() in 0.565799 seconds -[ 900s] Executed Test_mapping_works_with_shift_ctrl_alt() in 0.409391 seconds -[ 900s] Executed Test_mapping_works_with_shift_plain() in 0.635977 seconds -[ 900s] Executed Test_modifyOtherKeys_ambiguous_mapping() in 0.035974 seconds -[ 900s] Executed Test_modifyOtherKeys_basic() in 0.627398 seconds -[ 900s] Executed Test_modifyOtherKeys_mapped() in 0.035886 seconds -[ 900s] Executed Test_modifyOtherKeys_no_mapping() in 0.071630 seconds -[ 900s] Executed Test_modifyOtherKeys_shift_tab() in 0.070933 seconds -[ 900s] Executed Test_mouse_alt_leftclick() in 0.134944 seconds -[ 900s] Executed Test_mouse_cmdwin_resize() in 0.001355 seconds -[ 900s] Executed Test_mouse_termcodes() in 0.006310 seconds -[ 900s] Executed Test_simplify_ctrl_at() in 0.000549 seconds -[ 900s] Executed Test_simplify_noremap() in 0.000506 seconds -[ 900s] Executed Test_simplify_timedout() in 0.000519 seconds -[ 900s] Executed Test_special_term_keycodes() in 0.000932 seconds -[ 900s] Executed Test_term_mouse_click_X_to_close_tab() in 0.006393 seconds -[ 900s] Executed Test_term_mouse_click_in_cmdline_to_set_pos() in 0.001350 seconds -[ 900s] Executed Test_term_mouse_click_tab() in 0.005394 seconds -[ 900s] Executed Test_term_mouse_double_click_to_create_tab() in 0.005204 seconds -[ 900s] Executed Test_term_mouse_drag_beyond_window() in 0.045401 seconds -[ 900s] Executed Test_term_mouse_drag_statusline() in 0.001606 seconds -[ 900s] Executed Test_term_mouse_drag_to_move_tab() in 0.005307 seconds -[ 900s] Executed Test_term_mouse_drag_window_separator() in 0.002937 seconds -[ 900s] Executed Test_term_mouse_help_window() in 0.017805 seconds -[ 900s] Executed Test_term_mouse_left_click() in 0.001509 seconds -[ 900s] Skipped -[ 900s] Executed Test_term_mouse_middle_click() in 0.000277 seconds -[ 900s] Skipped -[ 900s] Executed Test_term_mouse_middle_click_in_cmdline_to_paste() in 0.000259 seconds -[ 900s] Skipped -[ 900s] Executed Test_term_mouse_middle_click_insert_mode() in 0.000255 seconds -[ 900s] Executed Test_term_mouse_middle_click_no_clipboard() in 0.001309 seconds -[ 900s] Executed Test_term_mouse_multiple_clicks_to_visually_select() in 0.121553 seconds -[ 900s] Executed Test_term_mouse_popup_menu() in 0.001400 seconds -[ 900s] Executed Test_term_mouse_popup_menu_setpos() in 0.005169 seconds -[ 900s] Executed Test_term_mouse_quickfix_window() in 0.001770 seconds -[ 900s] Executed Test_term_mouse_search() in 0.000930 seconds -[ 900s] Executed Test_term_mouse_shift_middle_click() in 0.000650 seconds -[ 900s] Executed Test_term_mouse_switch_win_insert_mode() in 0.000894 seconds -[ 900s] Executed Test_term_mouse_visual_mode() in 0.001168 seconds -[ 900s] Executed Test_term_rgb_response() in 0.001177 seconds -[ 900s] Executed Test_terminal_builtin_without_gui() in 2.019115 seconds -[ 900s] Executed Test_xterm_mouse_click_in_fold_columns() in 0.001780 seconds -[ 900s] Executed Test_xterm_mouse_right_click_extends_visual() in 0.079280 seconds -[ 900s] Executed Test_xterm_mouse_tagjump() in 0.121332 seconds -[ 900s] Executed Test_xx01_term_style_response() in 0.000335 seconds -[ 900s] Executed Test_xx02_iTerm2_response() in 0.000324 seconds -[ 900s] Executed Test_xx03_libvterm_response() in 0.000452 seconds -[ 900s] Executed Test_xx04_Mac_Terminal_response() in 0.000454 seconds -[ 900s] Executed Test_xx05_mintty_response() in 0.000302 seconds -[ 900s] Executed Test_xx06_screen_response() in 0.000320 seconds -[ 900s] Executed Test_xx07_xterm_response() in 0.000707 seconds -[ 900s] Executed 64 tests in 10.055147 seconds -[ 900s] SKIPPED Test_term_mouse_middle_click(): clipboard_working feature missing -[ 900s] SKIPPED Test_term_mouse_middle_click_in_cmdline_to_paste(): clipboard_working feature missing -[ 900s] SKIPPED Test_term_mouse_middle_click_insert_mode(): clipboard_working feature missing -[ 900s] -[ 900s] From test_termencoding.vim: -[ 900s] Executed Test_termencoding_euc_jp() in 0.210647 seconds -[ 900s] Executed 1 test in 0.310283 seconds -[ 900s] -[ 900s] From test_terminal.vim: -[ 900s] Executed Test_aa_terminal_focus_events() in 0.207151 seconds -[ 900s] Executed Test_combining_double_width() in 0.130996 seconds -[ 900s] Executed Test_open_term_from_cmd() in 0.135862 seconds -[ 900s] Executed Test_start_terminal_from_timer() in 0.482753 seconds -[ 900s] Executed Test_term_wait_in_close_cb() in 0.031382 seconds -[ 900s] Executed Test_terminal_TerminalWinOpen() in 1.021488 seconds -[ 900s] Executed Test_terminal_adds_jump() in 0.001242 seconds -[ 900s] Executed Test_terminal_all_ansi_colors() in 0.115914 seconds -[ 900s] Executed Test_terminal_ansicolors_default() in 0.021495 seconds -[ 900s] Executed Test_terminal_ansicolors_func() in 0.027325 seconds -[ 900s] Executed Test_terminal_ansicolors_global() in 0.021569 seconds -[ 900s] Executed Test_terminal_api_arg() in 0.214758 seconds -[ 900s] Executed Test_terminal_api_call() in 0.183214 seconds -[ 900s] Executed Test_terminal_api_call_fail_delete() in 0.070437 seconds -[ 900s] Executed Test_terminal_api_call_fails() in 0.124484 seconds -[ 900s] Executed Test_terminal_api_drop_newwin() in 0.122336 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_bin() in 0.067839 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_binary() in 0.085900 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_enc() in 0.074445 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_encoding() in 0.085965 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_ff() in 0.083710 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_fileformat() in 0.076100 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_nobin() in 0.074310 seconds -[ 900s] Executed Test_terminal_api_drop_newwin_nobinary() in 0.091476 seconds -[ 900s] Executed Test_terminal_api_drop_oldwin() in 0.068104 seconds -[ 900s] Executed Test_terminal_aucmd_on_close() in 0.123129 seconds -[ 900s] Executed Test_terminal_basic() in 0.021658 seconds -[ 900s] Executed Test_terminal_composing_unicode() in 0.128668 seconds -[ 900s] Executed Test_terminal_curwin() in 0.075004 seconds -[ 900s] Executed Test_terminal_cwd() in 0.021586 seconds -[ 900s] Executed Test_terminal_cwd_failure() in 0.012890 seconds -[ 900s] Executed Test_terminal_dumpdiff() in 0.013474 seconds -[ 900s] Executed Test_terminal_dumpdiff_options() in 0.001314 seconds -[ 900s] Executed Test_terminal_dumpdiff_size() in 0.000550 seconds -[ 900s] Executed Test_terminal_dumpdiff_swap() in 0.000939 seconds -[ 900s] Executed Test_terminal_dumpload() in 0.001051 seconds -[ 900s] Executed Test_terminal_dumpload_dump() in 0.154588 seconds -[ 900s] Executed Test_terminal_dumpwrite_composing() in 0.136523 seconds -[ 900s] Executed Test_terminal_dumpwrite_errors() in 0.136772 seconds -[ 900s] Executed Test_terminal_duplicate_eof_arg() in 0.032063 seconds -[ 900s] Executed Test_terminal_env() in 0.031918 seconds -[ 900s] Executed Test_terminal_eof_arg() in 0.031825 seconds -[ 900s] Skipped -[ 900s] Executed Test_terminal_eof_arg_win32_ctrl_z() in 0.000293 seconds -[ 900s] Executed Test_terminal_exit() in 0.113589 seconds -[ 900s] Executed Test_terminal_finish_open_close() in 0.900431 seconds -[ 900s] Executed Test_terminal_hide_buffer_job_finished() in 0.011978 seconds -[ 900s] Executed Test_terminal_hide_buffer_job_running() in 0.021972 seconds -[ 900s] Executed Test_terminal_list_args() in 0.000958 seconds -[ 900s] Executed Test_terminal_make_change() in 0.021938 seconds -[ 900s] Executed Test_terminal_nasty_cb() in 0.059463 seconds -[ 900s] Executed Test_terminal_nested_autocmd() in 0.025535 seconds -[ 900s] Executed Test_terminal_no_cmd() in 0.011281 seconds -[ 900s] Executed Test_terminal_no_name() in 0.021863 seconds -[ 900s] Executed Test_terminal_noblock() in 0.948556 seconds -[ 900s] Executed Test_terminal_one_column() in 0.112211 seconds -[ 900s] Executed Test_terminal_open_autocmd() in 0.002725 seconds -[ 900s] Executed Test_terminal_paste_register() in 0.123549 seconds -[ 900s] Executed Test_terminal_popup_bufload() in 0.062105 seconds -[ 900s] Executed Test_terminal_popup_insert_cmd() in 0.021474 seconds -[ 900s] Executed Test_terminal_popup_two_windows() in 0.194725 seconds -[ 900s] Executed Test_terminal_popup_with_cmd() in 0.001031 seconds -[ 900s] Executed Test_terminal_postponed_scrollback() in 0.575797 seconds -[ 900s] Executed Test_terminal_qall_exit() in 0.118649 seconds -[ 900s] Executed Test_terminal_qall_kill_arg() in 0.048213 seconds -[ 900s] Executed Test_terminal_qall_kill_func() in 0.144307 seconds -[ 900s] Executed Test_terminal_qall_prompt() in 0.063611 seconds -[ 900s] Executed Test_terminal_redir_file() in 0.092137 seconds -[ 900s] Executed Test_terminal_rename_buffer() in 0.023323 seconds -[ 900s] Executed Test_terminal_response_to_control_sequence() in 0.052416 seconds -[ 900s] Executed Test_terminal_scrape_123() in 0.077721 seconds -[ 900s] Executed Test_terminal_scrape_multibyte() in 0.030455 seconds -[ 900s] Executed Test_terminal_scroll() in 0.042525 seconds -[ 900s] Executed Test_terminal_scrollback() in 0.086927 seconds -[ 900s] Skipped -[ 900s] Executed Test_terminal_servername() in 0.000297 seconds -[ 900s] Executed Test_terminal_setapi_and_call() in 0.055708 seconds -[ 900s] Executed Test_terminal_size() in 0.081272 seconds -[ 900s] Executed Test_terminal_special_chars() in 0.023842 seconds -[ 900s] Executed Test_terminal_split_quit() in 0.071615 seconds -[ 900s] Executed Test_terminal_statusline() in 2.000253 seconds -[ 900s] Executed Test_terminal_term_start_empty_command() in 0.001324 seconds -[ 900s] Executed Test_terminal_tmap() in 0.064010 seconds -[ 900s] Executed Test_terminal_version() in 0.031674 seconds -[ 900s] Executed Test_terminal_wall() in 0.021366 seconds -[ 900s] Executed Test_terminal_window_focus() in 0.000921 seconds -[ 900s] Executed Test_terminal_wipe_buffer() in 0.021439 seconds -[ 900s] Executed Test_terminal_wqall() in 0.021480 seconds -[ 900s] Executed Test_terminal_write_stdin() in 0.043203 seconds -[ 900s] Executed Test_terminal_wrong_options() in 0.000348 seconds -[ 900s] Executed Test_terminal_zero_height() in 0.000958 seconds -[ 900s] Executed 89 tests in 11.099996 seconds -[ 900s] SKIPPED Test_terminal_eof_arg_win32_ctrl_z(): only works on MS-Windows -[ 900s] SKIPPED Test_terminal_servername(): clientserver feature missing -[ 900s] -[ 900s] From test_terminal2.vim: -[ 900s] Executed Test_term_getcursor() in 0.124828 seconds -[ 900s] Executed Test_term_gettitle() in 0.042034 seconds -[ 900s] Executed Test_term_gettty() in 0.031765 seconds -[ 900s] Executed Test_terminal_does_not_truncate_last_newlines() in 0.566385 seconds -[ 900s] Executed Test_terminal_hidden() in 0.021410 seconds -[ 900s] Executed Test_terminal_hidden_and_close() in 0.044133 seconds -[ 900s] Executed Test_terminal_hidden_winsize() in 0.000849 seconds -[ 900s] Executed Test_terminal_no_job() in 0.011019 seconds -[ 900s] Executed Test_terminal_normal_mode() in 0.218742 seconds -[ 900s] Executed Test_terminal_out_err() in 0.066175 seconds -[ 900s] Executed Test_terminal_resize() in 0.035088 seconds -[ 900s] Executed Test_terminal_switch_mode() in 0.001736 seconds -[ 900s] Executed Test_terminal_termwinkey() in 0.011500 seconds -[ 900s] Executed Test_terminal_termwinsize_minimum() in 0.043182 seconds -[ 900s] Executed Test_terminal_termwinsize_option_fixed() in 0.096379 seconds -[ 900s] Executed Test_terminal_termwinsize_option_zero() in 0.063640 seconds -[ 900s] Executed Test_terminal_termwinsize_overruled() in 0.032374 seconds -[ 900s] Executed Test_termwinscroll() in 0.253250 seconds -[ 900s] Skipped -[ 900s] Executed Test_zz1_terminal_in_gui() in 0.000317 seconds -[ 900s] Executed 19 tests in 1.749101 seconds -[ 900s] SKIPPED Test_zz1_terminal_in_gui(): cannot start the GUI -[ 900s] -[ 900s] From test_terminal3.vim: -[ 900s] Executed Test_double_popup_terminal() in 0.001683 seconds -[ 900s] Executed Test_escape_popup_terminal() in 0.000870 seconds -[ 900s] Executed Test_hidden_terminal() in 0.011410 seconds -[ 900s] Executed Test_issue_5607() in 0.011149 seconds -[ 900s] Executed Test_term_and_startinsert() in 0.176489 seconds -[ 900s] Executed Test_term_func_invalid_arg() in 0.001222 seconds -[ 900s] Executed Test_term_keycode_translation() in 0.575662 seconds -[ 900s] Found errors in Test_term_keycode_translation(): -[ 900s] command line..script /home/abuild/rpmbuild/BUILD/vim90/src/testdir/runtest.vim[464]..function RunTheTest[44]..Test_term_keycode_translation[37]..WaitForAssert[2]..6_WaitForCommon[11]..40 line 1: Expected '2' but got '1' -[ 900s] Flaky test failed, running it again -[ 900s] Executed Test_term_keycode_translation() in 0.595116 seconds -[ 900s] Skipped -[ 900s] Executed Test_term_modeless_selection() in 0.000384 seconds -[ 900s] Executed Test_term_mouse() in 0.224812 seconds -[ 900s] Found errors in Test_term_mouse(): -[ 900s] Caught exception in Test_term_mouse(): Vim(let):E684: List index out of range: 0 @ command line..script /home/abuild/rpmbuild/BUILD/vim90/src/testdir/runtest.vim[464]..function RunTheTest[44]..Test_term_mouse, line 41 -[ 900s] Flaky test failed, running it again -[ 900s] Executed Test_term_mouse() in 3.063601 seconds -[ 900s] Executed Test_term_nasty_callback() in 0.001091 seconds -[ 900s] Executed Test_terminal_altscreen() in 0.081407 seconds -[ 900s] Executed Test_terminal_color_Terminal() in 0.266475 seconds -[ 900s] Executed Test_terminal_color_group() in 0.314271 seconds -[ 900s] Executed Test_terminal_color_group_over_Terminal() in 0.337751 seconds -[ 900s] Executed Test_terminal_color_gui_Terminal() in 0.356607 seconds -[ 900s] Executed Test_terminal_color_gui_group() in 0.329330 seconds -[ 900s] Executed Test_terminal_color_gui_transp_Terminal() in 0.314101 seconds -[ 900s] Executed Test_terminal_color_gui_transp_group() in 0.319975 seconds -[ 900s] Executed Test_terminal_color_gui_transp_wincolor() in 0.303092 seconds -[ 900s] Executed Test_terminal_color_gui_wincolor() in 0.372495 seconds -[ 900s] Executed Test_terminal_color_transp_Terminal() in 0.334610 seconds -[ 900s] Executed Test_terminal_color_transp_group() in 0.321556 seconds -[ 900s] Executed Test_terminal_color_transp_wincolor() in 0.331684 seconds -[ 900s] Executed Test_terminal_color_wincolor() in 0.337340 seconds -[ 900s] Executed Test_terminal_color_wincolor_over_group() in 0.308322 seconds -[ 900s] Executed Test_terminal_color_wincolor_split() in 0.374210 seconds -[ 900s] Executed Test_terminal_getwinpos() in 0.445794 seconds -[ 900s] Executed Test_terminal_in_popup() in 2.084280 seconds -[ 900s] Executed Test_terminal_in_popup_color_Terminal() in 0.380975 seconds -[ 900s] Executed Test_terminal_in_popup_color_group() in 0.382846 seconds -[ 900s] Executed Test_terminal_in_popup_color_group_over_Terminal() in 0.377577 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_Terminal() in 0.389452 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_group() in 0.370392 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_popup_highlight() in 0.371587 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_transp_Terminal() in 0.426466 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_transp_group() in 0.316502 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_transp_popup_highlight() in 0.408119 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_transp_wincolor() in 0.351885 seconds -[ 900s] Executed Test_terminal_in_popup_color_gui_wincolor() in 0.382823 seconds -[ 900s] Executed Test_terminal_in_popup_color_popup_highlight() in 0.360863 seconds -[ 900s] Executed Test_terminal_in_popup_color_transp_Terminal() in 0.377102 seconds -[ 900s] Executed Test_terminal_in_popup_color_transp_group() in 0.371906 seconds -[ 900s] Executed Test_terminal_in_popup_color_transp_popup_highlight() in 0.371520 seconds -[ 900s] Executed Test_terminal_in_popup_color_transp_wincolor() in 0.365636 seconds -[ 900s] Executed Test_terminal_in_popup_color_wincolor() in 0.371021 seconds -[ 900s] Executed Test_terminal_in_popup_color_wincolor_over_group() in 0.360014 seconds -[ 900s] Executed Test_terminal_in_popup_min_size() in 0.371564 seconds -[ 900s] Executed Test_terminal_invalid_arg() in 0.000295 seconds -[ 900s] Executed Test_terminal_shell_option() in 0.021987 seconds -[ 900s] Executed Test_terminal_sync_shell_dir() in 0.021655 seconds -[ 900s] Executed Test_terminal_term_start_error() in 0.000471 seconds -[ 900s] Executed 53 tests in 23.476996 seconds -[ 900s] SKIPPED Test_term_modeless_selection(): clipboard_working feature missing -[ 900s] -[ 900s] From test_terminal_fail.vim: -[ 900s] Executed Test_terminal_redir_fails() in 0.011406 seconds -[ 900s] Executed 1 test in 0.102181 seconds -[ 900s] -[ 900s] From test_textformat.vim: -[ 900s] Executed Test_correct_cursor_position() in 0.000905 seconds -[ 900s] Executed Test_crash_github_issue_5095() in 0.000703 seconds -[ 900s] Executed Test_empty_matchpairs() in 0.000625 seconds -[ 900s] Executed Test_fo_1() in 0.000653 seconds -[ 900s] Executed Test_fo_2() in 0.000692 seconds -[ 900s] Executed Test_fo_a_w() in 0.001464 seconds -[ 900s] Executed Test_fo_b() in 0.000761 seconds -[ 900s] Executed Test_fo_l() in 0.000706 seconds -[ 900s] Executed Test_fo_n() in 0.000650 seconds -[ 900s] Executed Test_format_align() in 0.002254 seconds -[ 900s] Executed Test_format_c_comment() in 0.001454 seconds -[ 900s] Executed Test_format_list_auto() in 0.000740 seconds -[ 900s] Executed Test_format_para() in 0.000853 seconds -[ 900s] Executed Test_format_undo() in 0.000835 seconds -[ 900s] Executed Test_formatlistpat() in 0.000603 seconds -[ 900s] Executed Test_mps_error() in 0.000654 seconds -[ 900s] Executed Test_mps_latin1() in 0.000677 seconds -[ 900s] Executed Test_mps_multibyte() in 0.000709 seconds -[ 900s] Executed Test_ra_multibyte() in 0.000608 seconds -[ 900s] Executed Test_text_format() in 0.002127 seconds -[ 900s] Executed Test_tw_1_fo_tm() in 0.000883 seconds -[ 900s] Executed Test_tw_2_fo_t() in 0.000730 seconds -[ 900s] Executed Test_tw_2_fo_tm() in 0.001033 seconds -[ 900s] Executed Test_tw_2_fo_tm_ai() in 0.000746 seconds -[ 900s] Executed Test_tw_2_fo_tm_noai() in 0.000698 seconds -[ 900s] Executed Test_tw_2_fo_tm_replace() in 0.000645 seconds -[ 900s] Executed Test_visual_gq_format() in 0.000955 seconds -[ 900s] Executed Test_whichwrap_multi_byte() in 0.000719 seconds -[ 900s] Executed 28 tests in 0.131420 seconds -[ 900s] -[ 900s] From test_textobjects.vim: -[ 900s] Executed Test_empty_html_tag() in 0.000950 seconds -[ 900s] Executed Test_inner_block_single_char() in 0.000609 seconds -[ 900s] Executed Test_inner_block_with_cpo_M_left_backslash() in 0.000635 seconds -[ 900s] Executed Test_inner_block_with_cpo_M_right_backslash() in 0.000649 seconds -[ 900s] Executed Test_inner_block_without_cpo_M() in 0.000643 seconds -[ 900s] Executed Test_inner_tag() in 0.000642 seconds -[ 900s] Executed Test_match() in 0.000389 seconds -[ 900s] Executed Test_paragraph() in 0.000695 seconds -[ 900s] Executed Test_quote_selection_selection_exclusive() in 0.000679 seconds -[ 900s] Executed Test_quote_selection_selection_exclusive_abort() in 0.000622 seconds -[ 900s] Executed Test_sentence() in 0.000581 seconds -[ 900s] Executed Test_sentence_with_cursor_on_delimiter() in 0.000681 seconds -[ 900s] Executed Test_sentence_with_quotes() in 0.000577 seconds -[ 900s] Executed Test_string_html_objects() in 0.004031 seconds -[ 900s] Executed Test_textobj_a_word() in 0.000905 seconds -[ 900s] Executed Test_textobj_find_paren_forward() in 0.000597 seconds -[ 900s] Executed Test_textobj_quote() in 0.000846 seconds -[ 900s] Executed Test_textobj_sentence() in 0.001001 seconds -[ 900s] Executed 18 tests in 0.124881 seconds -[ 900s] -[ 900s] From test_textprop.vim: -[ 900s] Executed Test_delete_line_within_multiline_prop() in 0.000873 seconds -[ 900s] Executed Test_find_prop_later_in_line() in 0.000626 seconds -[ 900s] Executed Test_find_zerowidth_prop_sol() in 0.000588 seconds -[ 900s] Executed Test_prop_add() in 0.000930 seconds -[ 900s] Executed Test_prop_add_delete_line() in 0.001296 seconds -[ 900s] Executed Test_prop_add_list() in 0.001035 seconds -[ 900s] Executed Test_prop_add_remove_buf() in 0.001072 seconds -[ 900s] Executed Test_prop_add_vim9() in 0.000266 seconds -[ 900s] Executed Test_prop_after_linebreak() in 0.140197 seconds -[ 900s] Executed Test_prop_after_tab() in 0.158120 seconds -[ 900s] Executed Test_prop_backspace() in 0.000868 seconds -[ 900s] Executed Test_prop_block_insert() in 0.000797 seconds -[ 900s] Executed Test_prop_blockwise_change() in 0.000800 seconds -[ 900s] Executed Test_prop_bufnr_zero() in 0.000730 seconds -[ 900s] Executed Test_prop_byte2line() in 0.000650 seconds -[ 900s] Executed Test_prop_change() in 0.000756 seconds -[ 900s] Executed Test_prop_change_indent() in 0.000755 seconds -[ 900s] Executed Test_prop_clear() in 0.000749 seconds -[ 900s] Executed Test_prop_clear_buf() in 0.000711 seconds -[ 900s] Executed Test_prop_delete_text() in 0.000709 seconds -[ 900s] Executed Test_prop_find() in 0.001085 seconds -[ 900s] Executed Test_prop_find2() in 0.000706 seconds -[ 900s] Executed Test_prop_find_prev_on_same_line() in 0.000684 seconds -[ 900s] Executed Test_prop_find_smaller_len_than_match_col() in 0.000626 seconds -[ 900s] Executed Test_prop_find_with_both_option_enabled() in 0.000859 seconds -[ 900s] Executed Test_prop_func_invalid_args() in 0.001276 seconds -[ 900s] Executed Test_prop_goto_byte() in 0.000697 seconds -[ 900s] Executed Test_prop_in_linebreak() in 0.171643 seconds -[ 900s] Executed Test_prop_increment_decrement() in 0.000753 seconds -[ 900s] Executed Test_prop_insert_multiline() in 0.000816 seconds -[ 900s] Executed Test_prop_line2byte() in 0.001824 seconds -[ 900s] Executed Test_prop_list() in 0.148910 seconds -[ 900s] Executed Test_prop_multiline() in 0.001794 seconds -[ 900s] Executed Test_prop_one_line_window() in 0.000911 seconds -[ 900s] Executed Test_prop_open_line() in 0.001331 seconds -[ 900s] Executed Test_prop_remove() in 0.001266 seconds -[ 900s] Executed Test_prop_remove_vim9() in 0.000668 seconds -[ 900s] Executed Test_prop_replace() in 0.000843 seconds -[ 900s] Executed Test_prop_setbufline() in 0.000687 seconds -[ 900s] Executed Test_prop_setline() in 0.000675 seconds -[ 900s] Executed Test_prop_shift_block() in 0.000718 seconds -[ 900s] Executed Test_prop_spell() in 0.058967 seconds -[ 900s] Executed Test_prop_split_join() in 0.000759 seconds -[ 900s] Executed Test_prop_splits_data_block() in 0.000718 seconds -[ 900s] Executed Test_prop_substitute() in 0.000806 seconds -[ 900s] Executed Test_prop_undo() in 0.001021 seconds -[ 900s] Executed Test_props_do_not_affect_byte_offsets() in 0.011522 seconds -[ 900s] Executed Test_props_do_not_affect_byte_offsets_dos() in 0.011565 seconds -[ 900s] Executed Test_props_do_not_affect_byte_offsets_editline() in 0.018173 seconds -[ 900s] Executed Test_proptype_buf() in 0.000444 seconds -[ 900s] Executed Test_proptype_buf_list() in 0.000456 seconds -[ 900s] Executed Test_proptype_global() in 0.000329 seconds -[ 900s] Executed Test_proptype_substitute2() in 0.000629 seconds -[ 900s] Executed Test_proptype_substitute3() in 0.000776 seconds -[ 900s] Executed Test_textprop_after_tab() in 0.138282 seconds -[ 900s] Executed Test_textprop_empty_buffer() in 0.000331 seconds -[ 900s] Executed Test_textprop_empty_buffer_next() in 0.000678 seconds -[ 900s] Executed Test_textprop_in_unloaded_buf() in 0.120524 seconds -[ 900s] Executed Test_textprop_ins_str() in 0.000713 seconds -[ 900s] Executed Test_textprop_invalid_highlight() in 0.000751 seconds -[ 900s] Executed Test_textprop_noexpandtab() in 0.000862 seconds -[ 900s] Executed Test_textprop_noexpandtab_redraw() in 0.000887 seconds -[ 900s] Executed Test_textprop_nowrap_scrolled() in 0.090922 seconds -[ 900s] Executed Test_textprop_remove_from_buf() in 0.001009 seconds -[ 900s] Executed Test_textprop_screenshot_various() in 0.145302 seconds -[ 900s] Executed Test_textprop_screenshot_visual() in 0.295864 seconds -[ 900s] Executed Test_textprop_with_syntax() in 0.158362 seconds -[ 900s] Executed 67 tests in 1.861159 seconds -[ 900s] -[ 900s] From test_timers.vim: -[ 900s] Executed Test_timer_catch_error() in 0.091587 seconds -[ 900s] Executed Test_timer_changing_function_list() in 0.135808 seconds -[ 900s] Executed Test_timer_delete_myself() in 0.020784 seconds -[ 900s] Executed Test_timer_error_in_timer_callback() in 0.216810 seconds -[ 900s] Executed Test_timer_errors() in 0.081590 seconds -[ 900s] Executed Test_timer_ex_mode() in 0.100826 seconds -[ 900s] Executed Test_timer_garbage_collect() in 0.000334 seconds -[ 900s] Executed Test_timer_getchar_zero() in 0.030679 seconds -[ 900s] Executed Test_timer_info() in 0.031174 seconds -[ 900s] Executed Test_timer_input_in_timer() in 0.018571 seconds -[ 900s] Executed Test_timer_invalid_callback() in 0.000288 seconds -[ 900s] Executed Test_timer_nocatch_garbage_collect() in 0.299827 seconds -[ 900s] Executed Test_timer_oneshot() in 0.051042 seconds -[ 900s] Executed Test_timer_outputting_message() in 0.099816 seconds -[ 900s] Executed Test_timer_paused() in 0.110994 seconds -[ 900s] Skipped -[ 900s] Executed Test_timer_peek_and_get_char() in 0.000321 seconds -[ 900s] Executed Test_timer_repeat_many() in 0.201419 seconds -[ 900s] Executed Test_timer_repeat_three() in 0.152555 seconds -[ 900s] Executed Test_timer_restore_count() in 0.224976 seconds -[ 900s] Executed Test_timer_retain_partial() in 0.100553 seconds -[ 900s] Executed Test_timer_stop_all_in_callback() in 0.010494 seconds -[ 900s] Executed Test_timer_stop_in_callback() in 0.030774 seconds -[ 900s] Executed Test_timer_stopall() in 0.000300 seconds -[ 900s] Executed Test_timer_using_win_execute_undo_sync() in 0.200558 seconds -[ 900s] Executed Test_timer_with_partial_callback() in 0.051096 seconds -[ 900s] Executed 25 tests in 2.341889 seconds -[ 900s] SKIPPED Test_timer_peek_and_get_char(): only works in the GUI -[ 900s] -[ 900s] From test_true_false.vim: -[ 900s] Executed Test_if() in 0.000509 seconds -[ 900s] Executed Test_non_zero_arg() in 0.000845 seconds -[ 900s] Executed Test_true_false_arg() in 0.016054 seconds -[ 900s] Executed 3 tests in 0.181201 seconds -[ 900s] -[ 900s] From test_trycatch.vim: -[ 900s] Executed Test_BufEnter_exception() in 0.001455 seconds -[ 900s] Executed Test_after_exception_no_endif_error() in 0.000409 seconds -[ 900s] Executed Test_builtin_func_error() in 0.000617 seconds -[ 900s] Executed Test_catch_from_nested_try() in 0.000473 seconds -[ 900s] Executed Test_catch_number_string() in 0.000462 seconds -[ 900s] Executed Test_empty_catch() in 0.000557 seconds -[ 900s] Executed Test_error_in_catch_and_finally() in 0.109426 seconds -[ 900s] Executed Test_finally() in 0.000451 seconds -[ 900s] Executed Test_finally_after_continue() in 0.000420 seconds -[ 900s] Executed Test_finally_after_throw() in 0.000344 seconds -[ 900s] Executed Test_finally_cmd_return() in 0.000434 seconds -[ 900s] Executed Test_finally_return() in 0.000309 seconds -[ 900s] Executed Test_leave_block_in_endtry_not_called() in 0.009593 seconds -[ 900s] Executed Test_multi_catch() in 0.000425 seconds -[ 900s] Executed Test_reload_in_try_catch() in 0.091302 seconds -[ 900s] Executed Test_throw_across_commands() in 0.000558 seconds -[ 900s] Executed Test_throw_builtin_func() in 0.001832 seconds -[ 900s] Executed Test_throw_echo() in 0.000461 seconds -[ 900s] Executed Test_throw_from_catch() in 0.000379 seconds -[ 900s] Executed Test_throw_from_finally() in 0.000380 seconds -[ 900s] Executed Test_throw_func() in 0.000506 seconds -[ 900s] Executed Test_throw_ifelsewhile() in 0.000369 seconds -[ 900s] Executed Test_throw_inactive_cond() in 0.000331 seconds -[ 900s] Executed Test_throw_let() in 0.000623 seconds -[ 900s] Executed Test_throwreturn() in 0.000476 seconds -[ 900s] Executed Test_try_catch_errors() in 0.202476 seconds -[ 900s] Executed Test_try_catch_verbose() in 0.106867 seconds -[ 900s] Executed Test_user_command_function_call_with_endtry() in 0.104442 seconds -[ 900s] Executed Test_user_command_throw_in_function_call() in 0.105645 seconds -[ 900s] Executed Test_user_command_try_catch() in 0.106866 seconds -[ 900s] Executed 30 tests in 0.961358 seconds -[ 900s] -[ 900s] From test_undo.vim: -[ 900s] Executed Test_U_command() in 0.000759 seconds -[ 900s] Executed Test_cmd_in_reg_undo() in 0.000998 seconds -[ 900s] Executed Test_global_local_undolevels() in 0.001887 seconds -[ 900s] Executed Test_insert_expr() in 0.001137 seconds -[ 900s] Executed Test_redo_empty_line() in 0.000426 seconds -[ 900s] Executed Test_redo_multibyte_in_insert_mode() in 0.000648 seconds -[ 900s] Executed Test_redo_repeat_numbered_register() in 0.000700 seconds -[ 900s] Executed Test_rundo_errors() in 0.089724 seconds -[ 900s] Executed Test_undo_0() in 0.000959 seconds -[ 900s] Executed Test_undo_append() in 0.000594 seconds -[ 900s] Executed Test_undo_del_chars() in 0.001150 seconds -[ 900s] Executed Test_undo_mark() in 0.103555 seconds -[ 900s] Executed Test_undo_redo_noop() in 0.000472 seconds -[ 900s] Executed Test_undo_write() in 0.242336 seconds -[ 900s] Executed Test_undofile() in 0.000509 seconds -[ 900s] Executed Test_undofile_2() in 0.682401 seconds -[ 900s] Executed Test_undofile_cryptmethod_blowfish() in 0.761955 seconds -[ 900s] Executed Test_undofile_cryptmethod_blowfish2() in 0.490255 seconds -[ 900s] Executed Test_undofile_cryptmethod_zip() in 0.323683 seconds -[ 900s] Executed Test_undofile_earlier() in 0.148754 seconds -[ 900s] Executed Test_undofile_next() in 0.158540 seconds -[ 900s] Executed Test_undofile_truncated() in 0.878498 seconds -[ 900s] Executed Test_undojoin() in 0.000861 seconds -[ 900s] Executed Test_undojoin_after_undo() in 0.000674 seconds -[ 900s] Executed Test_undojoin_noop() in 0.000673 seconds -[ 900s] Executed Test_undojoin_redo() in 0.000650 seconds -[ 900s] Executed Test_undolist() in 0.014483 seconds -[ 900s] Executed Test_undotree() in 0.017244 seconds -[ 900s] Executed Test_wundo_errors() in 0.000603 seconds -[ 900s] Executed 29 tests in 3.941774 seconds -[ 900s] -[ 900s] From test_user_func.vim: -[ 900s] Executed Test_add_funcref_to_global_scope() in 0.000417 seconds -[ 900s] Executed Test_default_arg() in 0.000646 seconds -[ 900s] Executed Test_del_func() in 0.000395 seconds -[ 900s] Executed Test_delfunction_force() in 0.000319 seconds -[ 900s] Executed Test_endfunction_trailing() in 0.000620 seconds -[ 900s] Executed Test_failed_call_in_try() in 0.000261 seconds -[ 900s] Executed Test_func_arg_error() in 0.000369 seconds -[ 900s] Executed Test_func_def_error() in 0.075901 seconds -[ 900s] Executed Test_func_dict() in 0.000374 seconds -[ 900s] Executed Test_func_range() in 0.000658 seconds -[ 900s] Executed Test_funccall_garbage_collect() in 0.000289 seconds -[ 900s] Executed Test_funcdef_alloc_failure() in 0.001834 seconds -[ 900s] Executed Test_function_defined_line() in 0.055263 seconds -[ 900s] Executed Test_function_list() in 0.000323 seconds -[ 900s] Executed Test_return_outside_func() in 0.012270 seconds -[ 900s] Executed Test_script_local_func() in 0.072851 seconds -[ 900s] Executed Test_sfile_in_function() in 0.000401 seconds -[ 900s] Executed Test_user_func() in 0.001118 seconds -[ 900s] Executed Test_user_method() in 0.000271 seconds -[ 900s] Executed 19 tests in 0.280237 seconds -[ 900s] -[ 900s] From test_usercommands.vim: -[ 900s] Executed Test_Ambiguous() in 0.000512 seconds -[ 900s] Executed Test_CmdCompletion() in 0.002678 seconds -[ 900s] Executed Test_CmdErrors() in 0.120037 seconds -[ 900s] Executed Test_CmdUndefined() in 0.000463 seconds -[ 900s] Executed Test_addr_all() in 0.001192 seconds -[ 900s] Executed Test_block_declaration_legacy_script() in 0.020780 seconds -[ 900s] Executed Test_buflocal_ambiguous_usercmd() in 0.000612 seconds -[ 900s] Executed Test_cmdmods() in 0.000634 seconds -[ 900s] Executed Test_command_list() in 0.000881 seconds -[ 900s] Executed Test_count_with_quotes() in 0.000846 seconds -[ 900s] Executed Test_delcommand_buffer() in 0.000553 seconds -[ 900s] Executed Test_f_args() in 0.000384 seconds -[ 900s] Executed Test_multibyte_in_usercmd() in 0.000655 seconds -[ 900s] Executed Test_no_arg() in 0.000351 seconds -[ 900s] Executed Test_q_args() in 0.000363 seconds -[ 900s] Executed Test_range_arg() in 0.000822 seconds -[ 900s] Executed Test_recursive_define() in 0.001396 seconds -[ 900s] Executed Test_redefine_on_reload() in 0.093604 seconds -[ 900s] Executed Test_reg_arg() in 0.000348 seconds -[ 900s] Executed Test_use_execute_in_completion() in 0.000429 seconds -[ 900s] Executed Test_usercmd_custom() in 0.000492 seconds -[ 900s] Executed Test_usercmd_with_block() in 0.097088 seconds -[ 900s] Executed 22 tests in 0.383971 seconds -[ 900s] -[ 900s] From test_vartabs.vim: -[ 900s] Executed Test_retab_invalid_arg() in 0.000778 seconds -[ 900s] Executed Test_shiftwidth_vartabstop() in 0.000322 seconds -[ 900s] Executed Test_varsofttabstop() in 0.000829 seconds -[ 900s] Executed Test_vartabs() in 0.001628 seconds -[ 900s] Executed Test_vartabs_breakindent() in 0.001475 seconds -[ 900s] Executed Test_vartabs_failures() in 0.000445 seconds -[ 900s] Executed Test_vartabs_linebreak() in 0.002187 seconds -[ 900s] Executed Test_vartabs_reset() in 0.000353 seconds -[ 900s] Executed Test_vartabs_shiftwidth() in 0.003834 seconds -[ 900s] Executed Test_vartabstop_latin1() in 0.000931 seconds -[ 900s] Executed 10 tests in 0.029524 seconds -[ 900s] -[ 900s] From test_vim9_assign.vim: -[ 900s] Executed Test_abort_after_error() in 0.075147 seconds -[ 900s] Executed Test_assign_alt_buf_register() in 0.072331 seconds -[ 900s] Executed Test_assign_command_modifier() in 0.065702 seconds -[ 900s] Executed Test_assign_concat() in 0.310381 seconds -[ 900s] Executed Test_assign_dict() in 0.128993 seconds -[ 900s] Executed Test_assign_dict_unknown_type() in 0.020157 seconds -[ 900s] Executed Test_assign_dict_with_op() in 0.148877 seconds -[ 900s] Executed Test_assign_index() in 0.350868 seconds -[ 900s] Executed Test_assign_keep_type() in 0.053852 seconds -[ 900s] Executed Test_assign_lambda() in 0.317311 seconds -[ 900s] Executed Test_assign_linebreak() in 0.133299 seconds -[ 900s] Executed Test_assign_list() in 0.356498 seconds -[ 900s] Executed Test_assign_list_with_op() in 0.068226 seconds -[ 900s] Executed Test_assign_register() in 0.126232 seconds -[ 900s] Executed Test_assign_unpack() in 0.608764 seconds -[ 900s] Executed Test_assign_with_op_fails() in 0.285348 seconds -[ 900s] Executed Test_assignment() in 1.173058 seconds -[ 900s] Executed Test_assignment_bool() in 0.399111 seconds -[ 900s] Executed Test_assignment_default() in 0.000723 seconds -[ 900s] Executed Test_assignment_dict() in 0.763319 seconds -[ 900s] Executed Test_assignment_empty_list() in 0.042282 seconds -[ 900s] Executed Test_assignment_failure() in 2.913068 seconds -[ 900s] Executed Test_assignment_list() in 0.218276 seconds -[ 900s] Executed Test_assignment_list_any_index() in 0.000314 seconds -[ 900s] Executed Test_assignment_list_vim9script() in 0.033657 seconds -[ 900s] Executed Test_assignment_local() in 0.034506 seconds -[ 900s] Executed Test_assignment_partial() in 0.097754 seconds -[ 900s] Executed Test_assignment_var_list() in 0.079962 seconds -[ 900s] Executed Test_assignment_vim9script() in 0.172033 seconds -[ 900s] Executed Test_cannot_use_let() in 0.023058 seconds -[ 900s] Executed Test_expr_error_no_assign() in 0.228459 seconds -[ 900s] Executed Test_extend_dict() in 0.053911 seconds -[ 900s] Executed Test_extend_list() in 0.270570 seconds -[ 900s] Executed Test_float_and_number() in 0.148727 seconds -[ 900s] Executed Test_heredoc() in 0.373712 seconds -[ 900s] Executed Test_heredoc_expr() in 0.419338 seconds -[ 900s] Executed Test_inc_dec() in 0.080577 seconds -[ 900s] Executed Test_init_in_for_loop() in 0.137951 seconds -[ 900s] Executed Test_keep_type_after_assigning_null() in 0.184383 seconds -[ 900s] Executed Test_list_declaration() in 0.612948 seconds -[ 900s] Executed Test_null_values() in 0.080158 seconds -[ 900s] Executed Test_redir_is_not_assign() in 0.000283 seconds -[ 900s] Executed Test_reserved_name() in 1.673250 seconds -[ 900s] Executed Test_script_funcref_case() in 0.346296 seconds -[ 900s] Executed Test_script_funcref_runtime_type_check() in 0.063317 seconds -[ 900s] Executed Test_script_local_in_legacy() in 0.166280 seconds -[ 900s] Executed Test_script_var_default() in 0.090094 seconds -[ 900s] Executed Test_single_letter_vars() in 0.000320 seconds -[ 900s] Executed Test_skipped_assignment() in 0.098435 seconds -[ 900s] Executed Test_syntax() in 0.000259 seconds -[ 900s] Executed Test_unlet() in 1.056470 seconds -[ 900s] Executed Test_using_s_var_in_function() in 0.320360 seconds -[ 900s] Executed Test_var_declaration() in 0.011511 seconds -[ 900s] Executed Test_var_declaration_fails() in 4.129520 seconds -[ 900s] Executed Test_var_declaration_inferred() in 0.158582 seconds -[ 900s] Executed Test_var_func_call() in 0.090159 seconds -[ 900s] Executed Test_var_list_dict_type() in 0.068278 seconds -[ 900s] Executed Test_var_missing_type() in 0.158460 seconds -[ 900s] Executed Test_var_type_check() in 0.431589 seconds -[ 900s] Executed Test_vim9_single_char_vars() in 0.011339 seconds -[ 900s] Executed 60 tests in 20.598280 seconds -[ 900s] -[ 900s] From test_vim9_builtin.vim: -[ 900s] Executed Test_InternalFuncRetType() in 0.011599 seconds -[ 900s] Executed Test_abs() in 0.096012 seconds -[ 900s] Executed Test_add() in 0.195025 seconds -[ 900s] Executed Test_add_blob() in 0.133542 seconds -[ 900s] Executed Test_add_list() in 0.218238 seconds -[ 900s] Executed Test_and() in 0.086447 seconds -[ 900s] Executed Test_append() in 0.241400 seconds -[ 900s] Executed Test_appendbufline() in 0.407288 seconds -[ 900s] Executed Test_argc() in 0.128636 seconds -[ 900s] Executed Test_arglistid() in 0.238160 seconds -[ 900s] Executed Test_argv() in 0.266487 seconds -[ 900s] Executed Test_assert_beeps() in 0.129611 seconds -[ 900s] Executed Test_assert_equalfile() in 0.346576 seconds -[ 900s] Executed Test_assert_exception() in 0.168106 seconds -[ 900s] Executed Test_assert_fails() in 0.258844 seconds -[ 900s] Executed Test_assert_inrange() in 0.258706 seconds -[ 900s] Executed Test_assert_match() in 0.288096 seconds -[ 900s] Executed Test_assert_nobeep() in 0.090012 seconds -[ 900s] Executed Test_assert_notmatch() in 0.195459 seconds -[ 900s] Executed Test_assert_report() in 0.068564 seconds -[ 900s] Executed Test_autocmd_add() in 0.063088 seconds -[ 900s] Executed Test_autocmd_delete() in 0.063060 seconds -[ 900s] Executed Test_autocmd_get() in 0.092777 seconds -[ 900s] Skipped -[ 900s] Executed Test_balloon_show() in 0.000329 seconds -[ 900s] Executed Test_balloon_split() in 0.000340 seconds -[ 900s] Executed Test_blob2list() in 0.072336 seconds -[ 900s] Skipped -[ 900s] Executed Test_browse() in 0.000335 seconds -[ 900s] Executed Test_browsedir() in 0.000251 seconds -[ 900s] Executed Test_bufadd() in 0.000315 seconds -[ 900s] Executed Test_bufexists() in 0.000302 seconds -[ 900s] Executed Test_buflisted() in 0.000343 seconds -[ 900s] Executed Test_bufload() in 0.000288 seconds -[ 900s] Executed Test_bufloaded() in 0.000309 seconds -[ 900s] Executed Test_bufname() in 0.001072 seconds -[ 900s] Executed Test_bufnr() in 0.210201 seconds -[ 900s] Executed Test_bufwinid() in 0.001169 seconds -[ 900s] Executed Test_bufwinnr() in 0.000315 seconds -[ 900s] Executed Test_byte2line() in 0.190966 seconds -[ 900s] Executed Test_byteidx() in 0.158533 seconds -[ 900s] Executed Test_byteidxcomp() in 0.099750 seconds -[ 900s] Executed Test_call_call() in 0.263584 seconds -[ 900s] Executed Test_ch_canread() in 0.023531 seconds -[ 900s] Executed Test_ch_close() in 0.069340 seconds -[ 900s] Executed Test_ch_close_in() in 0.039654 seconds -[ 900s] Executed Test_ch_evalexpr() in 0.063429 seconds -[ 900s] Executed Test_ch_evalraw() in 0.274869 seconds -[ 900s] Executed Test_ch_getbufnr() in 0.206887 seconds -[ 900s] Executed Test_ch_getjob() in 0.091785 seconds -[ 900s] Executed Test_ch_info() in 0.147745 seconds -[ 900s] Executed Test_ch_log() in 0.158538 seconds -[ 900s] Executed Test_ch_logfile() in 0.317331 seconds -[ 900s] Executed Test_ch_open() in 0.475923 seconds -[ 900s] Executed Test_ch_read() in 0.317344 seconds -[ 900s] Executed Test_ch_readblob() in 0.355907 seconds -[ 900s] Executed Test_ch_readraw() in 0.317226 seconds -[ 900s] Executed Test_ch_sendexpr() in 0.317292 seconds -[ 900s] Executed Test_ch_sendraw() in 0.475847 seconds -[ 900s] Executed Test_ch_setoptions() in 0.322772 seconds -[ 900s] Executed Test_ch_status() in 0.200459 seconds -[ 900s] Executed Test_char2nr() in 0.187740 seconds -[ 900s] Executed Test_charclass() in 0.000354 seconds -[ 900s] Executed Test_charcol() in 0.398927 seconds -[ 900s] Executed Test_charidx() in 0.475578 seconds -[ 900s] Executed Test_chdir() in 0.000321 seconds -[ 900s] Executed Test_cindent() in 0.475294 seconds -[ 900s] Executed Test_clearmatches() in 0.158478 seconds -[ 900s] Executed Test_col() in 0.645757 seconds -[ 900s] Executed Test_complete() in 0.312483 seconds -[ 900s] Executed Test_complete_add() in 0.158587 seconds -[ 900s] Executed Test_complete_info() in 0.348455 seconds -[ 900s] Executed Test_confirm() in 0.639489 seconds -[ 900s] Executed Test_copy_return_type() in 0.153786 seconds -[ 900s] Executed Test_count() in 0.475926 seconds -[ 900s] Executed Test_cscope_connection() in 0.475893 seconds -[ 900s] Executed Test_cursor() in 0.878540 seconds -[ 900s] Skipped -[ 900s] Executed Test_debugbreak() in 0.000325 seconds -[ 900s] Executed Test_deepcopy() in 0.072623 seconds -[ 900s] Executed Test_delete() in 0.456557 seconds -[ 900s] Executed Test_deletebufline() in 0.161153 seconds -[ 900s] Executed Test_diff_filler() in 0.348276 seconds -[ 900s] Executed Test_diff_hlID() in 0.475946 seconds -[ 900s] Executed Test_digraph_get() in 0.343133 seconds -[ 900s] Executed Test_digraph_getlist() in 0.205785 seconds -[ 900s] Executed Test_digraph_set() in 0.591052 seconds -[ 900s] Executed Test_digraph_setlist() in 0.158227 seconds -[ 900s] Executed Test_echoraw() in 0.234496 seconds -[ 900s] Executed Test_escape() in 0.471640 seconds -[ 900s] Executed Test_eval() in 0.549288 seconds -[ 900s] Executed Test_executable() in 0.023009 seconds -[ 900s] Executed Test_execute() in 0.138283 seconds -[ 900s] Executed Test_exepath() in 0.087429 seconds -[ 900s] Executed Test_exists() in 0.136345 seconds -[ 900s] Executed Test_exists_compiled() in 0.276247 seconds -[ 900s] Executed Test_expand() in 0.331038 seconds -[ 900s] Executed Test_expandcmd() in 0.189759 seconds -[ 900s] Executed Test_extend_arg_types() in 1.001007 seconds -[ 900s] Executed Test_extend_dict_item_type() in 0.435504 seconds -[ 900s] Executed Test_extend_list_item_type() in 0.634512 seconds -[ 900s] Executed Test_extend_return_type() in 0.000300 seconds -[ 900s] Executed Test_extend_with_error_function() in 0.075125 seconds -[ 900s] Executed Test_extendnew() in 0.634632 seconds -[ 900s] Executed Test_feedkeys() in 0.550242 seconds -[ 900s] Executed Test_filereadable() in 0.187593 seconds -[ 900s] Executed Test_filewritable() in 0.145090 seconds -[ 900s] Executed Test_filter() in 1.584211 seconds -[ 900s] Executed Test_filter_missing_argument() in 0.000380 seconds -[ 900s] Executed Test_filter_return_type() in 0.000288 seconds -[ 900s] Executed Test_filter_wrong_dict_key_type() in 0.000330 seconds -[ 900s] Executed Test_finddir() in 0.804386 seconds -[ 900s] Executed Test_findfile() in 0.511124 seconds -[ 900s] Executed Test_flatten() in 0.158404 seconds -[ 900s] Executed Test_flattennew() in 0.363325 seconds -[ 900s] Executed Test_float_funcs_args() in 3.562514 seconds -[ 900s] Executed Test_fnameescape() in 0.022891 seconds -[ 900s] Executed Test_fnamemodify() in 0.315766 seconds -[ 900s] Executed Test_foldclosed() in 0.091778 seconds -[ 900s] Executed Test_foldclosedend() in 0.086273 seconds -[ 900s] Executed Test_foldlevel() in 0.160482 seconds -[ 900s] Executed Test_foldtextresult() in 0.086249 seconds -[ 900s] Executed Test_fullcommand() in 0.000354 seconds -[ 900s] Executed Test_funcref() in 0.246146 seconds -[ 900s] Executed Test_function() in 0.292669 seconds -[ 900s] Executed Test_garbagecollect() in 0.086323 seconds -[ 900s] Executed Test_get() in 0.074724 seconds -[ 900s] Executed Test_getbufinfo() in 0.045981 seconds -[ 900s] Executed Test_getbufline() in 0.212316 seconds -[ 900s] Executed Test_getbufvar() in 0.086189 seconds -[ 900s] Executed Test_getchangelist() in 0.000618 seconds -[ 900s] Executed Test_getchar() in 0.183555 seconds -[ 900s] Executed Test_getcharpos() in 0.129316 seconds -[ 900s] Executed Test_getcharstr() in 0.202499 seconds -[ 900s] Executed Test_getcompletion() in 0.178706 seconds -[ 900s] Executed Test_getcurpos() in 0.023074 seconds -[ 900s] Executed Test_getcursorcharpos() in 0.023035 seconds -[ 900s] Executed Test_getcwd() in 0.195405 seconds -[ 900s] Executed Test_getenv() in 0.000303 seconds -[ 900s] Executed Test_getfontname() in 0.022485 seconds -[ 900s] Executed Test_getfperm() in 0.045915 seconds -[ 900s] Executed Test_getfsize() in 0.063120 seconds -[ 900s] Executed Test_getftime() in 0.023036 seconds -[ 900s] Executed Test_getftype() in 0.143049 seconds -[ 900s] Executed Test_getjumplist() in 0.189654 seconds -[ 900s] Executed Test_getline() in 0.276649 seconds -[ 900s] Executed Test_getloclist() in 0.068401 seconds -[ 900s] Executed Test_getloclist_return_type() in 0.000327 seconds -[ 900s] Executed Test_getmarklist() in 0.060047 seconds -[ 900s] Executed Test_getmatches() in 0.019844 seconds -[ 900s] Executed Test_getpos() in 0.120844 seconds -[ 900s] Executed Test_getqflist() in 0.045905 seconds -[ 900s] Executed Test_getqflist_return_type() in 0.000280 seconds -[ 900s] Executed Test_getreg() in 0.229936 seconds -[ 900s] Executed Test_getreg_return_type() in 0.000292 seconds -[ 900s] Executed Test_getreginfo() in 0.000327 seconds -[ 900s] Executed Test_getregtype() in 0.000316 seconds -[ 900s] Executed Test_gettabinfo() in 0.020818 seconds -[ 900s] Executed Test_gettabvar() in 0.074819 seconds -[ 900s] Executed Test_gettabwinvar() in 0.160909 seconds -[ 900s] Executed Test_gettagstack() in 0.045892 seconds -[ 900s] Executed Test_gettext() in 0.112947 seconds -[ 900s] Executed Test_getwininfo() in 0.024965 seconds -[ 900s] Executed Test_getwinpos() in 0.211629 seconds -[ 900s] Executed Test_getwinvar() in 0.046268 seconds -[ 900s] Executed Test_glob() in 0.430092 seconds -[ 900s] Executed Test_glob2regpat() in 0.119345 seconds -[ 900s] Executed Test_globpath() in 0.538012 seconds -[ 900s] Executed Test_has() in 0.191778 seconds -[ 900s] Executed Test_has_key() in 0.228001 seconds -[ 900s] Executed Test_haslocaldir() in 0.223733 seconds -[ 900s] Executed Test_hasmapto() in 0.201028 seconds -[ 900s] Executed Test_histadd() in 0.160506 seconds -[ 900s] Executed Test_histdel() in 0.149115 seconds -[ 900s] Executed Test_histget() in 0.310849 seconds -[ 900s] Executed Test_histnr() in 0.158515 seconds -[ 900s] Executed Test_hlID() in 0.195541 seconds -[ 900s] Executed Test_hlexists() in 0.044795 seconds -[ 900s] Executed Test_hlget() in 0.076638 seconds -[ 900s] Executed Test_hlset() in 0.158566 seconds -[ 900s] Executed Test_iconv() in 0.476016 seconds -[ 900s] Executed Test_indent() in 0.446156 seconds -[ 900s] Executed Test_index() in 0.385200 seconds -[ 900s] Executed Test_input() in 0.555315 seconds -[ 900s] Executed Test_inputdialog() in 0.634551 seconds -[ 900s] Executed Test_inputlist() in 0.390204 seconds -[ 900s] Executed Test_inputsecret() in 0.317247 seconds -[ 900s] Executed Test_insert() in 0.720194 seconds -[ 900s] Executed Test_internalfunc_arg_error() in 0.158504 seconds -[ 900s] Executed Test_invert() in 0.158531 seconds -[ 900s] Executed Test_isdirectory() in 0.199719 seconds -[ 900s] Executed Test_islocked() in 0.355599 seconds -[ 900s] Executed Test_items() in 0.078930 seconds -[ 900s] Executed Test_job_getchannel() in 0.158490 seconds -[ 900s] Executed Test_job_info() in 0.158554 seconds -[ 900s] Executed Test_job_setoptions() in 0.199932 seconds -[ 900s] Executed Test_job_status() in 0.052959 seconds -[ 900s] Executed Test_job_stop() in 0.114406 seconds -[ 900s] Executed Test_join() in 0.064077 seconds -[ 900s] Executed Test_js_decode() in 0.064686 seconds -[ 900s] Executed Test_json_decode() in 0.158607 seconds -[ 900s] Executed Test_keys() in 0.158497 seconds -[ 900s] Executed Test_keys_return_type() in 0.000275 seconds -[ 900s] Executed Test_len() in 0.158200 seconds -[ 900s] Executed Test_libcall() in 0.475766 seconds -[ 900s] Executed Test_libcallnr() in 0.476016 seconds -[ 900s] Executed Test_line() in 0.478398 seconds -[ 900s] Executed Test_line2byte() in 0.314009 seconds -[ 900s] Executed Test_lispindent() in 0.397415 seconds -[ 900s] Executed Test_list2blob() in 0.198258 seconds -[ 900s] Executed Test_list2str() in 0.303551 seconds -[ 900s] Executed Test_list2str_str2list_utf8() in 0.000291 seconds -[ 900s] Executed Test_listener_add() in 0.158089 seconds -[ 900s] Executed Test_listener_flush() in 0.158528 seconds -[ 900s] Executed Test_listener_remove() in 0.158540 seconds -[ 900s] Executed Test_luaeval() in 0.158914 seconds -[ 900s] Executed Test_map() in 0.678381 seconds -[ 900s] Executed Test_map_failure() in 0.044176 seconds -[ 900s] Executed Test_map_function_arg() in 0.332933 seconds -[ 900s] Executed Test_map_item_type() in 0.471856 seconds -[ 900s] Executed Test_maparg() in 0.814978 seconds -[ 900s] Executed Test_maparg_mapset() in 0.000344 seconds -[ 900s] Executed Test_mapcheck() in 0.475416 seconds -[ 900s] Executed Test_mapnew() in 0.317200 seconds -[ 900s] Executed Test_mapset() in 0.475998 seconds -[ 900s] Executed Test_match() in 0.634679 seconds -[ 900s] Executed Test_matchadd() in 0.634653 seconds -[ 900s] Executed Test_matchaddpos() in 0.634730 seconds -[ 900s] Executed Test_matcharg() in 0.158465 seconds -[ 900s] Executed Test_matchdelete() in 0.475958 seconds -[ 900s] Executed Test_matchend() in 0.634474 seconds -[ 900s] Executed Test_matchfuzzy() in 0.475837 seconds -[ 900s] Executed Test_matchfuzzypos() in 0.475844 seconds -[ 900s] Executed Test_matchlist() in 0.359968 seconds -[ 900s] Executed Test_matchstr() in 0.149694 seconds -[ 900s] Executed Test_matchstrpos() in 0.127392 seconds -[ 900s] Executed Test_max() in 0.045801 seconds -[ 900s] Executed Test_menu_info() in 0.163310 seconds -[ 900s] Executed Test_min() in 0.061052 seconds -[ 900s] Executed Test_mkdir() in 0.138517 seconds -[ 900s] Executed Test_mode() in 0.137786 seconds -[ 900s] Skipped -[ 900s] Executed Test_mzeval() in 0.000395 seconds -[ 900s] Executed Test_nextnonblank() in 0.068487 seconds -[ 900s] Executed Test_nr2char() in 0.069203 seconds -[ 900s] Executed Test_or() in 0.092033 seconds -[ 900s] Executed Test_pathshorten() in 0.120685 seconds -[ 900s] Executed Test_perleval() in 0.023074 seconds -[ 900s] Executed Test_popup_atcursor() in 0.069299 seconds -[ 900s] Executed Test_popup_beval() in 0.183369 seconds -[ 900s] Executed Test_popup_clear() in 0.046320 seconds -[ 900s] Executed Test_popup_close() in 0.091729 seconds -[ 900s] Executed Test_popup_create() in 0.000354 seconds -[ 900s] Executed Test_popup_dialog() in 0.065553 seconds -[ 900s] Executed Test_popup_filter_menu() in 0.066567 seconds -[ 900s] Executed Test_popup_filter_yesno() in 0.069406 seconds -[ 900s] Executed Test_popup_getoptions() in 0.143420 seconds -[ 900s] Executed Test_popup_getpos() in 0.068976 seconds -[ 900s] Executed Test_popup_hide() in 0.069332 seconds -[ 900s] Executed Test_popup_locate() in 0.063432 seconds -[ 900s] Executed Test_popup_menu() in 0.153754 seconds -[ 900s] Executed Test_popup_move() in 0.081704 seconds -[ 900s] Executed Test_popup_notification() in 0.046330 seconds -[ 900s] Executed Test_popup_setoptions() in 0.097835 seconds -[ 900s] Executed Test_popup_settext() in 0.069514 seconds -[ 900s] Executed Test_popup_show() in 0.191178 seconds -[ 900s] Executed Test_prevnonblank() in 0.044024 seconds -[ 900s] Executed Test_printf() in 0.046147 seconds -[ 900s] Executed Test_prompt_getprompt() in 0.045812 seconds -[ 900s] Executed Test_prompt_setcallback() in 0.022939 seconds -[ 900s] Executed Test_prompt_setinterrupt() in 0.023117 seconds -[ 900s] Executed Test_prompt_setprompt() in 0.126314 seconds -[ 900s] Executed Test_prop_add() in 0.109927 seconds -[ 900s] Executed Test_prop_add_list() in 0.046206 seconds -[ 900s] Executed Test_prop_clear() in 0.115184 seconds -[ 900s] Executed Test_prop_find() in 0.115334 seconds -[ 900s] Executed Test_prop_list() in 0.070324 seconds -[ 900s] Executed Test_prop_remove() in 0.142728 seconds -[ 900s] Executed Test_prop_type_add() in 0.080801 seconds -[ 900s] Executed Test_prop_type_change() in 0.267677 seconds -[ 900s] Executed Test_prop_type_delete() in 0.195615 seconds -[ 900s] Executed Test_prop_type_get() in 0.116307 seconds -[ 900s] Executed Test_prop_type_list() in 0.063461 seconds -[ 900s] Executed Test_py3eval() in 0.078556 seconds -[ 900s] Skipped -[ 900s] Executed Test_pyeval() in 0.000344 seconds -[ 900s] Executed Test_pyxeval() in 0.047127 seconds -[ 900s] Executed Test_rand() in 0.110947 seconds -[ 900s] Executed Test_range() in 0.193535 seconds -[ 900s] Executed Test_readblob() in 0.234949 seconds -[ 900s] Executed Test_readdir() in 0.160732 seconds -[ 900s] Executed Test_readdirex() in 0.192834 seconds -[ 900s] Executed Test_readfile() in 0.334770 seconds -[ 900s] Executed Test_reduce() in 0.045913 seconds -[ 900s] Executed Test_reltime() in 0.522014 seconds -[ 900s] Executed Test_reltimefloat() in 0.119836 seconds -[ 900s] Executed Test_reltimestr() in 0.098751 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_expr() in 0.000368 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_foreground() in 0.000296 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_peek() in 0.000294 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_read() in 0.000293 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_send() in 0.000294 seconds -[ 900s] Skipped -[ 900s] Executed Test_remote_startserver() in 0.000282 seconds -[ 900s] Executed Test_remove() in 0.291051 seconds -[ 900s] Executed Test_remove_const_list() in 0.000280 seconds -[ 900s] Executed Test_remove_return_type() in 0.000257 seconds -[ 900s] Executed Test_rename() in 0.091189 seconds -[ 900s] Executed Test_repeat() in 0.236113 seconds -[ 900s] Executed Test_resolve() in 0.039403 seconds -[ 900s] Executed Test_reverse() in 0.089781 seconds -[ 900s] Executed Test_reverse_return_type() in 0.000268 seconds -[ 900s] Executed Test_rubyeval() in 0.047852 seconds -[ 900s] Executed Test_screenattr() in 0.160615 seconds -[ 900s] Executed Test_screenchar() in 0.115229 seconds -[ 900s] Executed Test_screenchars() in 0.160734 seconds -[ 900s] Executed Test_screenpos() in 0.190259 seconds -[ 900s] Executed Test_screenstring() in 0.159499 seconds -[ 900s] Executed Test_search() in 0.213158 seconds -[ 900s] Executed Test_searchcount() in 0.023047 seconds -[ 900s] Executed Test_searchdecl() in 0.138283 seconds -[ 900s] Executed Test_searchpair() in 0.639707 seconds -[ 900s] Executed Test_searchpos() in 0.270716 seconds -[ 900s] Skipped -[ 900s] Executed Test_server2client() in 0.000352 seconds -[ 900s] Executed Test_set_get_bufline() in 0.046156 seconds -[ 900s] Executed Test_setbufline() in 0.154912 seconds -[ 900s] Executed Test_setbufvar() in 0.068997 seconds -[ 900s] Executed Test_setcellwidths() in 0.063443 seconds -[ 900s] Executed Test_setcharpos() in 0.121460 seconds -[ 900s] Executed Test_setcharsearch() in 0.129954 seconds -[ 900s] Executed Test_setcmdpos() in 0.025157 seconds -[ 900s] Executed Test_setcursorcharpos() in 0.132768 seconds -[ 900s] Executed Test_setenv() in 0.045861 seconds -[ 900s] Executed Test_setfperm() in 0.155599 seconds -[ 900s] Executed Test_setline() in 0.121379 seconds -[ 900s] Executed Test_setloclist() in 0.263969 seconds -[ 900s] Executed Test_setmatches() in 0.089464 seconds -[ 900s] Executed Test_setpos() in 0.095175 seconds -[ 900s] Executed Test_setqflist() in 0.092279 seconds -[ 900s] Executed Test_setreg() in 0.120896 seconds -[ 900s] Executed Test_settabvar() in 0.160584 seconds -[ 900s] Executed Test_settabwinvar() in 0.109601 seconds -[ 900s] Executed Test_settagstack() in 0.086513 seconds -[ 900s] Executed Test_setwinvar() in 0.069210 seconds -[ 900s] Executed Test_sha256() in 0.072398 seconds -[ 900s] Executed Test_shellescape() in 0.089020 seconds -[ 900s] Executed Test_shiftwidth() in 0.023085 seconds -[ 900s] Executed Test_sign_define() in 0.137991 seconds -[ 900s] Executed Test_sign_getdefined() in 0.092960 seconds -[ 900s] Executed Test_sign_getplaced() in 0.131832 seconds -[ 900s] Executed Test_sign_jump() in 0.092500 seconds -[ 900s] Executed Test_sign_place() in 0.247977 seconds -[ 900s] Executed Test_sign_placelist() in 0.092464 seconds -[ 900s] Executed Test_sign_undefine() in 0.091969 seconds -[ 900s] Executed Test_sign_unplace() in 0.092368 seconds -[ 900s] Executed Test_sign_unplacelist() in 0.063415 seconds -[ 900s] Executed Test_simplify() in 0.046241 seconds -[ 900s] Executed Test_slice() in 0.090000 seconds -[ 900s] Executed Test_sort_argument() in 0.114946 seconds -[ 900s] Executed Test_sort_compare_func_fails() in 0.195008 seconds -[ 900s] Executed Test_sort_return_type() in 0.000267 seconds -[ 900s] Skipped -[ 900s] Executed Test_sound_playevent() in 0.000304 seconds -[ 900s] Skipped -[ 900s] Executed Test_sound_playfile() in 0.000289 seconds -[ 900s] Skipped -[ 900s] Executed Test_sound_stop() in 0.000283 seconds -[ 900s] Executed Test_soundfold() in 0.044139 seconds -[ 900s] Executed Test_spellbadword() in 0.029906 seconds -[ 900s] Executed Test_spellsuggest() in 0.228623 seconds -[ 900s] Executed Test_split() in 0.098216 seconds -[ 900s] Executed Test_srand() in 0.040163 seconds -[ 900s] Executed Test_state() in 0.045890 seconds -[ 900s] Executed Test_str2float() in 0.023207 seconds -[ 900s] Executed Test_str2list() in 0.069058 seconds -[ 900s] Executed Test_str2nr() in 0.109756 seconds -[ 900s] Executed Test_strcharlen() in 0.022978 seconds -[ 900s] Executed Test_strcharpart() in 0.138825 seconds -[ 900s] Executed Test_strchars() in 0.046107 seconds -[ 900s] Executed Test_strdisplaywidth() in 0.115069 seconds -[ 900s] Executed Test_strftime() in 0.046159 seconds -[ 900s] Executed Test_strgetchar() in 0.203362 seconds -[ 900s] Executed Test_stridx() in 0.141156 seconds -[ 900s] Executed Test_strlen() in 0.071503 seconds -[ 900s] Executed Test_strpart() in 0.478596 seconds -[ 900s] Executed Test_strptime() in 0.046317 seconds -[ 900s] Executed Test_strridx() in 0.132267 seconds -[ 900s] Executed Test_strtrans() in 0.023122 seconds -[ 900s] Executed Test_strwidth() in 0.099829 seconds -[ 900s] Executed Test_submatch() in 0.061234 seconds -[ 900s] Executed Test_substitute() in 0.443915 seconds -[ 900s] Executed Test_swapinfo() in 0.158506 seconds -[ 900s] Executed Test_swapname() in 0.158599 seconds -[ 900s] Executed Test_synID() in 0.634801 seconds -[ 900s] Executed Test_synIDattr() in 0.273009 seconds -[ 900s] Executed Test_synIDtrans() in 0.231653 seconds -[ 900s] Executed Test_synconcealed() in 0.402731 seconds -[ 900s] Executed Test_synstack() in 0.479599 seconds -[ 900s] Executed Test_system() in 0.231673 seconds -[ 900s] Executed Test_systemlist() in 0.406378 seconds -[ 900s] Executed Test_tabpagebuflist() in 0.367245 seconds -[ 900s] Executed Test_tabpagenr() in 0.123897 seconds -[ 900s] Executed Test_tabpagewinnr() in 0.161007 seconds -[ 900s] Executed Test_taglist() in 0.091151 seconds -[ 900s] Executed Test_term_dumpdiff() in 0.304987 seconds -[ 900s] Executed Test_term_dumpload() in 0.663273 seconds -[ 900s] Executed Test_term_dumpwrite() in 0.282185 seconds -[ 900s] Executed Test_term_getaltscreen() in 0.158631 seconds -[ 900s] Executed Test_term_getansicolors() in 0.222649 seconds -[ 900s] Executed Test_term_getattr() in 0.107727 seconds -[ 900s] Executed Test_term_getcursor() in 0.086817 seconds -[ 900s] Executed Test_term_getjob() in 0.048388 seconds -[ 900s] Executed Test_term_getline() in 0.241409 seconds -[ 900s] Executed Test_term_getscrolled() in 0.158495 seconds -[ 900s] Executed Test_term_getsize() in 0.158560 seconds -[ 900s] Executed Test_term_getstatus() in 0.158538 seconds -[ 900s] Executed Test_term_gettitle() in 0.158580 seconds -[ 900s] Executed Test_term_gettty() in 0.344707 seconds -[ 900s] Executed Test_term_scrape() in 0.317190 seconds -[ 900s] Executed Test_term_sendkeys() in 0.317239 seconds -[ 900s] Skipped -[ 900s] Executed Test_term_setansicolors() in 0.000382 seconds -[ 900s] Executed Test_term_setapi() in 0.316653 seconds -[ 900s] Executed Test_term_setkill() in 0.359413 seconds -[ 900s] Executed Test_term_setrestore() in 0.206263 seconds -[ 900s] Executed Test_term_setsize() in 0.476005 seconds -[ 900s] Executed Test_term_start() in 0.638343 seconds -[ 900s] Executed Test_term_wait() in 0.327770 seconds -[ 900s] Executed Test_test_alloc_fail() in 0.264152 seconds -[ 900s] Executed Test_test_feedinput() in 0.317082 seconds -[ 900s] Executed Test_test_getvalue() in 0.158552 seconds -[ 900s] Skipped -[ 900s] Executed Test_test_gui_event() in 0.000322 seconds -[ 900s] Executed Test_test_ignore_error() in 0.158060 seconds -[ 900s] Executed Test_test_option_not_set() in 0.158528 seconds -[ 900s] Executed Test_test_override() in 0.317257 seconds -[ 900s] Executed Test_test_setmouse() in 0.317187 seconds -[ 900s] Executed Test_test_settime() in 0.161788 seconds -[ 900s] Executed Test_test_srand_seed() in 0.317229 seconds -[ 900s] Executed Test_timer_info() in 0.158548 seconds -[ 900s] Executed Test_timer_pause() in 0.317200 seconds -[ 900s] Executed Test_timer_paused() in 0.000339 seconds -[ 900s] Executed Test_timer_start() in 0.634077 seconds -[ 900s] Executed Test_timer_stop() in 0.158472 seconds -[ 900s] Executed Test_tolower() in 0.158492 seconds -[ 900s] Executed Test_toupper() in 0.208566 seconds -[ 900s] Executed Test_tr() in 0.609031 seconds -[ 900s] Executed Test_trim() in 0.634504 seconds -[ 900s] Executed Test_typename() in 0.000315 seconds -[ 900s] Executed Test_undofile() in 0.211565 seconds -[ 900s] Executed Test_uniq() in 0.451967 seconds -[ 900s] Executed Test_values() in 0.045993 seconds -[ 900s] Executed Test_virtcol() in 0.252270 seconds -[ 900s] Executed Test_visualmode() in 0.118807 seconds -[ 900s] Executed Test_win_execute() in 0.214079 seconds -[ 900s] Executed Test_win_findbuf() in 0.044522 seconds -[ 900s] Executed Test_win_getid() in 0.207712 seconds -[ 900s] Executed Test_win_gettype() in 0.040208 seconds -[ 900s] Executed Test_win_gotoid() in 0.066318 seconds -[ 900s] Executed Test_win_gotoid_in_mapping() in 0.000307 seconds -[ 900s] Executed Test_win_id2tabwin() in 0.048252 seconds -[ 900s] Executed Test_win_id2win() in 0.023046 seconds -[ 900s] Executed Test_win_screenpos() in 0.189513 seconds -[ 900s] Executed Test_win_splitmove() in 0.257486 seconds -[ 900s] Executed Test_winbufnr() in 0.114578 seconds -[ 900s] Executed Test_winheight() in 0.045009 seconds -[ 900s] Executed Test_winlayout() in 0.087234 seconds -[ 900s] Executed Test_winnr() in 0.131782 seconds -[ 900s] Executed Test_winrestcmd() in 0.000400 seconds -[ 900s] Executed Test_winrestview() in 0.065476 seconds -[ 900s] Executed Test_winsaveview() in 0.158340 seconds -[ 900s] Executed Test_winwidth() in 0.061884 seconds -[ 900s] Executed Test_writefile() in 0.067177 seconds -[ 900s] Executed Test_xor() in 0.157265 seconds -[ 900s] Executed 463 tests in 90.465519 seconds -[ 900s] SKIPPED Test_balloon_show(): only works in the GUI -[ 900s] SKIPPED Test_browse(): browse feature missing -[ 900s] SKIPPED Test_debugbreak(): only works on MS-Windows -[ 900s] SKIPPED Test_mzeval(): mzscheme feature missing -[ 900s] SKIPPED Test_pyeval(): python feature missing -[ 900s] SKIPPED Test_remote_expr(): clientserver feature missing -[ 900s] SKIPPED Test_remote_foreground(): clientserver feature missing -[ 900s] SKIPPED Test_remote_peek(): clientserver feature missing -[ 900s] SKIPPED Test_remote_read(): clientserver feature missing -[ 900s] SKIPPED Test_remote_send(): clientserver feature missing -[ 900s] SKIPPED Test_remote_startserver(): clientserver feature missing -[ 900s] SKIPPED Test_server2client(): clientserver feature missing -[ 900s] SKIPPED Test_sound_playevent(): sound feature missing -[ 900s] SKIPPED Test_sound_playfile(): sound feature missing -[ 900s] SKIPPED Test_sound_stop(): sound feature missing -[ 900s] SKIPPED Test_term_setansicolors(): Only works with termguicolors or gui feature -[ 900s] SKIPPED Test_test_gui_event(): only works in the GUI -[ 900s] -[ 900s] From test_vim9_cmd.vim: -[ 900s] Executed Test_ambiguous_user_cmd() in 0.200324 seconds -[ 900s] Executed Test_bar_after_command() in 0.045799 seconds -[ 900s] Executed Test_bar_line_continuation() in 0.121955 seconds -[ 900s] Executed Test_cmd_argument_without_colon() in 0.037215 seconds -[ 900s] Executed Test_cmdmod_execute() in 0.282534 seconds -[ 900s] Executed Test_cmdwin_block() in 0.000739 seconds -[ 900s] Executed Test_command_modifier_confirm() in 0.324616 seconds -[ 900s] Executed Test_command_modifier_filter() in 0.113890 seconds -[ 900s] Executed Test_command_modifier_other() in 0.002136 seconds -[ 900s] Executed Test_command_modifiers_keep() in 0.423693 seconds -[ 900s] Executed Test_command_not_recognized() in 0.184197 seconds -[ 900s] Executed Test_command_star_range() in 0.000694 seconds -[ 900s] Executed Test_condition_types() in 1.012606 seconds -[ 900s] Executed Test_defcompile_fails() in 0.000369 seconds -[ 900s] Executed Test_dict_member() in 0.062374 seconds -[ 900s] Executed Test_echo_linebreak() in 0.158502 seconds -[ 900s] Executed Test_echo_void() in 0.158584 seconds -[ 900s] Executed Test_edit_wildcards() in 0.161504 seconds -[ 900s] Executed Test_environment_use_linebreak() in 0.155786 seconds -[ 900s] Executed Test_eval_command() in 0.095048 seconds -[ 900s] Executed Test_expand_alternate_file() in 0.163287 seconds -[ 900s] Executed Test_f_args() in 0.101203 seconds -[ 900s] Executed Test_filter_is_not_modifier() in 0.000298 seconds -[ 900s] Executed Test_folddo_backtick_expansion() in 0.086004 seconds -[ 900s] Executed Test_for_linebreak() in 0.042682 seconds -[ 900s] Executed Test_gdefault_not_used() in 0.000597 seconds -[ 900s] Executed Test_global_backtick_expansion() in 0.001202 seconds -[ 900s] Executed Test_hardcopy_wildcards() in 0.000415 seconds -[ 900s] Executed Test_if_linebreak() in 0.020645 seconds -[ 900s] Executed Test_insert_complete() in 0.000873 seconds -[ 900s] Executed Test_lockvar() in 0.638279 seconds -[ 900s] Executed Test_magic_not_used() in 0.000756 seconds -[ 900s] Executed Test_map_command() in 0.287004 seconds -[ 900s] Executed Test_method_and_user_command() in 0.014299 seconds -[ 900s] Executed Test_method_call_linebreak() in 0.201639 seconds -[ 900s] Executed Test_method_call_whitespace() in 0.042786 seconds -[ 900s] Executed Test_modifier_silent_unsilent() in 0.008793 seconds -[ 900s] Executed Test_no_space_after_command() in 0.451385 seconds -[ 900s] Executed Test_normal_command() in 0.000801 seconds -[ 900s] Executed Test_option_use_linebreak() in 0.042632 seconds -[ 900s] Executed Test_previewpopup() in 0.000664 seconds -[ 900s] Executed Test_put_command() in 0.010565 seconds -[ 900s] Executed Test_put_with_linebreak() in 0.011475 seconds -[ 900s] Executed Test_range_after_command_modifier() in 0.090367 seconds -[ 900s] Executed Test_redir_to_var() in 0.231009 seconds -[ 900s] Executed Test_silent_pattern() in 0.000367 seconds -[ 900s] Executed Test_skipped_expr_linebreak() in 0.000236 seconds -[ 900s] Executed Test_star_command() in 0.033604 seconds -[ 900s] Executed Test_substitute_expr() in 0.081336 seconds -[ 900s] Executed Test_syn_include_wildcards() in 0.010761 seconds -[ 900s] Executed Test_syntax_enable_clear() in 0.013101 seconds -[ 900s] Executed Test_use_register() in 0.459838 seconds -[ 900s] Executed Test_useless_command_modifier() in 0.363284 seconds -[ 900s] Executed Test_user_command_comment() in 0.034692 seconds -[ 900s] Executed Test_var_not_cmd() in 0.369238 seconds -[ 900s] Executed Test_vim9cmd() in 0.241796 seconds -[ 900s] Executed Test_while_linebreak() in 0.023044 seconds -[ 900s] Executed Test_win_command_modifiers() in 0.000930 seconds -[ 900s] Executed Test_wincmd() in 0.000932 seconds -[ 900s] Executed Test_windo_missing_endif() in 0.009323 seconds -[ 900s] Executed 60 tests in 7.659086 seconds -[ 900s] -[ 900s] From test_vim9_disassemble.vim: -[ 900s] Executed Test_debug_elseif() in 0.000588 seconds -[ 900s] Executed Test_debug_elseif_constant() in 0.000430 seconds -[ 900s] Executed Test_debug_for() in 0.000399 seconds -[ 900s] Executed Test_debug_try_catch() in 0.000404 seconds -[ 900s] Executed Test_debugged() in 0.000331 seconds -[ 900s] Executed Test_disassemble_add_list_blob() in 0.000490 seconds -[ 900s] Executed Test_disassemble_after_reload() in 0.012738 seconds -[ 900s] Executed Test_disassemble_and_constant() in 0.000361 seconds -[ 900s] Executed Test_disassemble_and_or() in 0.000367 seconds -[ 900s] Executed Test_disassemble_any_index() in 0.000321 seconds -[ 900s] Executed Test_disassemble_any_slice() in 0.000326 seconds -[ 900s] Executed Test_disassemble_assign_null() in 0.000429 seconds -[ 900s] Executed Test_disassemble_auto_init() in 0.000299 seconds -[ 900s] Executed Test_disassemble_bitshift() in 0.000341 seconds -[ 900s] Executed Test_disassemble_blob_add() in 0.000339 seconds -[ 900s] Executed Test_disassemble_blob_index_slice() in 0.000329 seconds -[ 900s] Executed Test_disassemble_call() in 0.000604 seconds -[ 900s] Executed Test_disassemble_call_default() in 0.000353 seconds -[ 900s] Executed Test_disassemble_cexpr() in 0.000326 seconds -[ 900s] Executed Test_disassemble_channel() in 0.000351 seconds -[ 900s] Executed Test_disassemble_closure() in 0.000352 seconds -[ 900s] Executed Test_disassemble_closure_arg() in 0.000334 seconds -[ 900s] Executed Test_disassemble_compare() in 3.025158 seconds -[ 900s] Executed Test_disassemble_compare_const() in 0.268270 seconds -[ 900s] Executed Test_disassemble_computing() in 0.002513 seconds -[ 900s] Executed Test_disassemble_concat() in 0.000357 seconds -[ 900s] Executed Test_disassemble_const_expr() in 0.000672 seconds -[ 900s] Executed Test_disassemble_dict_member() in 0.000376 seconds -[ 900s] Executed Test_disassemble_dict_stack() in 0.000350 seconds -[ 900s] Executed Test_disassemble_echomsg() in 0.000322 seconds -[ 900s] Executed Test_disassemble_exec_expr() in 0.000360 seconds -[ 900s] Executed Test_disassemble_execute() in 0.000365 seconds -[ 900s] Executed Test_disassemble_falsy_op() in 0.000334 seconds -[ 900s] Executed Test_disassemble_for_loop() in 0.000383 seconds -[ 900s] Executed Test_disassemble_for_loop_continue() in 0.000451 seconds -[ 900s] Executed Test_disassemble_for_loop_eval() in 0.000374 seconds -[ 900s] Executed Test_disassemble_for_loop_unpack() in 0.000358 seconds -[ 900s] Executed Test_disassemble_function() in 0.000336 seconds -[ 900s] Executed Test_disassemble_import_autoload() in 0.091939 seconds -[ 900s] Executed Test_disassemble_invert_bool() in 0.000348 seconds -[ 900s] Executed Test_disassemble_lambda() in 0.000421 seconds -[ 900s] Executed Test_disassemble_lambda_with_type() in 0.000336 seconds -[ 900s] Executed Test_disassemble_list_add() in 0.000361 seconds -[ 900s] Executed Test_disassemble_list_assign() in 0.000379 seconds -[ 900s] Executed Test_disassemble_list_assign_with_op() in 0.000346 seconds -[ 900s] Executed Test_disassemble_list_index() in 0.000328 seconds -[ 900s] Executed Test_disassemble_list_slice() in 0.000341 seconds -[ 900s] Executed Test_disassemble_load() in 0.001009 seconds -[ 900s] Executed Test_disassemble_lock_local() in 0.000358 seconds -[ 900s] Executed Test_disassemble_negate_number() in 0.000373 seconds -[ 900s] Executed Test_disassemble_nested_def_list() in 0.000308 seconds -[ 900s] Executed Test_disassemble_nested_func() in 0.000300 seconds -[ 900s] Executed Test_disassemble_new() in 0.000296 seconds -[ 900s] Executed Test_disassemble_nextcmd() in 0.000283 seconds -[ 900s] Executed Test_disassemble_pcall() in 0.000299 seconds -[ 900s] Executed Test_disassemble_push() in 0.140374 seconds -[ 900s] Executed Test_disassemble_put_expr() in 0.000338 seconds -[ 900s] Executed Test_disassemble_put_range() in 0.000312 seconds -[ 900s] Executed Test_disassemble_python_heredoc() in 0.000325 seconds -[ 900s] Executed Test_disassemble_range_only() in 0.000287 seconds -[ 900s] Executed Test_disassemble_redir_var() in 0.000330 seconds -[ 900s] Executed Test_disassemble_return_bool() in 0.000341 seconds -[ 900s] Executed Test_disassemble_return_in_if() in 0.000307 seconds -[ 900s] Executed Test_disassemble_return_legacy() in 0.000278 seconds -[ 900s] Executed Test_disassemble_seachpair() in 0.000350 seconds -[ 900s] Executed Test_disassemble_store() in 0.001237 seconds -[ 900s] Executed Test_disassemble_store_index() in 0.000328 seconds -[ 900s] Executed Test_disassemble_store_member() in 0.000415 seconds -[ 900s] Executed Test_disassemble_store_range() in 0.000326 seconds -[ 900s] Executed Test_disassemble_string_index() in 0.000295 seconds -[ 900s] Executed Test_disassemble_string_interp() in 0.000300 seconds -[ 900s] Executed Test_disassemble_string_slice() in 0.000299 seconds -[ 900s] Executed Test_disassemble_substitute() in 0.000298 seconds -[ 900s] Executed Test_disassemble_substitute_expr() in 0.000401 seconds -[ 900s] Executed Test_disassemble_try() in 0.000371 seconds -[ 900s] Executed Test_disassemble_typecast() in 0.000332 seconds -[ 900s] Executed Test_disassemble_unlet() in 0.000388 seconds -[ 900s] Executed Test_disassemble_update_instr() in 0.000331 seconds -[ 900s] Executed Test_disassemble_yank_range() in 0.000294 seconds -[ 900s] Executed Test_display_func() in 0.000338 seconds -[ 900s] Executed Test_profiled() in 0.000348 seconds -[ 900s] Executed Test_shuffle() in 0.000294 seconds -[ 900s] Executed Test_silent() in 0.000313 seconds -[ 900s] Executed Test_silent_for() in 0.000315 seconds -[ 900s] Executed Test_silent_if() in 0.000347 seconds -[ 900s] Executed Test_silent_return() in 0.000282 seconds -[ 900s] Executed Test_silent_while() in 0.000298 seconds -[ 900s] Executed Test_simplify_const_expr() in 0.000348 seconds -[ 900s] Executed Test_vim9script_forward_func() in 0.099327 seconds -[ 900s] Executed 89 tests in 3.728430 seconds -[ 900s] -[ 900s] From test_vim9_expr.vim: -[ 900s] Executed Test_expr1_falsy() in 0.321884 seconds -[ 900s] Executed Test_expr1_ternary() in 0.112903 seconds -[ 900s] Executed Test_expr1_ternary_fails() in 1.130524 seconds -[ 900s] Executed Test_expr1_ternary_vimscript() in 0.673854 seconds -[ 900s] Executed Test_expr2() in 0.101347 seconds -[ 900s] Executed Test_expr2_fails() in 0.440502 seconds -[ 900s] Executed Test_expr2_vimscript() in 0.309695 seconds -[ 900s] Executed Test_expr3() in 0.064619 seconds -[ 900s] Executed Test_expr3_fails() in 0.482867 seconds -[ 900s] Executed Test_expr3_vimscript() in 0.380331 seconds -[ 900s] Executed Test_expr4_compare_none() in 0.238089 seconds -[ 900s] Executed Test_expr4_compare_null() in 0.319017 seconds -[ 900s] Executed Test_expr4_equal() in 0.454573 seconds -[ 900s] Executed Test_expr4_fails() in 2.653288 seconds -[ 900s] Executed Test_expr4_greater() in 0.045615 seconds -[ 900s] Executed Test_expr4_greaterequal() in 0.150413 seconds -[ 900s] Executed Test_expr4_is() in 0.050341 seconds -[ 900s] Executed Test_expr4_isnot() in 0.045915 seconds -[ 900s] Executed Test_expr4_match() in 0.067508 seconds -[ 900s] Executed Test_expr4_nomatch() in 0.024349 seconds -[ 900s] Executed Test_expr4_notequal() in 0.072762 seconds -[ 900s] Executed Test_expr4_smaller() in 0.093590 seconds -[ 900s] Executed Test_expr4_smallerequal() in 0.045990 seconds -[ 900s] Executed Test_expr4_vim9script() in 1.672273 seconds -[ 900s] Executed Test_expr4_wrong_type() in 0.685939 seconds -[ 900s] Executed Test_expr6() in 0.023183 seconds -[ 900s] Executed Test_expr6_fails() in 1.576383 seconds -[ 900s] Executed Test_expr6_fails_channel() in 0.109071 seconds -[ 900s] Executed Test_expr6_float() in 0.023053 seconds -[ 900s] Executed Test_expr6_list_add() in 0.149207 seconds -[ 900s] Executed Test_expr6_vim9script() in 1.478475 seconds -[ 900s] Executed Test_expr6_vim9script_channel() in 0.126256 seconds -[ 900s] Executed Test_expr7() in 0.403309 seconds -[ 900s] Executed Test_expr7_fails() in 1.455543 seconds -[ 900s] Executed Test_expr7_float() in 0.125805 seconds -[ 900s] Executed Test_expr7_float_fails() in 0.023137 seconds -[ 900s] Executed Test_expr7_vim9script() in 0.465563 seconds -[ 900s] Executed Test_expr8() in 0.258963 seconds -[ 900s] Executed Test_expr9_any_index_slice() in 0.404184 seconds -[ 900s] Executed Test_expr9_autoload_var() in 0.096718 seconds -[ 900s] Executed Test_expr9_blob() in 0.109198 seconds -[ 900s] Executed Test_expr9_blob_subscript() in 0.023099 seconds -[ 900s] Executed Test_expr9_call() in 0.241774 seconds -[ 900s] Executed Test_expr9_call_2bool() in 0.011379 seconds -[ 900s] Executed Test_expr9_call_autoload() in 0.034667 seconds -[ 900s] Executed Test_expr9_call_global() in 0.094681 seconds -[ 900s] Executed Test_expr9_dict() in 1.109614 seconds -[ 900s] Executed Test_expr9_dict_in_block() in 0.011323 seconds -[ 900s] Executed Test_expr9_dict_subscript() in 0.023098 seconds -[ 900s] Executed Test_expr9_dict_vim9script() in 0.737946 seconds -[ 900s] Executed Test_expr9_environment() in 0.092544 seconds -[ 900s] Executed Test_expr9_fails() in 1.165094 seconds -[ 900s] Executed Test_expr9_float() in 0.057285 seconds -[ 900s] Executed Test_expr9_funcref_subscript() in 0.126529 seconds -[ 900s] Executed Test_expr9_lambda() in 0.726207 seconds -[ 900s] Executed Test_expr9_lambda_block() in 0.196416 seconds -[ 900s] Executed Test_expr9_lambda_vim9script() in 0.100152 seconds -[ 900s] Executed Test_expr9_legacy_script() in 0.032260 seconds -[ 900s] Executed Test_expr9_list() in 0.927695 seconds -[ 900s] Executed Test_expr9_list_subscript() in 0.092321 seconds -[ 900s] Executed Test_expr9_list_vim9script() in 0.248866 seconds -[ 900s] Executed Test_expr9_method_call() in 0.144158 seconds -[ 900s] Executed Test_expr9_method_call_import() in 0.034716 seconds -[ 900s] Executed Test_expr9_method_call_linebreak() in 0.011353 seconds -[ 900s] Executed Test_expr9_namespace() in 0.023206 seconds -[ 900s] Executed Test_expr9_namespace_loop_def() in 0.083634 seconds -[ 900s] Executed Test_expr9_namespace_loop_script() in 0.936330 seconds -[ 900s] Executed Test_expr9_negate() in 0.151712 seconds -[ 900s] Executed Test_expr9_negate_add() in 0.396753 seconds -[ 900s] Executed Test_expr9_new_lambda() in 0.799246 seconds -[ 900s] Executed Test_expr9_not() in 0.057284 seconds -[ 900s] Executed Test_expr9_number() in 0.039968 seconds -[ 900s] Executed Test_expr9_option() in 0.052051 seconds -[ 900s] Executed Test_expr9_parens() in 0.295082 seconds -[ 900s] Executed Test_expr9_register() in 0.089492 seconds -[ 900s] Executed Test_expr9_special() in 0.362092 seconds -[ 900s] Executed Test_expr9_string() in 0.425212 seconds -[ 900s] Executed Test_expr9_string_subscript() in 0.545752 seconds -[ 900s] Executed Test_expr9_subscript_linebreak() in 0.063431 seconds -[ 900s] Executed Test_expr9_trailing() in 0.137508 seconds -[ 900s] Executed Test_expr9_trailing_fails() in 0.092122 seconds -[ 900s] Executed Test_expr9_vimvar() in 0.242682 seconds -[ 900s] Executed Test_expr9funcref() in 0.067823 seconds -[ 900s] Executed Test_expr_fails() in 0.637621 seconds -[ 900s] Executed Test_expr_member() in 0.202728 seconds -[ 900s] Executed Test_expr_member_vim9script() in 0.187833 seconds -[ 900s] Executed 86 tests in 29.647472 seconds -[ 900s] -[ 900s] From test_vim9_fails.vim: -[ 900s] Executed Test_assignment() in 0.000647 seconds -[ 900s] Executed Test_job_info_return_type() in 0.000566 seconds -[ 900s] Executed 2 tests in 0.072553 seconds -[ 900s] -[ 900s] From test_vim9_func.vim: -[ 900s] Executed Test_E1056_1059() in 0.000415 seconds -[ 900s] Executed Test_abort_even_with_silent() in 0.072107 seconds -[ 900s] Executed Test_abort_with_silent_call() in 0.054901 seconds -[ 900s] Executed Test_arg_type_wrong() in 0.240856 seconds -[ 900s] Executed Test_argument_names() in 0.000282 seconds -[ 900s] Executed Test_argv_return_type() in 0.000606 seconds -[ 900s] Executed Test_assign_to_argument() in 0.010424 seconds -[ 900s] Executed Test_autoload_error_in_script() in 0.132158 seconds -[ 900s] Executed Test_autoload_name_mismatch() in 0.106801 seconds -[ 900s] Executed Test_autoload_names() in 0.036703 seconds -[ 900s] Executed Test_block_scoped_var() in 0.011551 seconds -[ 900s] Executed Test_call_closure_not_compiled() in 0.000285 seconds -[ 900s] Executed Test_call_def_varargs() in 0.606242 seconds -[ 900s] Executed Test_call_default_args() in 0.605310 seconds -[ 900s] Executed Test_call_default_args_from_func() in 0.000345 seconds -[ 900s] Executed Test_call_func_defined_later() in 0.000312 seconds -[ 900s] Executed Test_call_func_with_null() in 0.025183 seconds -[ 900s] Executed Test_call_funcref() in 0.580893 seconds -[ 900s] Executed Test_call_funcref_wrong_args() in 0.397934 seconds -[ 900s] Executed Test_call_lambda_args() in 0.922830 seconds -[ 900s] Executed Test_call_legacy_with_dict() in 0.077989 seconds -[ 900s] Executed Test_call_ufunc_count() in 0.000277 seconds -[ 900s] Executed Test_call_ufunc_failure() in 0.158121 seconds -[ 900s] Executed Test_call_varargs() in 0.000337 seconds -[ 900s] Executed Test_call_varargs_only() in 0.157976 seconds -[ 900s] Executed Test_call_white_space() in 0.158518 seconds -[ 900s] Executed Test_call_wrong_args() in 0.822788 seconds -[ 900s] Executed Test_callstack_def() in 0.000327 seconds -[ 900s] Executed Test_check_argument_type() in 0.077135 seconds -[ 900s] Executed Test_check_func_arg_types() in 0.239381 seconds -[ 900s] Executed Test_closing_brace_at_start_of_line() in 0.158452 seconds -[ 900s] Executed Test_closure_append_get() in 0.000344 seconds -[ 900s] Executed Test_closure_called_from_legacy() in 0.076875 seconds -[ 900s] Executed Test_closure_in_map() in 0.239884 seconds -[ 900s] Executed Test_closure_ref_after_return() in 0.000305 seconds -[ 900s] Executed Test_closure_simple() in 0.000252 seconds -[ 900s] Executed Test_closure_two_indirect_refs() in 0.000301 seconds -[ 900s] Executed Test_closure_two_refs() in 0.000256 seconds -[ 900s] Executed Test_closure_using_argument() in 0.075337 seconds -[ 900s] Executed Test_cmd_modifier() in 0.083662 seconds -[ 900s] Executed Test_cmdmod_silent_nested() in 0.012586 seconds -[ 900s] Executed Test_cmdmod_silent_restored() in 0.032669 seconds -[ 900s] Executed Test_compile_error() in 0.024621 seconds -[ 900s] Executed Test_compile_error_in_called_function() in 0.085895 seconds -[ 900s] Executed Test_compiling_error() in 0.272591 seconds -[ 900s] Executed Test_compiling_referenced_func_no_shadow() in 0.092355 seconds -[ 900s] Executed Test_continues_with_silent_error() in 0.029996 seconds -[ 900s] Executed Test_def_basic() in 0.000304 seconds -[ 900s] Executed Test_define_lambda_in_execute() in 0.010859 seconds -[ 900s] Executed Test_deleted_function() in 0.011576 seconds -[ 900s] Executed Test_delfunc() in 0.034382 seconds -[ 900s] Executed Test_dict_member_with_silent() in 0.011352 seconds -[ 900s] Executed Test_did_emsg_reset() in 0.058791 seconds -[ 900s] Executed Test_double_closure_fails() in 0.009791 seconds -[ 900s] Executed Test_double_nested_lambda() in 0.011446 seconds -[ 900s] Executed Test_enddef_dict_key() in 0.000304 seconds -[ 900s] Executed Test_endfunc_enddef() in 0.220784 seconds -[ 900s] Executed Test_error_in_function_args() in 0.062488 seconds -[ 900s] Executed Test_error_in_nested_function() in 0.000372 seconds -[ 900s] Executed Test_error_reporting() in 0.254091 seconds -[ 900s] Executed Test_failure_in_called_function() in 0.016910 seconds -[ 900s] Executed Test_free_dict_while_in_funcstack() in 1.535162 seconds -[ 900s] Executed Test_func_common_type() in 0.000376 seconds -[ 900s] Executed Test_func_return_type() in 0.065982 seconds -[ 900s] Executed Test_func_type() in 0.000331 seconds -[ 900s] Executed Test_func_type_fails() in 0.222131 seconds -[ 900s] Executed Test_func_type_part() in 0.269863 seconds -[ 900s] Executed Test_func_type_varargs() in 0.154857 seconds -[ 900s] Executed Test_func_with_comments() in 0.157359 seconds -[ 900s] Executed Test_funcdepth_error() in 0.000443 seconds -[ 900s] Executed Test_funcref_with_base() in 0.186035 seconds -[ 900s] Executed Test_function_python() in 0.015501 seconds -[ 900s] Executed Test_global_closure() in 0.087774 seconds -[ 900s] Executed Test_global_closure_called_directly() in 0.033802 seconds -[ 900s] Executed Test_global_function_not_found() in 0.023129 seconds -[ 900s] Executed Test_global_local_function() in 0.158276 seconds -[ 900s] Executed Test_go_beyond_end_of_cmd() in 0.035311 seconds -[ 900s] Executed Test_ignore_silent_error() in 0.000305 seconds -[ 900s] Executed Test_ignore_silent_error_in_filter() in 0.012122 seconds -[ 900s] Executed Test_ignored_argument() in 0.210571 seconds -[ 900s] Executed Test_invalid_function_name() in 0.129330 seconds -[ 900s] Executed Test_lambda_allocation_failure() in 0.001197 seconds -[ 900s] Executed Test_lambda_arg_shadows_func() in 0.000296 seconds -[ 900s] Executed Test_lambda_block_variable() in 0.062762 seconds -[ 900s] Executed Test_lambda_in_reduce_line_break() in 0.009057 seconds -[ 900s] Executed Test_lambda_line_nr() in 0.084649 seconds -[ 900s] Executed Test_lambda_return_type() in 0.388331 seconds -[ 900s] Executed Test_lambda_type_allocated() in 0.008829 seconds -[ 900s] Executed Test_lambda_uses_assigned_var() in 0.028688 seconds -[ 900s] Executed Test_legacy() in 0.033183 seconds -[ 900s] Executed Test_legacy_errors() in 0.447543 seconds -[ 900s] Executed Test_legacy_lambda() in 0.036056 seconds -[ 900s] Executed Test_line_continuation_in_def() in 0.000260 seconds -[ 900s] Executed Test_line_continuation_in_lambda() in 0.029321 seconds -[ 900s] Executed Test_list_any_type_checked() in 0.079440 seconds -[ 900s] Executed Test_list_lambda() in 0.000337 seconds -[ 900s] Executed Test_local_function_shadows_global() in 0.166105 seconds -[ 900s] Executed Test_lua_heredoc() in 0.000632 seconds -[ 900s] Executed Test_lua_heredoc_fails() in 0.010694 seconds -[ 900s] Executed Test_missing_endfunc_enddef() in 0.093385 seconds -[ 900s] Executed Test_missing_return() in 0.128544 seconds -[ 900s] Executed Test_multiline() in 0.000283 seconds -[ 900s] Executed Test_multiline_not_vim9() in 0.000255 seconds -[ 900s] Executed Test_multiple_funcref() in 0.046863 seconds -[ 900s] Executed Test_nested_closure() in 0.000318 seconds -[ 900s] Executed Test_nested_closure_fails() in 0.010850 seconds -[ 900s] Executed Test_nested_closure_funcref() in 0.033939 seconds -[ 900s] Executed Test_nested_closure_in_dict() in 0.036022 seconds -[ 900s] Executed Test_nested_closure_used() in 0.032960 seconds -[ 900s] Executed Test_nested_closure_using_argument() in 0.000330 seconds -[ 900s] Executed Test_nested_def_list() in 0.010908 seconds -[ 900s] Executed Test_nested_function() in 0.471460 seconds -[ 900s] Executed Test_nested_function_fails() in 0.011348 seconds -[ 900s] Executed Test_nested_function_with_args_split() in 0.023042 seconds -[ 900s] Executed Test_nested_function_with_nextcmd() in 0.118314 seconds -[ 900s] Executed Test_nested_global_function() in 0.093989 seconds -[ 900s] Executed Test_nested_inline_lambda() in 0.103190 seconds -[ 900s] Executed Test_nested_lambda() in 0.011550 seconds -[ 900s] Executed Test_nested_lambda_in_closure() in 0.087574 seconds -[ 900s] Executed Test_not_nested_function() in 0.000307 seconds -[ 900s] Executed Test_null_default_argument() in 0.043873 seconds -[ 900s] Executed Test_null_return() in 0.023022 seconds -[ 900s] Executed Test_numbered_function_reference() in 0.000362 seconds -[ 900s] Executed Test_opfunc() in 0.000692 seconds -[ 900s] Executed Test_opfunc_error() in 0.042014 seconds -[ 900s] Executed Test_partial_call() in 0.099960 seconds -[ 900s] Executed Test_partial_call_fails() in 0.011373 seconds -[ 900s] Executed Test_partial_double_nested() in 0.000282 seconds -[ 900s] Executed Test_partial_null_function() in 0.022540 seconds -[ 900s] Executed Test_pass_legacy_lambda_to_def_func() in 0.103332 seconds -[ 900s] Executed Test_perl_heredoc_nested() in 0.027934 seconds -[ 900s] Executed Test_python3_command() in 0.000489 seconds -[ 900s] Executed Test_python3_heredoc() in 0.000392 seconds -[ 900s] Executed Test_recursive_call() in 0.004125 seconds -[ 900s] Executed Test_redef_failure() in 0.214413 seconds -[ 900s] Executed Test_repeat_return_type() in 0.000302 seconds -[ 900s] Executed Test_reset_did_emsg() in 0.049325 seconds -[ 900s] Executed Test_restore_modifiers() in 0.011365 seconds -[ 900s] Executed Test_return_any_two_types() in 0.011538 seconds -[ 900s] Executed Test_return_bool() in 0.011315 seconds -[ 900s] Executed Test_return_invalid() in 0.120564 seconds -[ 900s] Executed Test_return_list_any() in 0.046239 seconds -[ 900s] Executed Test_return_nothing() in 0.000284 seconds -[ 900s] Executed Test_return_something() in 0.070159 seconds -[ 900s] Executed Test_return_type_wrong() in 0.852175 seconds -[ 900s] Executed Test_script_local_other_script() in 0.079983 seconds -[ 900s] Executed Test_script_var_in_lambda() in 0.080648 seconds -[ 900s] Executed Test_set_opfunc_to_global_function() in 0.010152 seconds -[ 900s] Executed Test_set_opfunc_to_lambda() in 0.011424 seconds -[ 900s] Executed Test_silent_echo() in 0.189966 seconds -[ 900s] Executed Test_skip_cmds_with_silent() in 0.105571 seconds -[ 900s] Executed Test_too_many_arguments() in 0.082448 seconds -[ 900s] Executed Test_triple_nested_closure() in 0.000380 seconds -[ 900s] Executed Test_unknown_function() in 0.010855 seconds -[ 900s] Executed Test_use_script_func_name_with_prefix() in 0.034914 seconds -[ 900s] Executed Test_using_var_as_arg() in 0.022606 seconds -[ 900s] Executed Test_vim9script_call() in 0.011944 seconds -[ 900s] Executed Test_vim9script_call_fail_const() in 0.049671 seconds -[ 900s] Executed Test_vim9script_call_fail_decl() in 0.012851 seconds -[ 900s] Executed Test_vim9script_call_fail_type() in 0.090153 seconds -[ 900s] Executed Test_vim9script_func() in 0.098657 seconds -[ 900s] Executed Test_white_space_after_comma() in 0.045617 seconds -[ 900s] Executed Test_white_space_before_comma() in 0.033381 seconds -[ 900s] Executed Test_white_space_before_paren() in 0.087472 seconds -[ 900s] Executed Test_wrong_function_name() in 0.221335 seconds -[ 900s] Executed 165 tests in 16.509604 seconds -[ 900s] -[ 900s] From test_vim9_import.vim: -[ 900s] Executed Test_autoload_import_deleted() in 0.137850 seconds -[ 900s] Executed Test_autoload_import_relative() in 0.391420 seconds -[ 900s] Executed Test_autoload_import_relative_autoload_dir() in 0.213566 seconds -[ 900s] Executed Test_autoload_import_var() in 0.063864 seconds -[ 900s] Executed Test_autoload_mapping() in 0.066031 seconds -[ 900s] Executed Test_autoload_missing_function_name() in 0.011402 seconds -[ 900s] Executed Test_autoload_name_wrong() in 0.057924 seconds -[ 900s] Executed Test_cmdline_win() in 0.236141 seconds -[ 900s] Executed Test_export_fails() in 0.159961 seconds -[ 900s] Executed Test_export_shadows_global_function() in 0.158809 seconds -[ 900s] Executed Test_func_overrules_import_fails() in 0.230875 seconds -[ 900s] Executed Test_import_absolute() in 0.129597 seconds -[ 900s] Executed Test_import_autoload_fails() in 0.190709 seconds -[ 900s] Executed Test_import_autoload_not_exported() in 0.432441 seconds -[ 900s] Executed Test_import_autoload_override() in 0.046603 seconds -[ 900s] Executed Test_import_autoload_postponed() in 0.085554 seconds -[ 900s] Executed Test_import_compile_error() in 0.043487 seconds -[ 900s] Executed Test_import_duplicate_function() in 0.093964 seconds -[ 900s] Executed Test_import_export_expr_map() in 0.129049 seconds -[ 900s] Executed Test_import_fails() in 1.623758 seconds -[ 900s] Executed Test_import_fails_without_script() in 0.073644 seconds -[ 900s] Executed Test_import_funcref() in 0.120744 seconds -[ 900s] Executed Test_import_gone_when_sourced_twice() in 0.046289 seconds -[ 900s] Executed Test_import_in_charconvert() in 0.205495 seconds -[ 900s] Executed Test_import_in_diffexpr() in 0.343975 seconds -[ 900s] Executed Test_import_in_filetype() in 0.139815 seconds -[ 900s] Executed Test_import_in_formatexpr() in 0.068002 seconds -[ 900s] Executed Test_import_in_includeexpr() in 0.075933 seconds -[ 900s] Executed Test_import_in_indentexpr() in 0.141594 seconds -[ 900s] Executed Test_import_in_patchexpr() in 0.147208 seconds -[ 900s] Executed Test_import_in_printexpr() in 0.146376 seconds -[ 900s] Executed Test_import_in_spellsuggest_expr() in 0.108468 seconds -[ 900s] Executed Test_import_rtp() in 0.056198 seconds -[ 900s] Executed Test_import_very_long_name() in 0.140361 seconds -[ 900s] Executed Test_import_vim9_from_legacy() in 0.158604 seconds -[ 900s] Executed Test_script_reload_change_type() in 0.131649 seconds -[ 900s] Executed Test_script_reload_from_function() in 0.015750 seconds -[ 900s] Executed Test_set_opfunc_to_autoload_func_directly() in 0.092683 seconds -[ 900s] Executed Test_source_vim9_from_legacy() in 0.158006 seconds -[ 900s] Executed Test_use_autoload_import_in_fold_expression() in 0.190485 seconds -[ 900s] Executed Test_use_autoload_import_in_insert_completion() in 0.127762 seconds -[ 900s] Executed Test_use_autoload_import_in_mapping() in 0.021759 seconds -[ 900s] Executed Test_use_autoload_import_partial_in_opfunc() in 0.073694 seconds -[ 900s] Executed Test_use_import_in_command_completion() in 0.158336 seconds -[ 900s] Executed Test_use_import_in_mapping() in 0.071112 seconds -[ 900s] Executed Test_use_import_with_funcref_in_command_completion() in 0.022931 seconds -[ 900s] Executed Test_use_relative_autoload_import_in_mapping() in 0.126663 seconds -[ 900s] Executed Test_vim9_aucmd_autoload() in 0.038636 seconds -[ 900s] Executed Test_vim9_autoload_case_sensitive() in 0.063941 seconds -[ 900s] Executed Test_vim9_autoload_disass() in 0.143745 seconds -[ 900s] Executed Test_vim9_autoload_error() in 0.170198 seconds -[ 900s] Executed Test_vim9_autoload_full_name() in 0.096285 seconds -[ 900s] Executed Test_vim9_funcref() in 0.054464 seconds -[ 900s] Executed Test_vim9_funcref_other_script() in 0.074801 seconds -[ 900s] Executed Test_vim9_import_export() in 1.369927 seconds -[ 900s] Executed Test_vim9_reload_import() in 0.045461 seconds -[ 900s] Executed Test_vim9_reload_noclear() in 0.246254 seconds -[ 900s] Executed Test_vim9_reload_noclear_error() in 0.017205 seconds -[ 900s] Executed Test_vim9script_autoload() in 0.082374 seconds -[ 900s] Executed Test_vim9script_autoload_call() in 0.135964 seconds -[ 900s] Executed Test_vim9script_autoload_duplicate() in 0.214328 seconds -[ 900s] Executed Test_vim9script_autoload_fails() in 0.032175 seconds -[ 900s] Executed Test_vim9script_noclear_autoload() in 0.066103 seconds -[ 900s] Executed Test_vim_reload_noclear_arg_count() in 0.215317 seconds -[ 900s] Executed 64 tests in 10.759175 seconds -[ 900s] -[ 900s] From test_vim9_script.vim: -[ 900s] Executed Test_abort_after_error() in 0.073299 seconds -[ 900s] Executed Test_ambigous_command_error() in 0.100583 seconds -[ 900s] Executed Test_autocommand_block() in 0.000267 seconds -[ 900s] Executed Test_automatic_line_continuation() in 0.000301 seconds -[ 900s] Executed Test_block() in 0.000226 seconds -[ 900s] Executed Test_block_failure() in 0.085705 seconds -[ 900s] Executed Test_block_local_vars() in 0.077457 seconds -[ 900s] Executed Test_block_local_vars_with_func() in 0.008404 seconds -[ 900s] Executed Test_break_in_try_in_for() in 0.011580 seconds -[ 900s] Executed Test_catch_exception_in_callback() in 0.103083 seconds -[ 900s] Executed Test_cexpr_vimscript() in 0.080254 seconds -[ 900s] Executed Test_cnext_works_in_catch() in 0.137888 seconds -[ 900s] Executed Test_command_block() in 0.000676 seconds -[ 900s] Executed Test_const() in 0.160244 seconds -[ 900s] Executed Test_const_bang() in 0.275789 seconds -[ 900s] Executed Test_continue_in_try_in_while() in 0.000278 seconds -[ 900s] Executed Test_convert_emsg_to_exception() in 0.000280 seconds -[ 900s] Executed Test_debug_running_out_of_lines() in 0.062931 seconds -[ 900s] Executed Test_debug_with_lambda() in 0.094170 seconds -[ 900s] Executed Test_declare_script_var_in_func() in 0.013511 seconds -[ 900s] Executed Test_define_func_at_command_line() in 0.116239 seconds -[ 900s] Executed Test_delfunction() in 0.119492 seconds -[ 900s] Executed Test_echo_cmd() in 0.011625 seconds -[ 900s] Executed Test_echo_uninit_variables() in 0.000391 seconds -[ 900s] Executed Test_echoconsole_cmd() in 0.000272 seconds -[ 900s] Executed Test_echoerr_cmd() in 0.000279 seconds -[ 900s] Executed Test_echoerr_cmd_vimscript() in 0.009916 seconds -[ 900s] Executed Test_echomsg_cmd() in 0.011600 seconds -[ 900s] Executed Test_echomsg_cmd_vimscript() in 0.046217 seconds -[ 900s] Executed Test_error_in_autoload_script() in 0.068675 seconds -[ 900s] Executed Test_error_in_catch() in 0.017356 seconds -[ 900s] Executed Test_error_in_nested_function() in 0.011396 seconds -[ 900s] Executed Test_execute_cmd() in 0.066475 seconds -[ 900s] Executed Test_execute_cmd_vimscript() in 0.065396 seconds -[ 900s] Executed Test_execute_finish() in 0.033095 seconds -[ 900s] Executed Test_finish() in 0.035559 seconds -[ 900s] Executed Test_fixed_size_list() in 0.000284 seconds -[ 900s] Executed Test_for_loop() in 0.068777 seconds -[ 900s] Executed Test_for_loop_fails() in 1.994693 seconds -[ 900s] Executed Test_for_loop_script_var() in 0.035480 seconds -[ 900s] Executed Test_for_loop_unpack() in 0.262621 seconds -[ 900s] Executed Test_for_loop_with_closure() in 0.063492 seconds -[ 900s] Executed Test_for_loop_with_try_continue() in 0.068823 seconds -[ 900s] Executed Test_for_outside_of_function() in 0.011612 seconds -[ 900s] Executed Test_for_skipped_block() in 0.115001 seconds -[ 900s] Executed Test_forward_declaration() in 0.011226 seconds -[ 900s] Executed Test_func_redefine_error() in 0.011739 seconds -[ 900s] Executed Test_func_redefine_fails() in 0.040097 seconds -[ 900s] Executed Test_function_shadows_script_var() in 0.034199 seconds -[ 900s] Executed Test_if_const_expr() in 0.000511 seconds -[ 900s] Executed Test_if_const_expr_fails() in 0.085914 seconds -[ 900s] Executed Test_if_else_func_using_var() in 0.099000 seconds -[ 900s] Executed Test_if_elseif_else() in 0.000334 seconds -[ 900s] Executed Test_if_elseif_else_fails() in 0.273289 seconds -[ 900s] Executed Test_interrupt_loop() in 0.000386 seconds -[ 900s] Executed Test_invalid_range() in 0.177855 seconds -[ 900s] Executed Test_invalid_sid() in 0.106178 seconds -[ 900s] Executed Test_invoke_normal_in_visual_mode() in 0.000909 seconds -[ 900s] Executed Test_lambda_split() in 0.086469 seconds -[ 900s] Executed Test_list_vimscript() in 0.058472 seconds -[ 900s] Executed Test_lock_script_var() in 0.034344 seconds -[ 900s] Executed Test_mapping_line_number() in 0.035794 seconds -[ 900s] Executed Test_minimal_command_name_length() in 2.754080 seconds -[ 900s] Executed Test_misplaced_type() in 0.065323 seconds -[ 900s] Executed Test_nested_if() in 0.000307 seconds -[ 900s] Executed Test_no_insert_xit() in 0.692027 seconds -[ 900s] Executed Test_no_redraw_when_restoring_cpo() in 0.187855 seconds -[ 900s] Executed Test_no_unknown_error_after_error() in 0.097031 seconds -[ 900s] Executed Test_nocatch_return_in_try() in 0.000343 seconds -[ 900s] Executed Test_nocatch_throw_silenced() in 0.088360 seconds -[ 900s] Executed Test_option_modifier() in 0.157879 seconds -[ 900s] Executed Test_option_set() in 0.764977 seconds -[ 900s] Executed Test_profile_with_lambda() in 0.197868 seconds -[ 900s] Executed Test_range_no_colon() in 0.091794 seconds -[ 900s] Executed Test_range_only() in 0.415648 seconds -[ 900s] Executed Test_reject_declaration() in 0.074407 seconds -[ 900s] Executed Test_restoring_cpo() in 0.672648 seconds -[ 900s] Executed Test_script_namespace() in 0.172713 seconds -[ 900s] Executed Test_script_var_gone_when_sourced_twice() in 0.090350 seconds -[ 900s] Executed Test_script_var_in_autocmd() in 0.036484 seconds -[ 900s] Executed Test_script_var_scope() in 0.131208 seconds -[ 900s] Executed Test_script_var_shadows_command() in 0.160877 seconds -[ 900s] Executed Test_script_var_shadows_function() in 0.011330 seconds -[ 900s] Executed Test_script_wrong_type() in 0.011599 seconds -[ 900s] Executed Test_skipped_redir() in 0.035663 seconds -[ 900s] Executed Test_statusline_syntax() in 0.158808 seconds -[ 900s] Executed Test_substitute_cmd() in 0.011386 seconds -[ 900s] Executed Test_throw_line_number() in 0.000299 seconds -[ 900s] Executed Test_throw_skipped() in 0.000217 seconds -[ 900s] Executed Test_throw_vimscript() in 0.022038 seconds -[ 900s] Executed Test_try_catch_fails() in 0.253227 seconds -[ 900s] Executed Test_try_catch_match() in 0.000314 seconds -[ 900s] Executed Test_try_catch_nested() in 0.000418 seconds -[ 900s] Executed Test_try_catch_skipped() in 0.000294 seconds -[ 900s] Executed Test_try_catch_throw() in 0.170662 seconds -[ 900s] Executed Test_try_catch_twice() in 0.000295 seconds -[ 900s] Executed Test_try_ends_in_return() in 0.085872 seconds -[ 900s] Executed Test_try_in_catch() in 0.000238 seconds -[ 900s] Executed Test_try_var_decl() in 0.034108 seconds -[ 900s] Executed Test_unset_any_variable() in 0.028776 seconds -[ 900s] Executed Test_unsupported_commands() in 0.460192 seconds -[ 900s] Executed Test_vim9_comment() in 3.708933 seconds -[ 900s] Skipped -[ 900s] Executed Test_vim9_comment_gui() in 0.000426 seconds -[ 900s] Executed Test_vim9_comment_not_compiled() in 0.676655 seconds -[ 900s] Executed Test_vim9_copen() in 0.000411 seconds -[ 900s] Executed Test_vim9script_call_wrong_type() in 0.032767 seconds -[ 900s] Executed Test_vim9script_fails() in 0.155501 seconds -[ 900s] Executed Test_vim9script_feature() in 0.035521 seconds -[ 900s] Executed Test_vim9script_mix() in 0.068216 seconds -[ 900s] Executed Test_vim9script_not_global() in 0.090278 seconds -[ 900s] Executed Test_vim9script_reload_delfunc() in 0.192409 seconds -[ 900s] Executed Test_vim9script_reload_delvar() in 0.158461 seconds -[ 900s] Executed Test_while_loop() in 0.000295 seconds -[ 900s] Executed Test_while_loop_fails() in 0.446280 seconds -[ 900s] Executed Test_while_loop_in_script() in 0.033860 seconds -[ 900s] Executed Test_while_skipped_block() in 0.220078 seconds -[ 900s] Executed Test_white_space_after_command() in 0.066965 seconds -[ 900s] Executed Test_wrong_type() in 1.266740 seconds -[ 900s] Executed Test_xxx_echoerr_line_number() in 0.158614 seconds -[ 900s] Executed 119 tests in 21.126961 seconds -[ 900s] SKIPPED Test_vim9_comment_gui(): cannot start the GUI -[ 900s] -[ 900s] From test_viminfo.vim: -[ 900s] Executed Test_cmdline_history() in 0.006439 seconds -[ 900s] Executed Test_cmdline_history_order() in 0.000799 seconds -[ 900s] Executed Test_global_vars() in 0.082057 seconds -[ 900s] Executed Test_global_vars_with_circular_reference() in 0.000472 seconds -[ 900s] Executed Test_viminfo_bad_syntax() in 0.080034 seconds -[ 900s] Executed Test_viminfo_bad_syntax2() in 0.077929 seconds -[ 900s] Executed Test_viminfo_bufferlist() in 0.004543 seconds -[ 900s] Executed Test_viminfo_encoding() in 0.000905 seconds -[ 900s] Executed Test_viminfo_error() in 0.413105 seconds -[ 900s] Executed Test_viminfo_file_mark_tabclose() in 0.001332 seconds -[ 900s] Executed Test_viminfo_file_mark_unloaded_buf() in 0.085089 seconds -[ 900s] Executed Test_viminfo_file_mark_zero_time() in 0.012526 seconds -[ 900s] Executed Test_viminfo_file_marks() in 0.002704 seconds -[ 900s] Executed Test_viminfo_hlsearch() in 0.001616 seconds -[ 900s] Executed Test_viminfo_jumplist() in 0.004414 seconds -[ 900s] Executed Test_viminfo_large_register() in 0.085459 seconds -[ 900s] Executed Test_viminfo_last_exec_reg() in 0.000638 seconds -[ 900s] Executed Test_viminfo_last_spat_magic() in 0.001414 seconds -[ 900s] Executed Test_viminfo_last_spat_offset() in 0.001409 seconds -[ 900s] Executed Test_viminfo_last_spat_smartcase() in 0.000949 seconds -[ 900s] Executed Test_viminfo_lastsub() in 0.000829 seconds -[ 900s] Executed Test_viminfo_marks() in 0.002668 seconds -[ 900s] Executed Test_viminfo_merge_file_marks() in 0.002387 seconds -[ 900s] Executed Test_viminfo_merge_old_filemarks() in 0.044266 seconds -[ 900s] Executed Test_viminfo_merge_old_jumplist() in 0.010053 seconds -[ 900s] Executed Test_viminfo_oldfiles() in 0.058319 seconds -[ 900s] Executed Test_viminfo_oldfiles_newfile() in 0.072713 seconds -[ 900s] Executed Test_viminfo_option_error() in 0.000522 seconds -[ 900s] Executed Test_viminfo_perm() in 0.057764 seconds -[ 900s] Executed Test_viminfo_read_and_write() in 0.102472 seconds -[ 900s] Executed Test_viminfo_registers() in 0.014089 seconds -[ 900s] Executed Test_viminfo_registers_old() in 0.104196 seconds -[ 900s] Executed Test_viminfo_removable_media() in 0.001290 seconds -[ 900s] Executed Test_viminfo_with_Ctrl_V() in 0.001366 seconds -[ 900s] Executed Test_viminfofile_none() in 0.087094 seconds -[ 900s] Executed 35 tests in 1.529115 seconds -[ 900s] -[ 900s] From test_vimscript.vim: -[ 900s] Executed Test_Multi_Else() in 0.000481 seconds -[ 900s] Executed Test_arg_abort() in 0.000230 seconds -[ 900s] Executed Test_autocmd_error_io_exception() in 0.275970 seconds -[ 900s] Executed Test_autocmd_exception() in 0.385966 seconds -[ 900s] Executed Test_bitwise_functions() in 0.000760 seconds -[ 900s] Executed Test_brace_expr_error() in 0.413587 seconds -[ 900s] Executed Test_braces_skipped() in 0.000261 seconds -[ 900s] Executed Test_catch_after_throw() in 0.559034 seconds -[ 900s] Executed Test_catch_err_exception_1() in 0.000346 seconds -[ 900s] Executed Test_catch_err_exception_2() in 0.000329 seconds -[ 900s] Executed Test_catch_err_exception_3() in 0.000301 seconds -[ 900s] Executed Test_catch_err_exception_4() in 0.000308 seconds -[ 900s] Executed Test_catch_err_exception_5() in 0.197888 seconds -[ 900s] Executed Test_catch_err_exception_6() in 0.000344 seconds -[ 900s] Executed Test_catch_err_exception_7() in 0.000357 seconds -[ 900s] Executed Test_catch_intr_exception() in 0.502116 seconds -[ 900s] Executed Test_catch_pattern_error() in 0.000449 seconds -[ 900s] Executed Test_compound_assignment_operators() in 0.000731 seconds -[ 900s] Executed Test_curlies() in 0.000267 seconds -[ 900s] Executed Test_deep_nest() in 0.198698 seconds -[ 900s] Executed Test_deeply_nested_source() in 0.109762 seconds -[ 900s] Executed Test_defining_functions() in 0.000272 seconds -[ 900s] Executed Test_discard_exception_after_error_1() in 0.253565 seconds -[ 900s] Executed Test_discard_exception_after_error_2() in 0.098538 seconds -[ 900s] Executed Test_echo_and_string() in 0.000910 seconds -[ 900s] Executed Test_endtry_after_throw() in 0.438571 seconds -[ 900s] Executed Test_endwhile_function() in 0.000400 seconds -[ 900s] Executed Test_endwhile_script() in 0.197906 seconds -[ 900s] Executed Test_error_after_try_1() in 0.347155 seconds -[ 900s] Executed Test_error_after_try_2() in 0.204892 seconds -[ 900s] Executed Test_error_after_try_3() in 0.401919 seconds -[ 900s] Executed Test_error_after_try_4() in 0.427236 seconds -[ 900s] Executed Test_error_after_try_5() in 0.237484 seconds -[ 900s] Executed Test_error_after_try_6() in 0.276911 seconds -[ 900s] Executed Test_error_after_try_7() in 0.401910 seconds -[ 900s] Executed Test_error_in_function() in 0.000279 seconds -[ 900s] Executed Test_error_in_script() in 0.000225 seconds -[ 900s] Executed Test_exception_after_error_1() in 0.000319 seconds -[ 900s] Executed Test_exception_after_error_2() in 0.000292 seconds -[ 900s] Executed Test_exception_after_error_3() in 0.000301 seconds -[ 900s] Executed Test_exception_after_error_4() in 0.000313 seconds -[ 900s] Executed Test_exception_after_error_5() in 0.000291 seconds -[ 900s] Executed Test_exception_info_for_error() in 0.388325 seconds -[ 900s] Executed Test_exception_info_on_discard() in 0.402086 seconds -[ 900s] Executed Test_expr_eval_error() in 0.391188 seconds -[ 900s] Executed Test_expr_eval_error_msg() in 0.402065 seconds -[ 900s] Executed Test_expr_parsing() in 0.000268 seconds -[ 900s] Executed Test_finally_after_continue() in 0.389770 seconds -[ 900s] Executed Test_finally_after_error() in 0.438163 seconds -[ 900s] Executed Test_finally_after_error_1() in 0.364642 seconds -[ 900s] Executed Test_finally_after_error_2() in 0.266222 seconds -[ 900s] Executed Test_finally_after_error_in_func() in 0.285530 seconds -[ 900s] Executed Test_finally_after_finish() in 0.231242 seconds -[ 900s] Executed Test_finally_after_interrupt() in 0.296610 seconds -[ 900s] Executed Test_finally_after_intr() in 0.074409 seconds -[ 900s] Executed Test_finally_after_loop_ctrl_statement() in 0.264966 seconds -[ 900s] Executed Test_finally_after_return() in 0.000358 seconds -[ 900s] Executed Test_finally_after_throw() in 0.159594 seconds -[ 900s] Executed Test_finally_after_throw_2() in 0.315422 seconds -[ 900s] Executed Test_finally_discard_by_break() in 0.268548 seconds -[ 900s] Executed Test_finally_discard_by_error() in 0.292120 seconds -[ 900s] Executed Test_finally_discard_by_finish() in 0.299616 seconds -[ 900s] Executed Test_finally_discard_by_return() in 0.238600 seconds -[ 900s] Executed Test_finally_discard_by_throw() in 0.403089 seconds -[ 900s] Executed Test_finally_discarded_by_interrupt() in 0.514762 seconds -[ 900s] Executed Test_finally_on_interrupt() in 0.716654 seconds -[ 900s] Executed Test_finish() in 0.133541 seconds -[ 900s] Executed Test_float_conversion_errors() in 0.000546 seconds -[ 900s] Executed Test_for_over_string() in 0.000280 seconds -[ 900s] Executed Test_func_abort() in 0.000226 seconds -[ 900s] Executed Test_funcref_with_condexpr() in 0.000261 seconds -[ 900s] Executed Test_if_bar_fail() in 0.000220 seconds -[ 900s] Executed Test_if_fail() in 0.000216 seconds -[ 900s] Executed Test_if_syntax_error() in 0.291422 seconds -[ 900s] Executed Test_if_while() in 0.000427 seconds -[ 900s] Executed Test_ignore_catch_after_error_1() in 0.315215 seconds -[ 900s] Executed Test_ignore_catch_after_error_2() in 0.286283 seconds -[ 900s] Executed Test_ignore_catch_after_intr_1() in 0.075704 seconds -[ 900s] Executed Test_ignore_catch_after_intr_2() in 0.000515 seconds -[ 900s] Executed Test_interrupt_func_try() in 0.171028 seconds -[ 900s] Executed Test_interrupt_func_while_if() in 0.220621 seconds -[ 900s] Executed Test_interrupt_try() in 0.144333 seconds -[ 900s] Executed Test_interrupt_while_if() in 0.103473 seconds -[ 900s] Executed Test_invalid_function_names() in 0.012919 seconds -[ 900s] Executed Test_missing_end() in 0.099823 seconds -[ 900s] Executed Test_nested_cont_break_error() in 0.290365 seconds -[ 900s] Executed Test_nested_endtry_error() in 0.372699 seconds -[ 900s] Executed Test_nested_if_else_errors() in 0.590306 seconds -[ 900s] Executed Test_nested_while_error() in 0.481195 seconds -[ 900s] Executed Test_num64() in 0.000322 seconds -[ 900s] Executed Test_refcount() in 0.001302 seconds -[ 900s] Executed Test_rethrow_exception_1() in 0.000311 seconds -[ 900s] Executed Test_rethrow_exception_2() in 0.000623 seconds -[ 900s] Executed Test_rethrow_exception_3() in 0.000408 seconds -[ 900s] Executed Test_return() in 0.000282 seconds -[ 900s] Executed Test_script_emty_line_continuation() in 0.000219 seconds -[ 900s] Executed Test_script_expand_sfile() in 0.070253 seconds -[ 900s] Executed Test_script_lines() in 0.000462 seconds -[ 900s] Executed Test_silent_exception() in 0.001007 seconds -[ 900s] Executed Test_skip() in 0.000341 seconds -[ 900s] Executed Test_stop_range_on_error() in 0.215536 seconds -[ 900s] Executed Test_substring_var() in 0.000302 seconds -[ 900s] Executed Test_ternary_expression() in 0.000322 seconds -[ 900s] Executed Test_throw_across_call_cmd() in 0.000566 seconds -[ 900s] Executed Test_throw_across_call_expr() in 0.000585 seconds -[ 900s] Executed Test_throw_across_script() in 0.331340 seconds -[ 900s] Executed Test_throw_exception_across_funcs() in 0.000418 seconds -[ 900s] Executed Test_throw_multi_error() in 0.159045 seconds -[ 900s] Executed Test_try_error_abort_1() in 0.260590 seconds -[ 900s] Executed Test_try_error_abort_2() in 0.214401 seconds -[ 900s] Executed Test_try_error_abort_3() in 0.202936 seconds -[ 900s] Executed Test_try_error_abort_4() in 0.093652 seconds -[ 900s] Executed Test_try_error_abort_5() in 0.137624 seconds -[ 900s] Executed Test_try_error_abort_6() in 0.429623 seconds -[ 900s] Executed Test_type() in 0.000759 seconds -[ 900s] Executed Test_typed_script_var() in 0.042623 seconds -[ 900s] Executed Test_typename() in 0.000305 seconds -[ 900s] Executed Test_uncaught_exception_1() in 0.272765 seconds -[ 900s] Executed Test_uncaught_exception_2() in 0.321569 seconds -[ 900s] Executed Test_uncaught_exception_3() in 0.201681 seconds -[ 900s] Executed Test_uncaught_exception_4() in 0.418478 seconds -[ 900s] Executed Test_uncaught_exception_5() in 0.272917 seconds -[ 900s] Executed Test_uncaught_exception_6() in 0.312958 seconds -[ 900s] Executed Test_uncaught_exception_7() in 0.329406 seconds -[ 900s] Executed Test_unlet_env() in 0.000350 seconds -[ 900s] Executed Test_unmatched_if_in_while() in 0.000611 seconds -[ 900s] Executed Test_user_command_with_bang() in 0.000243 seconds -[ 900s] Executed Test_user_exception_info() in 0.723388 seconds -[ 900s] Executed Test_while_fail() in 0.000238 seconds -[ 900s] Executed 129 tests in 22.027941 seconds -[ 900s] -[ 900s] From test_virtualedit.vim: -[ 900s] Executed Test_delete_break_tab() in 0.000633 seconds -[ 900s] Executed Test_delete_past_eol() in 0.000642 seconds -[ 900s] Executed Test_edit_CTRL_G() in 0.000635 seconds -[ 900s] Executed Test_edit_change() in 0.000602 seconds -[ 900s] Executed Test_global_local_virtualedit() in 0.002192 seconds -[ 900s] Executed Test_ins_copy_char() in 0.000725 seconds -[ 900s] Executed Test_paste_end_of_line() in 0.000625 seconds -[ 900s] Executed Test_paste_in_tab() in 0.000798 seconds -[ 900s] Executed Test_replace_after_eol() in 0.000643 seconds -[ 900s] Executed Test_replace_end_of_line() in 0.000668 seconds -[ 900s] Executed Test_replace_on_tab() in 0.000584 seconds -[ 900s] Executed Test_ve_b_past_eol() in 0.000564 seconds -[ 900s] Executed Test_ve_backspace() in 0.000552 seconds -[ 900s] Executed Test_ve_completion() in 0.000773 seconds -[ 900s] Executed Test_ve_del_ctrl_chars() in 0.000640 seconds -[ 900s] Executed Test_ve_del_to_eol() in 0.000578 seconds -[ 900s] Executed Test_ve_ins_del() in 0.000657 seconds -[ 900s] Executed Test_virtualedit_replace_after_tab() in 0.000555 seconds -[ 900s] Executed Test_yank_block() in 0.000563 seconds -[ 900s] Executed Test_yank_in_tab() in 0.000533 seconds -[ 900s] Executed Test_yank_move_change() in 0.000727 seconds -[ 900s] Executed Test_yank_paste_small_del_reg() in 0.000548 seconds -[ 900s] Executed 22 tests in 0.078996 seconds -[ 900s] -[ 900s] From test_visual.vim: -[ 900s] Executed Test_Visual_Block() in 0.000691 seconds -[ 900s] Executed Test_Visual_ctrl_o() in 0.000735 seconds -[ 900s] Executed Test_Visual_inner_quote() in 0.000518 seconds -[ 900s] Executed Test_Visual_paragraph_textobject() in 0.000749 seconds -[ 900s] Executed Test_Visual_sentence_textobject() in 0.000650 seconds -[ 900s] Executed Test_Visual_vapo() in 0.000511 seconds -[ 900s] Executed Test_Visual_word_textobject() in 0.000677 seconds -[ 900s] Executed Test_block_insert_replace_tabs() in 0.000576 seconds -[ 900s] Executed Test_block_shift_multibyte() in 0.000446 seconds -[ 900s] Executed Test_block_shift_overflow() in 0.000568 seconds -[ 900s] Executed Test_block_shift_tab() in 0.001123 seconds -[ 900s] Executed Test_blockwise_visual() in 0.000704 seconds -[ 900s] Executed Test_blockwise_visual_o_O() in 0.000666 seconds -[ 900s] Executed Test_characterwise_visual_mode() in 0.000741 seconds -[ 900s] Executed Test_characterwise_visual_with_count() in 0.095597 seconds -[ 900s] Executed Test_curswant_not_changed() in 0.000657 seconds -[ 900s] Executed Test_dotregister_paste() in 0.000545 seconds -[ 900s] Executed Test_exclusive_selection() in 0.000590 seconds -[ 900s] Executed Test_gv_with_exclusive_selection() in 0.000663 seconds -[ 900s] Executed Test_linewise_visual_with_count() in 0.027721 seconds -[ 900s] Executed Test_op_pend_mode_abort() in 0.000781 seconds -[ 900s] Executed Test_star_register() in 0.000565 seconds -[ 900s] Executed Test_ve_block_curpos() in 0.000587 seconds -[ 900s] Executed Test_virtual_replace() in 0.001179 seconds -[ 900s] Executed Test_virtual_replace2() in 0.000872 seconds -[ 900s] Executed Test_virtualedit_visual_block() in 0.000658 seconds -[ 900s] Executed Test_visual_area_adjusted_when_hiding() in 0.008025 seconds -[ 900s] Executed Test_visual_block_append_invalid_char() in 0.000616 seconds -[ 900s] Executed Test_visual_block_create() in 0.000633 seconds -[ 900s] Executed Test_visual_block_ctrl_w_f() in 0.000501 seconds -[ 900s] Executed Test_visual_block_insert_cursor_keys() in 0.000656 seconds -[ 900s] Executed Test_visual_block_insert_round_off() in 0.018541 seconds -[ 900s] Executed Test_visual_block_mode() in 0.001554 seconds -[ 900s] Executed Test_visual_block_put() in 0.000547 seconds -[ 900s] Executed Test_visual_block_with_substitute() in 0.000607 seconds -[ 900s] Executed Test_visual_block_with_virtualedit() in 0.176394 seconds -[ 900s] Executed Test_visual_block_yank_zy() in 0.000631 seconds -[ 900s] Executed Test_visual_change_case() in 0.000798 seconds -[ 900s] Executed Test_visual_ex_copy_line() in 0.000558 seconds -[ 900s] Executed Test_visual_exchange_windows() in 0.000751 seconds -[ 900s] Executed Test_visual_force_motion_feedkeys() in 0.000286 seconds -[ 900s] Executed Test_visual_inner_block() in 0.000603 seconds -[ 900s] Executed Test_visual_mode_maps() in 0.000854 seconds -[ 900s] Executed Test_visual_mode_op() in 0.000746 seconds -[ 900s] Executed Test_visual_mode_put() in 0.000694 seconds -[ 900s] Executed Test_visual_mode_reset() in 0.000403 seconds -[ 900s] Executed Test_visual_oper_pending_mode_maps() in 0.001091 seconds -[ 900s] Executed Test_visual_paste() in 0.000622 seconds -[ 900s] Skipped -[ 900s] Executed Test_visual_paste_clipboard() in 0.000285 seconds -[ 900s] Executed Test_visual_put_blockedit_zy_and_zp() in 0.000682 seconds -[ 900s] Executed Test_visual_put_in_block() in 0.000554 seconds -[ 900s] Executed Test_visual_put_in_block_using_zp() in 0.000652 seconds -[ 900s] Executed Test_visual_put_in_block_using_zy_and_zp() in 0.000879 seconds -[ 900s] Executed Test_visual_replace_crnl() in 0.000752 seconds -[ 900s] Executed Test_visual_reselect_with_count() in 0.138611 seconds -[ 900s] Executed Test_visual_undo_deletes_last_line() in 0.000820 seconds -[ 900s] Executed 56 tests in 0.606361 seconds -[ 900s] SKIPPED Test_visual_paste_clipboard(): clipboard_working feature missing -[ 900s] -[ 900s] From test_winbar.vim: -[ 900s] Executed Test_add_remove_menu() in 0.001354 seconds -[ 900s] Executed Test_click_in_other_winbar() in 0.001495 seconds -[ 900s] Executed Test_click_in_winbar() in 0.001790 seconds -[ 900s] Executed Test_drag_statusline_with_winbar() in 0.001034 seconds -[ 900s] Executed Test_redraw_after_scroll() in 0.001530 seconds -[ 900s] Executed Test_winbar_not_visible() in 0.155096 seconds -[ 900s] Executed Test_winbar_not_visible_custom_statusline() in 0.158349 seconds -[ 900s] Executed 7 tests in 0.429106 seconds -[ 900s] -[ 900s] From test_winbuf_close.vim: -[ 900s] Executed Test_tabwin_close() in 0.000642 seconds -[ 900s] Executed Test_winbuf_close() in 0.128385 seconds -[ 900s] Executed Test_window_close_splitright_noequalalways() in 0.000586 seconds -[ 900s] Executed Test_winfixheight_non_leaf_frame() in 0.000444 seconds -[ 900s] Executed Test_winfixheight_on_close() in 0.000314 seconds -[ 900s] Executed Test_winfixwidth_non_leaf_frame() in 0.000419 seconds -[ 900s] Executed Test_winfixwidth_on_close() in 0.000308 seconds -[ 900s] Executed 7 tests in 0.141541 seconds -[ 900s] -[ 900s] From test_window_cmd.vim: -[ 900s] Executed Test_access_freed_mem() in 0.001515 seconds -[ 900s] Executed Test_close_dest_window() in 0.000924 seconds -[ 900s] Executed Test_equalalways_on_close() in 0.000384 seconds -[ 900s] Executed Test_insert_cleared_on_switch_to_term() in 0.001822 seconds -[ 900s] Executed Test_next_split_all() in 0.000738 seconds -[ 900s] Executed Test_relative_cursor_position_after_move_and_resize() in 0.006614 seconds -[ 900s] Executed Test_relative_cursor_position_after_resize() in 0.004999 seconds -[ 900s] Executed Test_relative_cursor_position_in_one_line_window() in 0.005922 seconds -[ 900s] Executed Test_relative_cursor_second_line_after_resize() in 0.006061 seconds -[ 900s] Executed Test_split_cmd() in 0.000262 seconds -[ 900s] Executed Test_split_cmds_with_no_room() in 0.469955 seconds -[ 900s] Executed Test_split_noscroll() in 0.001019 seconds -[ 900s] Executed Test_visual_cleared_after_window_split() in 0.001226 seconds -[ 900s] Executed Test_win_move_separator() in 0.001526 seconds -[ 900s] Executed Test_win_move_statusline() in 0.001625 seconds -[ 900s] Executed Test_win_screenpos() in 0.000417 seconds -[ 900s] Executed Test_win_splitmove() in 0.002184 seconds -[ 900s] Executed Test_wincmd_errors() in 0.000406 seconds -[ 900s] Executed Test_wincmd_fails() in 0.000299 seconds -[ 900s] Executed Test_window_alloc_failure() in 0.003831 seconds -[ 900s] Executed Test_window_cmd_cmdwin_with_vsp() in 0.000712 seconds -[ 900s] Executed Test_window_cmd_ls0_with_split() in 0.000469 seconds -[ 900s] Executed Test_window_cmd_wincmd_gf() in 0.025465 seconds -[ 900s] Executed Test_window_colon_command() in 0.000389 seconds -[ 900s] Executed Test_window_contents() in 0.001302 seconds -[ 900s] Executed Test_window_exchange() in 0.001476 seconds -[ 900s] Executed Test_window_goto_neightbor() in 0.002928 seconds -[ 900s] Executed Test_window_height() in 0.001428 seconds -[ 900s] Executed Test_window_horizontal_split() in 0.000372 seconds -[ 900s] Executed Test_window_jump() in 0.000326 seconds -[ 900s] Executed Test_window_jump_tag() in 0.016792 seconds -[ 900s] Executed Test_window_minimal_size() in 1.126386 seconds -[ 900s] Executed Test_window_newtab() in 0.001463 seconds -[ 900s] Executed Test_window_only() in 0.000633 seconds -[ 900s] Executed Test_window_prevwin() in 1.995590 seconds -[ 900s] Executed Test_window_quit() in 0.001072 seconds -[ 900s] Executed Test_window_resize() in 0.000477 seconds -[ 900s] Executed Test_window_rotate() in 0.001318 seconds -[ 900s] Executed Test_window_split_edit_alternate() in 0.002085 seconds -[ 900s] Executed Test_window_split_edit_bufnr() in 0.002043 seconds -[ 900s] Executed Test_window_split_no_room() in 0.001410 seconds -[ 900s] Executed Test_window_vertical_split() in 0.000357 seconds -[ 900s] Executed Test_window_width() in 0.001436 seconds -[ 900s] Executed Test_window_width_adjust() in 0.000411 seconds -[ 900s] Executed Test_winnr() in 0.001109 seconds -[ 900s] Executed Test_winpos_errors() in 0.000348 seconds -[ 900s] Executed Test_winrestcmd() in 0.000626 seconds -[ 900s] Executed Test_winrestview() in 0.001249 seconds -[ 900s] Executed 48 tests in 3.806891 seconds -[ 900s] -[ 900s] From test_window_id.vim: -[ 900s] Executed Test_win_getid() in 0.002367 seconds -[ 900s] Executed Test_win_getid_curtab() in 0.000751 seconds -[ 900s] Executed Test_winlayout() in 0.000519 seconds -[ 900s] Executed 3 tests in 0.015967 seconds -[ 900s] -[ 900s] From test_windows_home.vim: -[ 900s] Skipped -[ 900s] NO tests executed -[ 900s] SKIPPED test_windows_home.vim: only works on MS-Windows -[ 900s] -[ 900s] From test_wordcount.vim: -[ 900s] Executed Test_wordcount() in 0.310574 seconds -[ 900s] Executed 1 test in 0.357541 seconds -[ 900s] -[ 900s] From test_writefile.vim: -[ 900s] Executed Test_backupcopy() in 1.653647 seconds -[ 900s] Executed Test_nowrite_quit_split() in 0.054854 seconds -[ 900s] Executed Test_patchmode() in 0.448590 seconds -[ 900s] Executed Test_read_write_bin() in 0.211317 seconds -[ 900s] Executed Test_readwrite_file_with_bom() in 2.003908 seconds -[ 900s] Executed Test_saveas() in 0.118116 seconds -[ 900s] Executed Test_wq_quitpre_autocommand() in 0.071978 seconds -[ 900s] Executed Test_write_acwrite_error() in 0.001722 seconds -[ 900s] Executed Test_write_autocmd_add_remove_lines() in 0.129185 seconds -[ 900s] Executed Test_write_autocmd_unloadbuf_lockmark() in 0.002108 seconds -[ 900s] Executed Test_write_backup_symlink() in 0.154594 seconds -[ 900s] Executed Test_write_binary_file() in 0.238487 seconds -[ 900s] Executed Test_write_errors() in 0.086650 seconds -[ 900s] Skipped -[ 900s] Executed Test_write_file_encoding() in 0.000902 seconds -[ 900s] Executed Test_write_file_mtime() in 1.541580 seconds -[ 900s] Executed Test_write_invalid_encoding() in 0.002325 seconds -[ 900s] Executed Test_write_pipe_to_cmd() in 0.023739 seconds -[ 900s] Executed Test_write_quit_split() in 0.113851 seconds -[ 900s] Executed Test_write_readonly() in 0.125148 seconds -[ 900s] Executed Test_write_readonly_dir() in 0.018833 seconds -[ 900s] Executed Test_write_utf16() in 0.037351 seconds -[ 900s] Executed Test_writefile() in 0.286003 seconds -[ 900s] Executed Test_writefile_autowrite() in 0.087129 seconds -[ 900s] Executed Test_writefile_autowrite_nowrite() in 0.004685 seconds -[ 900s] Executed Test_writefile_fails_conversion() in 0.501019 seconds -[ 900s] Executed Test_writefile_fails_conversion2() in 0.195678 seconds -[ 900s] Executed Test_writefile_fails_gently() in 0.000764 seconds -[ 900s] Executed Test_writefile_ignore_regexp_error() in 0.067534 seconds -[ 900s] Executed Test_writefile_sync_arg() in 0.089627 seconds -[ 900s] Executed Test_writefile_sync_dev_stdout() in 0.000779 seconds -[ 900s] Executed 30 tests in 8.347000 seconds -[ 900s] SKIPPED Test_write_file_encoding(): only works on MS-Windows -[ 900s] -[ 900s] From test_xxd.vim: -[ 900s] Executed Test_xxd() in 2.335125 seconds -[ 900s] Executed Test_xxd_bit_dump() in 0.004120 seconds -[ 900s] Executed Test_xxd_c0_is_def_cols() in 0.165151 seconds -[ 900s] Executed Test_xxd_ignore_garbage() in 0.004185 seconds -[ 900s] Executed Test_xxd_max_cols() in 0.034956 seconds -[ 900s] Executed Test_xxd_min_cols() in 0.057750 seconds -[ 900s] Executed Test_xxd_patch() in 0.255084 seconds -[ 900s] Executed Test_xxd_plain_one_line() in 0.072892 seconds -[ 900s] Executed Test_xxd_usage() in 0.030390 seconds -[ 900s] Executed Test_xxd_version() in 0.003981 seconds -[ 900s] Executed 10 tests in 3.047884 seconds -[ 900s] -[ 900s] From test_alot_latin.vim: -[ 900s] Executed Test_backref() in 0.000767 seconds -[ 900s] Executed Test_column_success_failure() in 0.000813 seconds -[ 900s] Executed Test_eow_with_optional() in 0.000312 seconds -[ 900s] Executed Test_equivalence_re1() in 0.117392 seconds -[ 900s] Executed Test_equivalence_re2() in 0.126302 seconds -[ 900s] Executed Test_get_equi_class() in 0.000620 seconds -[ 900s] Executed Test_lookbehind_across_line() in 0.000608 seconds -[ 900s] Executed Test_matching_curpos() in 0.037080 seconds -[ 900s] Executed Test_matching_marks() in 0.001006 seconds -[ 900s] Executed Test_matching_pos() in 0.003028 seconds -[ 900s] Executed Test_matching_visual_area() in 0.000966 seconds -[ 900s] Executed Test_matchstr_with_ze() in 0.000580 seconds -[ 900s] Executed Test_multi_failure() in 0.000359 seconds -[ 900s] Executed Test_nested_backrefs() in 0.000666 seconds -[ 900s] Executed Test_out_of_memory() in 0.004006 seconds -[ 900s] Executed Test_pattern_compile_speed() in 0.304783 seconds -[ 900s] Executed Test_range_with_newline() in 0.000698 seconds -[ 900s] Executed Test_recursive_addstate() in 0.017922 seconds -[ 900s] Executed Test_recursive_substitute() in 0.000684 seconds -[ 900s] Executed Test_recursive_substitute_expr() in 0.000604 seconds -[ 900s] Executed Test_regexp_error() in 0.000799 seconds -[ 900s] Executed Test_regexp_last_subst_string() in 0.000294 seconds -[ 900s] Executed Test_regexp_multiline_pat() in 0.034005 seconds -[ 900s] Executed Test_regexp_single_line_pat() in 0.196274 seconds -[ 900s] Executed Test_rex_init() in 0.000866 seconds -[ 900s] Executed Test_start_end_of_buffer_match() in 0.000937 seconds -[ 900s] Executed Test_using_invalid_visual_position() in 0.000560 seconds -[ 900s] Executed Test_using_mark_position() in 0.000865 seconds -[ 900s] Executed Test_using_two_engines_pattern() in 0.000673 seconds -[ 900s] Executed Test_using_visual_position() in 0.000528 seconds -[ 900s] Executed Test_ze_before_zs() in 0.000240 seconds -[ 900s] Executed 31 tests in 0.960452 seconds -[ 900s] -[ 900s] From test_alot_utf8.vim: -[ 900s] Executed Test_ambiwidth() in 0.000418 seconds -[ 900s] Executed Test_classes_re1() in 0.036951 seconds -[ 900s] Executed Test_classes_re2() in 0.028595 seconds -[ 900s] Executed Test_comparisons() in 0.080916 seconds -[ 900s] Executed Test_customlist_completion() in 0.000530 seconds -[ 900s] Executed Test_detect_ambiwidth() in 0.131554 seconds -[ 900s] Executed Test_equivalence_re1() in 0.611522 seconds -[ 900s] Executed Test_equivalence_re2() in 0.455244 seconds -[ 900s] Executed Test_gap() in 0.000869 seconds -[ 900s] Executed Test_getvcol() in 0.000557 seconds -[ 900s] Executed Test_large_class() in 0.000339 seconds -[ 900s] Executed Test_list2str_str2list_latin1() in 0.000345 seconds -[ 900s] Executed Test_list2str_str2list_utf8() in 0.000295 seconds -[ 900s] Executed Test_match_char_class_upper() in 0.001686 seconds -[ 900s] Executed Test_match_illegal_byte() in 0.187050 seconds -[ 900s] Executed Test_match_invalid_byte() in 0.051358 seconds -[ 900s] Executed Test_match_start_of_line_combining() in 0.000727 seconds -[ 900s] Executed Test_match_too_complicated() in 0.000508 seconds -[ 900s] Executed Test_matchstr_multibyte() in 0.000381 seconds -[ 900s] Executed Test_mksession_utf8() in 0.023283 seconds -[ 900s] Executed Test_multibyte_chars() in 0.029792 seconds -[ 900s] Executed Test_optmatch_toolong() in 0.001764 seconds -[ 900s] Executed Test_print_overlong() in 0.000705 seconds -[ 900s] Executed Test_read_fifo_utf8() in 0.164995 seconds -[ 900s] Executed Test_read_stdin_utf8() in 0.149338 seconds -[ 900s] Executed Test_recording_with_select_mode_utf8() in 0.001043 seconds -[ 900s] Executed Test_regexp_ignore_case() in 0.000377 seconds -[ 900s] Executed Test_regexp_multibyte_magic() in 0.002837 seconds -[ 900s] Executed Test_reversed_range() in 0.000510 seconds -[ 900s] Executed Test_screenchar_utf8() in 0.001049 seconds -[ 900s] Executed Test_search_cmds() in 0.000653 seconds -[ 900s] Executed Test_search_with_end_offset() in 0.000629 seconds -[ 900s] Executed Test_setcellwidths() in 0.000700 seconds -[ 900s] Executed Test_source_ctrl_v() in 0.083516 seconds -[ 900s] Executed Test_source_latin() in 0.104702 seconds -[ 900s] Executed Test_source_utf8() in 0.107741 seconds -[ 900s] Executed Test_split_multibyte_to_bytes() in 0.000554 seconds -[ 900s] Executed Test_strcharpart() in 0.000468 seconds -[ 900s] Executed Test_strchars() in 0.000520 seconds -[ 900s] Executed Test_strgetchar() in 0.000265 seconds -[ 900s] Executed Test_visual_block_insert() in 0.000618 seconds -[ 900s] Skipped -[ 900s] Executed Test_zz_recording_with_select_mode_utf8_gui() in 0.000280 seconds -[ 900s] Executed 42 tests in 2.377141 seconds -[ 900s] SKIPPED Test_zz_recording_with_select_mode_utf8_gui(): cannot start the GUI -[ 900s] -[ 900s] From test_alot.vim: -[ 900s] Executed Test_Ex_append() in 0.000762 seconds -[ 900s] Executed Test_Ex_echo_backslash() in 0.000491 seconds -[ 900s] Executed Test_Ex_emptybuf() in 0.000720 seconds -[ 900s] Executed Test_Ex_escape_enter() in 0.000390 seconds -[ 900s] Executed Test_Ex_global() in 0.000984 seconds -[ 900s] Executed Test_Ex_substitute() in 0.104365 seconds -[ 900s] Executed Test_backup() in 0.081555 seconds -[ 900s] Executed Test_backup2() in 0.052623 seconds -[ 900s] Executed Test_backup2_backupcopy() in 0.120527 seconds -[ 900s] Executed Test_backup_backupskip() in 0.165287 seconds -[ 900s] Executed Test_behave() in 0.000275 seconds -[ 900s] Executed Test_behave_completion() in 0.000327 seconds -[ 900s] Executed Test_behave_error() in 0.000279 seconds -[ 900s] Executed Test_caught_error_in_tabline() in 0.000476 seconds -[ 900s] Executed Test_compiler() in 0.116861 seconds -[ 900s] Executed Test_compiler_commandline() in 0.116846 seconds -[ 900s] Executed Test_compiler_completion() in 0.004116 seconds -[ 900s] Executed Test_compiler_error() in 0.000404 seconds -[ 900s] Executed Test_compiler_without_arg() in 0.003455 seconds -[ 900s] Executed Test_empty_command_visual_mode() in 0.079337 seconds -[ 900s] Executed Test_ex_equal() in 0.000763 seconds -[ 900s] Executed Test_ex_mode() in 0.886769 seconds -[ 900s] Executed Test_ex_mode_count_overflow() in 0.196176 seconds -[ 900s] Executed Test_ex_mode_errors() in 0.000765 seconds -[ 900s] Executed Test_ex_mode_large_indent() in 0.000725 seconds -[ 900s] Executed Test_ex_mode_with_global() in 0.133712 seconds -[ 900s] Executed Test_ex_shift_errors() in 0.000421 seconds -[ 900s] Executed Test_ex_shift_left() in 0.000772 seconds -[ 900s] Executed Test_ex_shift_right() in 0.000670 seconds -[ 900s] Executed Test_ex_shift_rightleft() in 0.000680 seconds -[ 900s] Executed Test_ex_undo() in 0.000905 seconds -[ 900s] Executed Test_existing() in 0.000298 seconds -[ 900s] Executed Test_expand() in 0.000387 seconds -[ 900s] Executed Test_expand_SID() in 0.000272 seconds -[ 900s] Executed Test_expand_filename_multicmd() in 0.001672 seconds -[ 900s] Executed Test_expand_luadll() in 0.000332 seconds -[ 900s] Executed Test_expand_perldll() in 0.000320 seconds -[ 900s] Executed Test_expand_pythonthreedll() in 0.000320 seconds -[ 900s] Executed Test_expand_rubydll() in 0.000308 seconds -[ 900s] Executed Test_expand_script_source() in 0.224735 seconds -[ 900s] Executed Test_expand_sfile_and_stack() in 0.031076 seconds -[ 900s] Executed Test_expand_sflnum() in 0.000299 seconds -[ 900s] Executed Test_expand_slnum() in 0.000278 seconds -[ 900s] Executed Test_expand_tilde_filename() in 0.000742 seconds -[ 900s] Executed Test_expand_wildignore() in 0.000369 seconds -[ 900s] Executed Test_expandcmd() in 0.007661 seconds -[ 900s] Executed Test_expandcmd_shell_nonomatch() in 0.001804 seconds -[ 900s] Executed Test_feedkeys_escape_special() in 0.000345 seconds -[ 900s] Executed Test_feedkeys_with_abbreviation() in 0.000774 seconds -[ 900s] Executed Test_feedkeys_x_with_empty_string() in 0.000666 seconds -[ 900s] Executed Test_file_perm() in 0.104565 seconds -[ 900s] Executed Test_fnamemodify() in 0.001641 seconds -[ 900s] Executed Test_fnamemodify_er() in 0.000393 seconds -[ 900s] Executed Test_fnamemodify_fail() in 0.000322 seconds -[ 900s] Executed Test_ga_command() in 0.001630 seconds -[ 900s] Executed Test_glob2regpat_invalid() in 0.082898 seconds -[ 900s] Executed Test_glob2regpat_valid() in 0.000314 seconds -[ 900s] Executed Test_global_error() in 0.000337 seconds -[ 900s] Executed Test_global_local_lispwords() in 0.000264 seconds -[ 900s] Executed Test_global_newline() in 0.000620 seconds -[ 900s] Executed Test_global_print() in 0.000911 seconds -[ 900s] Skipped -[ 900s] Executed Test_global_set_clipboard() in 0.000373 seconds -[ 900s] Executed Test_gp_with_count_leaves_cursor_at_end() in 0.000655 seconds -[ 900s] Executed Test_lisp_indent() in 0.001168 seconds -[ 900s] Executed Test_lisp_indent_works() in 0.000707 seconds -[ 900s] Executed Test_mouse_click_in_tab() in 0.038302 seconds -[ 900s] Executed Test_move() in 0.000910 seconds -[ 900s] Executed Test_multibyte_op_end_mark() in 0.000666 seconds -[ 900s] Executed Test_nested_global() in 0.000696 seconds -[ 900s] Executed Test_non_existing_backupdir() in 0.038523 seconds -[ 900s] Executed Test_not_existing() in 0.000307 seconds -[ 900s] Executed Test_open_command() in 0.000726 seconds -[ 900s] Executed Test_open_command_flush_line() in 0.000702 seconds -[ 900s] Executed Test_p_with_count_leaves_mark_at_end() in 0.000639 seconds -[ 900s] Executed Test_put_above_first_line() in 0.000622 seconds -[ 900s] Executed Test_put_block() in 0.000662 seconds -[ 900s] Executed Test_put_char_block() in 0.000800 seconds -[ 900s] Executed Test_put_char_block2() in 0.000657 seconds -[ 900s] Executed Test_put_empty_register() in 0.000680 seconds -[ 900s] Executed Test_put_expr() in 0.000780 seconds -[ 900s] Executed Test_put_fails_when_nomodifiable() in 0.000626 seconds -[ 900s] Executed Test_put_lines() in 0.000689 seconds -[ 900s] Executed Test_put_p_errmsg_nodup() in 0.000423 seconds -[ 900s] Executed Test_put_p_indent_visual() in 0.000665 seconds -[ 900s] Executed Test_put_visual_delete_all_lines() in 0.000607 seconds -[ 900s] Executed Test_put_visual_mode() in 0.000843 seconds -[ 900s] Executed Test_read_only() in 0.000310 seconds -[ 900s] Executed Test_redrawtabline() in 0.002279 seconds -[ 900s] Executed Test_reltime() in 0.010577 seconds -[ 900s] Executed Test_reset_scroll() in 0.000345 seconds -[ 900s] Executed Test_searchpos() in 0.000834 seconds -[ 900s] Executed Test_set_add() in 0.000286 seconds -[ 900s] Executed Test_set_backslash() in 0.000396 seconds -[ 900s] Executed Test_set_no_arg() in 0.000502 seconds -[ 900s] Executed Test_set_tagcase() in 0.000369 seconds -[ 900s] Executed Test_set_termcap() in 0.001858 seconds -[ 900s] Executed Test_sha256() in 0.003600 seconds -[ 900s] Executed Test_source_sfile() in 0.313951 seconds -[ 900s] Executed Test_tabline_20_format_items_no_overrun() in 0.000364 seconds -[ 900s] Executed Test_tabline_empty_group() in 0.000553 seconds -[ 900s] Executed Test_tabline_flags() in 0.001786 seconds -[ 900s] Executed Test_tabline_will_be_disabled_with_error() in 0.000447 seconds -[ 900s] Executed Test_tagcase() in 0.109207 seconds -[ 900s] Executed Test_tagfunc() in 0.019006 seconds -[ 900s] Executed Test_tagfunc_callback() in 0.216528 seconds -[ 900s] Executed Test_tagfunc_closes_window() in 0.000767 seconds -[ 900s] Executed Test_tagfunc_settagstack() in 0.033885 seconds -[ 900s] Executed Test_tagfunc_wipes_buffer() in 0.000503 seconds -[ 900s] Executed Test_unlet_complete() in 0.000478 seconds -[ 900s] Executed Test_unlet_env() in 0.007932 seconds -[ 900s] Executed Test_unlet_fails() in 0.000455 seconds -[ 900s] Executed Test_version() in 0.000758 seconds -[ 900s] Skipped -[ 900s] Executed Test_version_redirect() in 0.000320 seconds -[ 900s] Executed Test_very_large_count() in 0.000708 seconds -[ 900s] Executed Test_very_large_count_64bit() in 0.000691 seconds -[ 900s] Executed Test_very_large_count_block() in 0.000751 seconds -[ 900s] Executed Test_very_large_count_block_64bit() in 0.000721 seconds -[ 900s] Executed Test_with_directories() in 0.152149 seconds -[ 900s] Executed Test_with_tilde() in 0.000545 seconds -[ 900s] Executed Test_wnext() in 0.596440 seconds -[ 900s] Executed Test_wprevious() in 0.664286 seconds -[ 900s] Executed Test_wrong_delimiter() in 0.000298 seconds -[ 900s] Executed Test_yank_put_clipboard() in 0.000803 seconds -[ 900s] Executed Test_z() in 0.001191 seconds -[ 900s] Executed Test_z_bang() in 0.000609 seconds -[ 900s] Executed Test_z_negative_lnum() in 0.000319 seconds -[ 900s] Executed Test_z_overflow() in 0.000468 seconds -[ 900s] Executed 127 tests in 4.854848 seconds -[ 900s] SKIPPED Test_global_set_clipboard(): clipboard_working feature missing -[ 900s] SKIPPED Test_version_redirect(): cannot start the GUI -[ 900s] ../vim -u NONE -U NONE --noplugin --not-a-term -S summarize.vim messages --cmd 'au SwapExists * let v:swapchoice = "e"' | LC_ALL=C LANG=C LANGUAGE=C awk '/Executing Test_/{match($0, "Executing Test_[^\\)]*\\)"); print substr($0, RSTART, RLENGTH) "\r"; fflush()}' -[ 900s] -[ 900s] Test results: -[ 900s] -[ 900s] Skipped: -[ 900s] test_balloon_gui.vim: only works in the GUI -[ 900s] Test_buffer_scheme(): only works on MS-Windows -[ 900s] test_clientserver.vim: clientserver feature missing -[ 900s] Test_fuzzy_completion_menu(): only works in the GUI -[ 900s] Test_crypt_sodium(): sodium feature missing -[ 900s] Test_head_only_4(): sodium feature missing -[ 900s] Test_uncrypt_xchacha20(): sodium feature missing -[ 900s] Test_uncrypt_xchacha20_2(): sodium feature missing -[ 900s] Test_uncrypt_xchacha20_3_persistent_undo(): sodium feature missing -[ 900s] Test_uncrypt_xchacha20_invalid(): sodium feature missing -[ 900s] test_cscope.vim: cscope program not executable -[ 900s] Test_Backtrace_Autocmd(): Your CWD has too many characters -[ 900s] Test_Backtrace_CmdLine(): Your CWD has too many characters -[ 900s] Test_Backtrace_DefFunction(): Your CWD has too many characters -[ 900s] Test_Backtrace_Through_Source(): Your CWD has too many characters -[ 900s] Test_DefFunction_expr(): Your CWD has too many characters -[ 900s] Test_debug_backtrace_level(): Your CWD has too many characters -[ 900s] Test_debug_def_and_legacy_function(): Your CWD has too many characters -[ 900s] Test_debug_def_function(): Your CWD has too many characters -[ 900s] Test_debug_def_function_with_lambda(): Your CWD has too many characters -[ 900s] Test_edit_CTRL_hat(): xim feature missing -[ 900s] Test_edit_DROP(): dnd feature missing -[ 900s] Test_edit_shift_bs(): only works on MS-Windows -[ 900s] Test_mac_locale(): osxdarwin feature missing -[ 900s] Test_balloon_show(): balloon_eval feature missing -[ 900s] Test_browse(): browse feature missing -[ 900s] Test_browsedir(): browse feature missing -[ 900s] Test_executable_longname(): only works on MS-Windows -[ 900s] Test_executable_windows_store_apps(): only works on MS-Windows -[ 900s] Test_readdirex_sort(): de_DE collation is not available -[ 900s] Test_resolve_win32(): only works on MS-Windows -[ 900s] test_gui.vim: cannot start the GUI -[ 900s] test_gui_init.vim: cannot start the GUI -[ 900s] Test_xxlast_highlight_RGB_color(): cannot start the GUI -[ 900s] Test_getimstatus(): xim feature missing -[ 900s] Test_iminsert_toggle(): only works in the GUI -[ 900s] Test_ins_completeslash(): only works on MS-Windows -[ 900s] Test_issue_7021(): only works on MS-Windows -[ 900s] test_memory_usage.vim: ps program missing -[ 900s] Test_menu_icon(): toolbar feature missing -[ 900s] Test_mksession_winpos(): only works in the GUI -[ 900s] Test_modeless_characterwise_selection(): clipboard_working feature missing -[ 900s] Test_modeless_line_selection(): clipboard_working feature missing -[ 900s] Test_modeless_word_selection(): clipboard_working feature missing -[ 900s] Test_modeline_fails_always(): imstyle option not supported -[ 900s] Test_modeline_fails_modelineexpr(): guitablabel option not supported -[ 900s] test_mzscheme.vim: mzscheme feature missing -[ 900s] Test_normal35_g_cmd4(): output of g< can't be tested currently -[ 900s] Test_normal_changecase_turkish(): Turkish locale not available -[ 900s] Test_opt_cdhome(): only works on non-Unix -[ 900s] Test_bind_in_python(): python feature missing -[ 900s] Test_paste_clipboard(): clipboard_working feature missing -[ 900s] Test_xrestore(): xterm_clipboard feature missing -[ 900s] Test_popup_and_preview_autocommand(): python feature missing -[ 900s] Test_popup_select(): clipboard_working feature missing -[ 900s] test_python2.vim: python feature missing -[ 900s] test_pyx2.vim: python feature missing -[ 900s] test_quotestar.vim: clipboard_working feature missing -[ 900s] Test_clipboard_nul(): clipboard_working feature missing -[ 900s] Test_clipboard_regs(): clipboard_working feature missing -[ 900s] Test_shellslash(): shellslash option not supported -[ 900s] test_shortpathname.vim: only works on MS-Windows -[ 900s] test_sound.vim: sound feature missing -[ 900s] Test_background_foreground(): cannot start the GUI -[ 900s] Test_echo_wid(): cannot start the GUI -[ 900s] Test_font(): cannot start the GUI -[ 900s] Test_geometry(): cannot start the GUI -[ 900s] Test_iconic(): cannot start the GUI -[ 900s] Test_reverse(): cannot start the GUI -[ 900s] Test_win32_symlink_dir(): only works on MS-Windows -[ 900s] Test_swap_group(): need at least two groups, got ['abuild'] -[ 900s] Test_system_with_shell_quote(): only works on MS-Windows -[ 900s] Test_tabline_tabmenu(): only works in the GUI -[ 900s] test_tcl.vim: tcl feature missing -[ 900s] Test_term_mouse_middle_click(): clipboard_working feature missing -[ 900s] Test_term_mouse_middle_click_in_cmdline_to_paste(): clipboard_working feature missing -[ 900s] Test_term_mouse_middle_click_insert_mode(): clipboard_working feature missing -[ 900s] Test_terminal_eof_arg_win32_ctrl_z(): only works on MS-Windows -[ 900s] Test_terminal_servername(): clientserver feature missing -[ 900s] Test_zz1_terminal_in_gui(): cannot start the GUI -[ 900s] Test_term_modeless_selection(): clipboard_working feature missing -[ 900s] Test_timer_peek_and_get_char(): only works in the GUI -[ 900s] Test_balloon_show(): only works in the GUI -[ 900s] Test_browse(): browse feature missing -[ 900s] Test_debugbreak(): only works on MS-Windows -[ 900s] Test_mzeval(): mzscheme feature missing -[ 900s] Test_pyeval(): python feature missing -[ 900s] Test_remote_expr(): clientserver feature missing -[ 900s] Test_remote_foreground(): clientserver feature missing -[ 900s] Test_remote_peek(): clientserver feature missing -[ 900s] Test_remote_read(): clientserver feature missing -[ 900s] Test_remote_send(): clientserver feature missing -[ 900s] Test_remote_startserver(): clientserver feature missing -[ 900s] Test_server2client(): clientserver feature missing -[ 900s] Test_sound_playevent(): sound feature missing -[ 900s] Test_sound_playfile(): sound feature missing -[ 900s] Test_sound_stop(): sound feature missing -[ 900s] Test_term_setansicolors(): Only works with termguicolors or gui feature -[ 900s] Test_test_gui_event(): only works in the GUI -[ 900s] Test_vim9_comment_gui(): cannot start the GUI -[ 900s] Test_visual_paste_clipboard(): clipboard_working feature missing -[ 900s] test_windows_home.vim: only works on MS-Windows -[ 900s] Test_write_file_encoding(): only works on MS-Windows -[ 900s] Test_zz_recording_with_select_mode_utf8_gui(): cannot start the GUI -[ 900s] Test_global_set_clipboard(): clipboard_working feature missing -[ 900s] Test_version_redirect(): cannot start the GUI -[ 900s] -[ 900s] ------------------------------- -[ 900s] Executed: 5214 Tests -[ 900s] Skipped: 106 Tests -[ 900s] Failed: 0 Tests -[ 900s] -[ 900s] ALL DONE -[ 900s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src/testdir' -[ 900s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/src' -[ 900s] make[1]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90' -[ 900s] cd runtime/indent && \ -[ 900s] make clean && \ -[ 900s] make test VIM="../../src/vim" -[ 900s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/indent' -[ 900s] rm -f testdir/*.fail testdir/*.out -[ 900s] make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/indent' -[ 900s] make[2]: Entering directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/indent' -[ 900s] VIMRUNTIME=.. ../../src/vim --clean --not-a-term -u testdir/runtest.vim -[ 901s] "testdir/html.in" [?25l "testdir/html.in" 77L, 907B"testdir/html.out" "testdir/html.out" [New] 77L, 1024B written -[ 901s] Test testdir/html.in OK -[ 901s] "testdir/krl.in"  "testdir/krl.in" 148L, 1914B"testdir/krl.out" "testdir/krl.out" [New] 148L, 2292B written -[ 901s] Test testdir/krl.in OK -[ 901s] "testdir/matlab.in"  "testdir/matlab.in" 89L, 935B"testdir/matlab.out" "testdir/matlab.out" [New] 89L, 1035B written -[ 901s] Test testdir/matlab.in OK -[ 901s] "testdir/sshconfig.in"  "testdir/sshconfig.in" 53L, 630B"testdir/sshconfig.out" "testdir/sshconfig.out" [New] 53L, 682B written -[ 901s] Test testdir/sshconfig.in OK -[ 901s] "testdir/tcl.in"  "testdir/tcl.in" [noeol] 19L, 342B"testdir/tcl.out" "testdir/tcl.out" [New] 19L, 403B written -[ 901s] Test testdir/tcl.in OK -[ 901s] "testdir/vim.in"  "testdir/vim.in" 106L, 1088B"testdir/vim.out" "testdir/vim.out" [New] 106L, 1185B written -[ 901s] Test testdir/vim.in OK -[ 901s] "testdir/xml.in"  "testdir/xml.in" 32L, 437B"testdir/xml.out" "testdir/xml.out" [New] 32L, 709B written -[ 901s] Test testdir/xml.in OK -[ 901s] "testdir/yaml.in"  "testdir/yaml.in" 20L, 202B"testdir/yaml.out" "testdir/yaml.out" [New] 20L, 214B written -[ 901s] Test testdir/yaml.in OK -[ 901s]  -[ 901s] [?25hmake[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90/runtime/indent' -[ 901s] make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/vim90' -[ 901s] + RPM_EC=0 -[ 901s] ++ jobs -p -[ 901s] + exit 0 -[ 901s] Processing files: vim-common-9.0-1.oe2203.aarch64 -[ 901s] Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.KIurK2 -[ 901s] + umask 022 -[ 901s] + cd /home/abuild/rpmbuild/BUILD -[ 901s] + cd vim90 -[ 901s] + DOCDIR=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/doc/vim-common -[ 901s] + export LC_ALL=C -[ 901s] + LC_ALL=C -[ 901s] + export DOCDIR -[ 901s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/doc/vim-common -[ 901s] + cp -pr README.md README.txt README_VIM9.md README_ami.txt README_amibin.txt README_amisrc.txt README_bindos.txt README_dos.txt README_extra.txt README_mac.txt README_ole.txt README_os2.txt README_os390.txt README_src.txt README_srcdos.txt README_unix.txt README_vms.txt README_w32s.txt /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/doc/vim-common -[ 901s] + cp -pr runtime/docs /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/doc/vim-common -[ 901s] + RPM_EC=0 -[ 901s] ++ jobs -p -[ 901s] + exit 0 -[ 901s] Executing(%license): /bin/sh -e /var/tmp/rpm-tmp.eIA6iU -[ 901s] + umask 022 -[ 901s] + cd /home/abuild/rpmbuild/BUILD -[ 901s] + cd vim90 -[ 901s] + LICENSEDIR=/home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/licenses/vim-common -[ 901s] + export LC_ALL=C -[ 901s] + LC_ALL=C -[ 901s] + export LICENSEDIR -[ 901s] + /usr/bin/mkdir -p /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/licenses/vim-common -[ 901s] + cp -pr LICENSE /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64/usr/share/licenses/vim-common -[ 901s] + RPM_EC=0 -[ 901s] ++ jobs -p -[ 901s] + exit 0 -[ 902s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 908s] Provides: config(vim-common) = 2:9.0-1.oe2203 vim-common = 2:9.0-1.oe2203 vim-common(aarch-64) = 2:9.0-1.oe2203 -[ 908s] Requires(interp): /bin/sh -[ 908s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 908s] Requires: /bin/sh libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.34)(64bit) rtld(GNU_HASH) -[ 908s] Conflicts: man-pages-fr < 0.9.7-14 man-pages-it < 0.3.0-17 man-pages-pl < 0.24-2 vim-minimal < 8.0.1428-4 -[ 908s] Processing files: vim-minimal-9.0-1.oe2203.aarch64 -[ 908s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 908s] Provides: /usr/bin/vi config(vim-minimal) = 2:9.0-1.oe2203 vi = 9.0-1.oe2203 vim-minimal = 2:9.0-1.oe2203 vim-minimal(aarch-64) = 2:9.0-1.oe2203 -[ 908s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 908s] Requires: ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libacl.so.1()(64bit) libacl.so.1(ACL_1.0)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libselinux.so.1()(64bit) libselinux.so.1(LIBSELINUX_1.0)(64bit) libtinfo.so.6()(64bit) rtld(GNU_HASH) -[ 908s] Conflicts: vim-common < 8.0.1428-4 -[ 908s] Processing files: vim-enhanced-9.0-1.oe2203.aarch64 -[ 908s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 908s] Provides: /usr/bin/mergetool /usr/bin/vim vim = 9.0-1.oe2203 vim-enhanced = 2:9.0-1.oe2203 vim-enhanced(aarch-64) = 2:9.0-1.oe2203 -[ 908s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 908s] Requires: /bin/sh ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libacl.so.1()(64bit) libacl.so.1(ACL_1.0)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libgpm.so.2()(64bit) libm.so.6()(64bit) libm.so.6(GLIBC_2.17)(64bit) libm.so.6(GLIBC_2.29)(64bit) libselinux.so.1()(64bit) libselinux.so.1(LIBSELINUX_1.0)(64bit) libtinfo.so.6()(64bit) rtld(GNU_HASH) -[ 908s] Suggests: lua-libs perl(:MODULE_COMPAT_5.34.0) perl-devel perl-libs python3 python3-libs ruby ruby-libs -[ 908s] Processing files: vim-filesystem-9.0-1.oe2203.noarch -[ 908s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 908s] Provides: vim-filesystem = 2:9.0-1.oe2203 -[ 908s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 908s] Processing files: vim-X11-9.0-1.oe2203.aarch64 -[ 908s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 908s] Provides: /usr/bin/gvim /usr/bin/mergetool application() application(gvim.desktop) gvim = 9.0-1.oe2203 metainfo() metainfo(gvim.appdata.xml) mimehandler(application/x-shellscript) mimehandler(text/english) mimehandler(text/plain) mimehandler(text/x-c) mimehandler(text/x-c++) mimehandler(text/x-c++hdr) mimehandler(text/x-c++src) mimehandler(text/x-chdr) mimehandler(text/x-csrc) mimehandler(text/x-java) mimehandler(text/x-makefile) mimehandler(text/x-moc) mimehandler(text/x-pascal) mimehandler(text/x-tcl) mimehandler(text/x-tex) vim-X11 = 2:9.0-1.oe2203 vim-X11(aarch-64) = 2:9.0-1.oe2203 -[ 908s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 908s] Requires: /bin/sh ld-linux-aarch64.so.1()(64bit) ld-linux-aarch64.so.1(GLIBC_2.17)(64bit) libICE.so.6()(64bit) libSM.so.6()(64bit) libX11.so.6()(64bit) libXt.so.6()(64bit) libacl.so.1()(64bit) libacl.so.1(ACL_1.0)(64bit) libc.so.6()(64bit) libc.so.6(GLIBC_2.17)(64bit) libc.so.6(GLIBC_2.28)(64bit) libc.so.6(GLIBC_2.33)(64bit) libc.so.6(GLIBC_2.34)(64bit) libcairo.so.2()(64bit) libgdk-3.so.0()(64bit) libgdk_pixbuf-2.0.so.0()(64bit) libgio-2.0.so.0()(64bit) libglib-2.0.so.0()(64bit) libgobject-2.0.so.0()(64bit) libgpm.so.2()(64bit) libgtk-3.so.0()(64bit) libm.so.6()(64bit) libm.so.6(GLIBC_2.17)(64bit) libm.so.6(GLIBC_2.29)(64bit) libpango-1.0.so.0()(64bit) libpangocairo-1.0.so.0()(64bit) libselinux.so.1()(64bit) libselinux.so.1(LIBSELINUX_1.0)(64bit) libtinfo.so.6()(64bit) rtld(GNU_HASH) -[ 908s] Suggests: lua-libs perl(:MODULE_COMPAT_5.34.0) perl-devel perl-libs python3 python3-libs ruby ruby-libs -[ 908s] Processing files: vim-debuginfo-9.0-1.oe2203.aarch64 -[ 908s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 909s] Provides: vim-debuginfo = 2:9.0-1.oe2203 vim-debuginfo(aarch-64) = 2:9.0-1.oe2203 -[ 909s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 909s] Recommends: vim-debugsource(aarch-64) = 2:9.0-1.oe2203 -[ 909s] Processing files: vim-debugsource-9.0-1.oe2203.aarch64 -[ 909s] Generating digest list: /usr/lib/rpm/brp-digest-list /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 909s] Provides: vim-debugsource = 2:9.0-1.oe2203 vim-debugsource(aarch-64) = 2:9.0-1.oe2203 -[ 909s] Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 -[ 909s] Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 910s] Wrote: /home/abuild/rpmbuild/SRPMS/vim-9.0-1.oe2203.src.rpm -[ 911s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-debugsource-9.0-1.oe2203.aarch64.rpm -[ 912s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-X11-9.0-1.oe2203.aarch64.rpm -[ 912s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-minimal-9.0-1.oe2203.aarch64.rpm -[ 912s] Wrote: /home/abuild/rpmbuild/RPMS/noarch/vim-filesystem-9.0-1.oe2203.noarch.rpm -[ 913s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-enhanced-9.0-1.oe2203.aarch64.rpm -[ 914s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-common-9.0-1.oe2203.aarch64.rpm -[ 915s] Wrote: /home/abuild/rpmbuild/RPMS/aarch64/vim-debuginfo-9.0-1.oe2203.aarch64.rpm -[ 915s] Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.q7d9xO -[ 915s] + umask 022 -[ 915s] + cd /home/abuild/rpmbuild/BUILD -[ 915s] + cd vim90 -[ 915s] + /usr/bin/rm -rf /home/abuild/rpmbuild/BUILDROOT/vim-9.0-1.oe2203.aarch64 -[ 916s] + RPM_EC=0 -[ 916s] ++ jobs -p -[ 916s] + exit 0 -[ 916s] ... checking for files with abuild user/group -[ 916s] -[ 916s] localhost.localdomain finished "build vim.spec" at Thu Nov 3 06:57:53 UTC 2022. -[ 916s] - -/data/wangjiang/root_1/home/abuild/rpmbuild/SRPMS/vim-9.0-1.oe2203.src.rpm - -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/noarch/vim-filesystem-9.0-1.oe2203.noarch.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-enhanced-9.0-1.oe2203.aarch64.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-common-9.0-1.oe2203.aarch64.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-debugsource-9.0-1.oe2203.aarch64.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-X11-9.0-1.oe2203.aarch64.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-debuginfo-9.0-1.oe2203.aarch64.rpm -/data/wangjiang/root_1/home/abuild/rpmbuild/RPMS/aarch64/vim-minimal-9.0-1.oe2203.aarch64.rpm diff --git a/vim.spec b/vim.spec index a428e2e..144d513 100644 --- a/vim.spec +++ b/vim.spec @@ -12,7 +12,7 @@ Name: vim Epoch: 2 Version: 9.0 -Release: 2 +Release: 3 Summary: Vim is a highly configurable text editor for efficiently creating and changing any kind of text. License: Vim and MIT URL: http://www.vim.org @@ -73,6 +73,7 @@ Patch6043: backport-CVE-2022-3297.patch Patch6044: backport-9.0.0581-adding-a-character-for-incsearch-fails-at-end-of-line.patch Patch6045: backport-CVE-2022-3324.patch Patch6046: backport-CVE-2022-3705.patch +Patch6047: backport-CVE-2022-4141.patch Patch9000: bugfix-rm-modify-info-version.patch Patch9001: vim-Add-sw64-architecture.patch @@ -473,6 +474,12 @@ LC_ALL=en_US.UTF-8 make -j1 test %{_mandir}/man1/evim.* %changelog +* Mon Nov 28 2022 wangjiang - 2:9.0-3 +- Type:CVE +- ID:CVE-2022-4141 +- SUG:NA +- DESC:fix CVE-2022-4141 and delete irrelevant log file + * Thu Nov 10 2022 wuzx - 2:9.0-2 - Type:feature - CVE:NA -- Gitee