view ci/load-snd-dummy.sh @ 24814:4c5eec1ef612 v8.2.2945

patch 8.2.2945: some buffer related code is not tested Commit: https://github.com/vim/vim/commit/59b262362f26b3aaea1eeb0078adc33eed59863e Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Jun 5 20:59:22 2021 +0200 patch 8.2.2945: some buffer related code is not tested Problem: Some buffer related code is not tested. Solution: Add a few more tests. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/8320)
author Bram Moolenaar <Bram@vim.org>
date Sat, 05 Jun 2021 21:00:04 +0200
parents 3a7017ee1161
children
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-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi