view ci/load-snd-dummy.sh @ 21257:34a0f73226d9 v8.2.1179

patch 8.2.1179: Test_termwinscroll() sometimes hangs in the GUI Commit: https://github.com/vim/vim/commit/f65927fc8d0102ef2d0fea776381caedf4c51e32 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 11 14:04:28 2020 +0200 patch 8.2.1179: Test_termwinscroll() sometimes hangs in the GUI Problem: Test_termwinscroll() sometimes hangs in the GUI. Solution: Skip the test in the GUI.
author Bram Moolenaar <Bram@vim.org>
date Sat, 11 Jul 2020 14:15:04 +0200
parents c94c103e7cb4
children 3a7017ee1161
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt install -y "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi