Use the built-in sort function to ensure that the PM-QA scripts will run in order. Some platforms may have makefile versions greater than 3.82.
See the following link for details: https://lists.gnu.org/archive/html/info-gnu/2010-07/msg00023.html
Signed-off-by: Lisa Nguyen lisa.nguyen@linaro.org --- Test.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Test.mk b/Test.mk index 66fe44b..fb7d41a 100644 --- a/Test.mk +++ b/Test.mk @@ -22,7 +22,7 @@ # - initial API and implementation
SNT=$(wildcard *sanity.sh) -TST=$(wildcard *[^{sanity}].sh) +TST=$(sort $(wildcard *[!{sanity}].sh)) LOG=$(TST:.sh=.log) CFLAGS?=-g -Wall -pthread CC?=gcc