From 2cc123f15268382c7b25b0b5387e537c9d257575 Mon Sep 17 00:00:00 2001 From: matteo-cristino Date: Mon, 7 Oct 2024 11:17:40 +0200 Subject: [PATCH] test: fix order of inputs to zenroom --- test/utils.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/utils.sh b/test/utils.sh index 9ef457b..6dc1ec0 100755 --- a/test/utils.sh +++ b/test/utils.sh @@ -61,15 +61,15 @@ zexe() { fi if [ "$keys" != "" ]; then - output=`zenroom -z $script -c $conf -a $tmpin -k $tmpkey` + output=`zenroom -c $conf -a $tmpin -k $tmpkey -z $script` status=$? rm -f $tmpin $tmpkey elif [ "$input" != "" ]; then - output=`zenroom -z $script -c $conf -a $tmpin` + output=`zenroom -c $conf -a $tmpin -z $script` status=$? rm -f $tmpin else - output=`zenroom -z $script -c $conf` + output=`zenroom -c $conf -z $script` status=$? fi rm -f $script # getscript() generates this mktemp