From 34d289033992fecd262d0eaaaca87c4f2064fb52 Mon Sep 17 00:00:00 2001 From: John Bieren Date: Sep 14 2018 13:05:43 +0000 Subject: [PATCH 1/2] Use command, not shell --- diff --git a/misc/ltp/test_local.yml b/misc/ltp/test_local.yml index 0dbce40..c06c9a5 100644 --- a/misc/ltp/test_local.yml +++ b/misc/ltp/test_local.yml @@ -72,7 +72,7 @@ shell: ./knownissues.sh > {{ltpdir}}/ltp.skip - name: Run ltp - shell: "./runtest.sh {{ ltpdir }} {{ item }}" + command: "./runtest.sh {{ ltpdir }} {{ item }}" ignore_errors: yes with_items: - "{{ userspacetargets }}" From 5fe285c96994be0a62ebf45bdb50f7bda50d4854 Mon Sep 17 00:00:00 2001 From: John Bieren Date: Sep 14 2018 13:06:23 +0000 Subject: [PATCH 2/2] Remove set +e --- diff --git a/misc/ltp/runtest.sh b/misc/ltp/runtest.sh index d83b89c..37c01be 100755 --- a/misc/ltp/runtest.sh +++ b/misc/ltp/runtest.sh @@ -1,7 +1,5 @@ #!/bin/bash -set +e - LTPDIR=${1:-/mnt/testarea/ltp} LTPTEST=${2:-RHELKT1LITE} LOGDIR="${LTPDIR}/logs/${LTPTEST}"