mirror of
https://git.yoctoproject.org/poky
synced 2026-05-29 15:52:40 +02:00
Instead of installing pieces of the build system, we can install the test driver (which can also be used to list the files needed) and run the tests directly. (From OE-Core rev: 5e07e6c376cf46d2788dcef53e9feba890c0236d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 lines
238 B
Bash
10 lines
238 B
Bash
#!/bin/sh
|
|
|
|
# Run the tests in regression mode so they are quicker
|
|
export GCRYPT_IN_REGRESSION_TEST=1
|
|
# The 'random' test invokes itself, so we need to be sure that the test
|
|
# directory is on PATH.
|
|
export PATH=$PATH:.
|
|
|
|
./testdrv --verbose
|