acpica-tools/tests/test_grammar.yml
Al Stone b7f2c45191 Update CI tests, now that I can demonstrate they work correctly
Signed-off-by: Al Stone <ahs3@redhat.com>
2019-07-02 14:58:14 -06:00

29 lines
678 B
YAML

- hosts: localhost
vars:
- artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
tags:
- classic
roles:
- role: standard-test-basic
tests:
- grammar
required_packages:
- acpica-tools
remote_user: root
tasks:
- name: grammar
block:
- name: run the grammar test
shell: exec > /tmp/grammar.test.log 2>&1 && ./grammar/runtest.sh
always:
- name: pull out results
fetch:
dest: "{{ artifacts }}/"
src: "{{ item }}"
flat: yes
with_items:
- /tmp/grammar.test.log
- ./grammar/grammar.asl.expected
- ./grammar/grammar.asl.actual