diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-04-05 23:23:13 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-04-06 13:45:01 -0700 |
| commit | 8b0fe7a1d1e485befed2f4abedcaf6c6c8822b0e (patch) | |
| tree | 59f4612aff92f65cf52ffb2fdd5bb0e244b82bf5 /meta-oe/recipes-support/libtinyxml2/files | |
| parent | 3e4121b6e7192b2d98fdd533d5ca8270914f5589 (diff) | |
| download | meta-openembedded-8b0fe7a1d1e485befed2f4abedcaf6c6c8822b0e.tar.gz | |
libtinyxml2: Add ptest support
- Switch to usong meson build system
- Fix build with musl by defining _LARGEFILE64_SOURCE
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libtinyxml2/files')
| -rw-r--r-- | meta-oe/recipes-support/libtinyxml2/files/run-ptest | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libtinyxml2/files/run-ptest b/meta-oe/recipes-support/libtinyxml2/files/run-ptest new file mode 100644 index 0000000000..870912672e --- /dev/null +++ b/meta-oe/recipes-support/libtinyxml2/files/run-ptest | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | for i in `ls xmltest`; do | ||
| 4 | ./$i | ||
| 5 | if [ $? -eq 0 ]; then | ||
| 6 | echo "PASS: $i" | ||
| 7 | else | ||
| 8 | echo "FAIL: $i" | ||
| 9 | fi | ||
| 10 | done | ||
