view ci/load-snd-dummy.sh @ 20388:83f390b19223 v8.2.0749

patch 8.2.0749: TERM signal test fails on FreeBSD Commit: https://github.com/vim/vim/commit/55ba4b844f1b0e44f0f2e1bd14d26e7ad2df9ffc Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 13 16:53:49 2020 +0200 patch 8.2.0749: TERM signal test fails on FreeBSD Problem: TERM signal test fails on FreeBSD. Solution: Do not check the messages, the may appear anywhere. (Dominique Pelle, closes #6075)
author Bram Moolenaar <Bram@vim.org>
date Wed, 13 May 2020 17:00: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