Bring tests/ over from Brew dist-git

Signed-off-by: Vladis Dronov <vdronov@redhat.com>
This commit is contained in:
Vladis Dronov 2023-03-23 12:48:23 +01:00
parent d7def41958
commit 03285bf5a3
3 changed files with 62 additions and 0 deletions

2
tests/README Normal file
View File

@ -0,0 +1,2 @@
initial tests:
run make check in src, which runs any selftests in the upstream source tarball

8
tests/smoke/runtest.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
cd ../source
aclocal
autoheader
autoconf
automake --add-missing
export CSCOPE_BINARY=/usr/bin/cscope
./configure && make check

52
tests/tests.yml Normal file
View File

@ -0,0 +1,52 @@
---
- hosts: localhost
tags:
- classic
tasks:
- name: Add executor host
add_host:
name: executor
ansible_connection: local
ansible_host: 127.0.0.1
ansible_ssh_connection: local
- name: Install build requires
delegate_to: executor
shell: dnf -y install autoconf automake
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-source
- hosts: localhost
tags:
- classic
tasks:
- name: Copy spec file to remote machine
copy:
src: "{{ playbook_dir }}/../cscope.spec"
dest: /tmp/cscope.spec
- name: Install build deps
shell: dnf -y build-dep /tmp/cscope.spec
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-basic
tests:
- smoke
required_packages:
- autoconf
- automake
- pkgconf-pkg-config
- ncurses-devel
- flex
- bison
- m4
- gcc
- sed
- make