lilliput-ae-reference-implementation

Implementations of Lilliput-AE submitted to the NIST LWC standardization process
git clone https://git.kevinlegouguec.net/lilliput-ae-reference-implementation
Log | Files | Refs | README

commit 8ecf39d2d854769a5444710bb9358a46bf23789a
parent 35f637aa76a6370aff4f6812d9bfeb9c0c371ec7
Author: Kévin Le Gouguec <kevin.legouguec@airbus.com>
Date:   Wed, 13 Feb 2019 13:50:05 +0100

Gestion des conflits lors de l'application des patchs de traces

Diffstat:
Mtraces/collect-traces.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/traces/collect-traces.sh b/traces/collect-traces.sh @@ -11,7 +11,7 @@ patch=traces/${trace_type}.patch d=$(mktemp -d) -git apply ${patch} +git apply --3way ${patch} for variant_dir in test/{i,ii}-{128,192,256} do @@ -23,4 +23,4 @@ tar czf results/${trace_type}.tgz -C ${d} . rm -r ${d} -git apply --reverse ${patch} +git apply --3way --reverse ${patch}