Created
October 20, 2015 03:30
-
-
Save apahim/43dd1bfcce95112e1d8a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[asegundo@x240 avocado]$ tree -L 2 | |
. | |
├── data | |
│ └── avocado-vt | |
├── job-results | |
└── tests | |
4 directories, 0 files | |
[asegundo@x240 avocado]$ avocado run /bin/true /bin/false | |
JOB ID : fff9a02587c556845cbb85e4d52266d7fbd554cd | |
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-19T23.24-fff9a02/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]$ tree -L 2 | |
. | |
├── data | |
│ └── avocado-vt | |
├── job-results | |
│ ├── job-2015-10-19T23.24-fff9a02 | |
│ └── latest -> job-2015-10-19T23.24-fff9a02 | |
├── jobs | |
│ └── fff9a02587c556845cbb85e4d52266d7fbd554cd | |
└── tests | |
8 directories, 0 files | |
[asegundo@x240 avocado]$ avocado run /bin/true | |
JOB ID : dec8d217f761f0410e412241e33cc88e857f7f7d | |
JOB LOG : /home/asegundo/avocado/job-results/job-2015-10-19T23.24-dec8d21/job.log | |
TESTS : 1 | |
(1/1) /bin/true: PASS (0.01 s) | |
RESULTS : PASS 1 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 | INTERRUPT 0 | |
TIME : 0.01 s | |
[asegundo@x240 avocado]$ tree -L 2 | |
. | |
├── data | |
│ └── avocado-vt | |
├── job-results | |
│ ├── job-2015-10-19T23.24-dec8d21 | |
│ ├── job-2015-10-19T23.24-fff9a02 | |
│ └── latest -> job-2015-10-19T23.24-dec8d21 | |
├── jobs | |
│ ├── dec8d217f761f0410e412241e33cc88e857f7f7d | |
│ └── fff9a02587c556845cbb85e4d52266d7fbd554cd | |
└── tests | |
10 directories, 0 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment