2011-03-09 17:47:00 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-01-24 01:02:07 +00:00
|
|
|
# SPDX-FileCopyrightText: 2021-2024 Ole Tange, http://ole.tange.dk and Free Software and Foundation, Inc.
|
2021-04-22 16:20:41 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2011-03-09 17:47:00 +00:00
|
|
|
export LANG=C
|
|
|
|
SHFILE=/tmp/unittest-parallel.sh
|
|
|
|
|
|
|
|
# These tests seem to work on another machine
|
2011-03-22 20:02:22 +00:00
|
|
|
ls -t tests-to-run/test{01,03,04,05,06,07,08,09,11,15,22,24,25,26,28,29,31,33,34,39,40,43,49,52,53,54,55}.sh \
|
2011-03-09 17:47:00 +00:00
|
|
|
tests-to-run/niceload01.sh tests-to-run/sem01.sh \
|
|
|
|
| perl -pe 's:(.*/(.*)).sh:bash $1.sh > actual-results/$2; diff -Naur wanted-results/$2 actual-results/$2:' \
|
|
|
|
>$SHFILE
|
|
|
|
|
|
|
|
mkdir -p actual-results
|
|
|
|
sh -x $SHFILE
|
|
|
|
rm $SHFILE
|