Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Jaroslav Kysela
405ecb25d5 add simple tests 2020-03-03 10:58:07 +01:00
Jaroslav Kysela
f92d878201 updated to 1.2.2 2020-02-19 17:20:17 +01:00
4 changed files with 29 additions and 3 deletions

View file

@ -5,8 +5,8 @@
%endif
Name: alsa-plugins
Version: 1.2.1
Release: 2%{?dist}
Version: 1.2.2
Release: 1%{?dist}
Summary: The Advanced Linux Sound Architecture (ALSA) Plugins
# All packages are LGPLv2+ with the exception of samplerate which is GPLv2+
# pph plugin is BSD-like licensed
@ -256,6 +256,9 @@ find %{buildroot} -name "*.la" -exec rm {} \;
%changelog
* Wed Feb 19 2020 Jaroslav Kysela <perex@perex.cz> - 1.2.2-1
- Updated to 1.2.2
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

View file

@ -1 +1 @@
SHA512 (alsa-plugins-1.2.1.tar.bz2) = a49ef9290b66855112e301a5fd5a0932f13a50254e164f3340f2b342a36469532ee783beabfe5e95870dbf4cd81ca1e8d0415d94c8c7ee963133fb3c343721de
SHA512 (alsa-plugins-1.2.2.tar.bz2) = 25a7dfaa64be024447d889b5cde668f1308d197f54880548a82d50beb4ac0dbff33b415da1e26dc5229408c934247a9bd38acfb0f82ca388deac0d77ab3cdadb

12
tests/run_tests.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
set -ex
# create patest user
adduser patest
# run pulseaudio daemon
su - patest -c "pulseaudio --start --log-target=stderr"
# run pulseaudio test (null sink)
su - patest -c "speaker-test -D pulse -l 1"

11
tests/tests.yml Normal file
View file

@ -0,0 +1,11 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
required_packages:
- pulseaudio
tests:
- simple:
dir: .
run: ./run_tests.sh