From 0296d0f3797728063b12efa3be4048476d732c60 Mon Sep 17 00:00:00 2001 From: Mihai Maruseac Date: Wed, 20 Jul 2022 14:09:07 -0700 Subject: [PATCH] Use `rsync` instead of `cp -r` and resolve symlinks. (#8044) Resolving symlinks makes the test start executing. However, locally I still got some test failures, which I don't know if are expected or not. But still, it is some progress. Signed-off-by: Mihai Maruseac --- projects/bc-java-wycheproof/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/bc-java-wycheproof/build.sh b/projects/bc-java-wycheproof/build.sh index 1650a4986..ac28057a6 100644 --- a/projects/bc-java-wycheproof/build.sh +++ b/projects/bc-java-wycheproof/build.sh @@ -16,4 +16,4 @@ ################################################################################ bazel build BouncyCastleAllTests -cp -r bazel-bin/* $OUT +rsync -aLkR bazel-bin/* $OUT