diff options
| author | Mingli Yu <mingli.yu@windriver.com> | 2023-01-31 15:29:25 +0800 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-02-10 12:58:29 -0500 |
| commit | 147e78a2aff5cb6a29e7f45dd5c4351200cdb117 (patch) | |
| tree | bba92f6120f46b5d1bc16f1589a14848369eaf1a /recipes-devtools/yq/files | |
| parent | e8a1ce41d762a7ce1a234410a93b16866c53a8a6 (diff) | |
| download | meta-virtualization-147e78a2aff5cb6a29e7f45dd5c4351200cdb117.tar.gz | |
yq: add ptest support
# ./run-ptest
PASS: acceptance.sh
PASS: bad_args.sh
PASS: basic.sh
PASS: bump-version.sh
PASS: check.sh
PASS: completion.sh
PASS: copy-docs.sh
PASS: coverage.sh
PASS: devtools.sh
PASS: empty.sh
PASS: extract-checksum.sh
PASS: format.sh
PASS: front-matter.sh
PASS: generate-man-page-md.sh
PASS: generate-man-page.sh
PASS: header-processing-off.sh
PASS: inputs-format.sh
PASS: install-man-page.sh
PASS: leading-seperator.sh
PASS: load-file.sh
PASS: output-format.sh
PASS: pipe.sh
PASS: pretty-print.sh
PASS: release-deb.sh
PASS: secure.sh
PASS: setup.sh
PASS: split-printer.sh
PASS: test-docker.sh
PASS: test.sh
PASS: xcompile.sh
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools/yq/files')
| -rwxr-xr-x | recipes-devtools/yq/files/run-ptest | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes-devtools/yq/files/run-ptest b/recipes-devtools/yq/files/run-ptest new file mode 100755 index 00000000..3a6876b3 --- /dev/null +++ b/recipes-devtools/yq/files/run-ptest | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | cd tests | ||
| 4 | for i in `ls *.sh`; do | ||
| 5 | if [ ./$i ] ; then | ||
| 6 | echo "PASS: $i" | ||
| 7 | else | ||
| 8 | echo "FAIL: $i" | ||
| 9 | fi | ||
| 10 | done | ||
