acpica-tools/tests/test_grammar2.yml
Al Stone 69fdad5b24 Start adding in CI tests with some basic smoke tests
Signed-off-by: Al Stone <ahs3@redhat.com>
2018-08-08 09:20:02 -06:00

29 lines
698 B
YAML

- hosts: localhost
vars:
- artifacts: ./artifacts
tags:
- classic
remote_user: root
tasks:
- name: grammar2
block:
- name: run the grammar2 test
shell: exec > /tmp/grammar2.test.log 2>&1 && ./grammar2/runtest.sh
always:
- name: pull out logs
fetch:
dest: "{{ artifacts }}/"
src: "/tmp/grammar2.test.log"
flat: yes
- name: pull out expected
fetch:
dest: "{{ artifacts }}/"
src: "./grammar2/grammar2.asl.expected"
flat: yes
- name: pull out actual
fetch:
dest: "{{ artifacts }}/"
src: "./grammar2/grammar2.asl.actual"
flat: yes