Skip to content

Instantly share code, notes, and snippets.

@apahim
Created October 23, 2015 04:04
Show Gist options
  • Save apahim/ddc8b105095aed5a593a to your computer and use it in GitHub Desktop.
Save apahim/ddc8b105095aed5a593a to your computer and use it in GitHub Desktop.
[asegundo@x240 avocado]$ avocado run /bin/true /bin/false
JOB ID : d5756b551f4d3d49e597611a357e9634f4b2359d
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.00-d5756b5/job.log
TESTS : 2
(1/2) /bin/true: PASS (0.01 s)
(2/2) /bin/false: FAIL (0.02 s)
RESULTS : PASS 1 | ERROR 0 | FAIL 1 | SKIP 0 | WARN 0 | INTERRUPT 0
TIME : 0.03 s
[asegundo@x240 avocado]$ avocado run --replay d575
JOB ID : 4bdbc261148c38a81441075a66081e1d6751ba74
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.00-4bdbc26/job.log
TESTS : 2
(1/2) /bin/true: PASS (0.01 s)
(2/2) /bin/false: FAIL (0.02 s)
RESULTS : PASS 1 | ERROR 0 | FAIL 1 | SKIP 0 | WARN 0 | INTERRUPT 0
TIME : 0.02 s
[asegundo@x240 avocado]$ avocado run --replay d575 --replay-test-status FAIL
JOB ID : 1fc86b951f0af5405394df01add5ab0ae84cca18
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.01-1fc86b9/job.log
TESTS : 2
(1/2) /bin/false: FAIL (0.01 s)
RESULTS : PASS 0 | ERROR 0 | FAIL 1 | SKIP 1 | WARN 0 | INTERRUPT 0
TIME : 0.01 s
[asegundo@x240 avocado]$ avocado run --replay d575 --replay-test-status PASS
JOB ID : cf9ca39cd6358b96e062bae953433ca02ba01c53
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.01-cf9ca39/job.log
TESTS : 2
(1/2) /bin/true: PASS (0.01 s)
RESULTS : PASS 1 | ERROR 0 | FAIL 0 | SKIP 1 | WARN 0 | INTERRUPT 0
TIME : 0.01 s
(here, informing --multiplex, --replay-test-status has no effect)
[asegundo@x240 avocado]$ avocado run --replay d575 --replay-test-status FAIL --multiplex /home/asegundo/devel/up/apahim-avocado/examples/mux-selftest.yaml
JOB ID : 6a506979641ad731443289324839d3dd740d362a
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.01-6a50697/job.log
TESTS : 24
(1/24) /bin/true.variant1: PASS (0.01 s)
(2/24) /bin/true.variant2: PASS (0.01 s)
(3/24) /bin/true.variant3: PASS (0.01 s)
(4/24) /bin/true.variant4: PASS (0.01 s)
(5/24) /bin/true.variant5: PASS (0.02 s)
(6/24) /bin/true.variant6: PASS (0.01 s)
(7/24) /bin/true.variant7: PASS (0.01 s)
(8/24) /bin/true.variant8: PASS (0.01 s)
(9/24) /bin/true.variant9: PASS (0.01 s)
(10/24) /bin/true.variant10: PASS (0.01 s)
(11/24) /bin/true.variant11: PASS (0.01 s)
(12/24) /bin/true.variant12: PASS (0.01 s)
(13/24) /bin/false.variant1: FAIL (0.01 s)
(14/24) /bin/false.variant2: FAIL (0.01 s)
(15/24) /bin/false.variant3: FAIL (0.01 s)
(16/24) /bin/false.variant4: FAIL (0.01 s)
(17/24) /bin/false.variant5: FAIL (0.01 s)
(18/24) /bin/false.variant6: FAIL (0.01 s)
(19/24) /bin/false.variant7: FAIL (0.01 s)
(20/24) /bin/false.variant8: FAIL (0.01 s)
(21/24) /bin/false.variant9: FAIL (0.01 s)
(22/24) /bin/false.variant10: FAIL (0.01 s)
(23/24) /bin/false.variant11: FAIL (0.01 s)
(24/24) /bin/false.variant12: FAIL (0.02 s)
RESULTS : PASS 12 | ERROR 0 | FAIL 12 | SKIP 0 | WARN 0 | INTERRUPT 0
TIME : 0.27 s
[asegundo@x240 avocado]$ avocado run --replay d575 --replay-test-status PASS FAIL
JOB ID : 873c2e6e279378bf34b3bb9d4bed21ba40048550
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-23T02.02-873c2e6/job.log
TESTS : 2
(1/2) /bin/true: PASS (0.01 s)
(2/2) /bin/false: FAIL (0.01 s)
RESULTS : PASS 1 | ERROR 0 | FAIL 1 | SKIP 0 | WARN 0 | INTERRUPT 0
TIME : 0.02 s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment