summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ubuntu.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index cbd228ca43..45930f9732 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -88,11 +88,11 @@ jobs:
- name: make ${{ matrix.test_task }}
run: |
if [ ${{ matrix.test_task }} = 'check' ]; then
- TESTS=`echo "${{ matrix.skipped_tests }}" | sed 's| |$/ -n!/|g;s|^|-n!/|;s|$|$/|'`
+ TESTS=`echo "${{ matrix.skipped_tests }}" | sed 's| |$/ -n!/|g;s|^|-n!/|;s|$|$$/|'`
fi
$SETARCH make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
if [ ${{ matrix.test_task }} = 'check' -a "${TESTS:+set}" ]; then
- TESTS=`echo "${{ matrix.skipped_tests }}" | sed 's| |$/ -n/|g;s|^|-n/|;s|$|$/|'`
+ TESTS=`echo "${{ matrix.skipped_tests }}" | sed 's| |$/ -n/|g;s|^|-n/|;s|$|$$/|'`
unset GNUMAKEFLAGS
$SETARCH make -s test-all TESTS="$TESTS"
fi