如何 运行 RSKj 测试?
How to run RSKj tests?
我已经从 official repo 克隆了 RSKj 并尝试 运行 IntelliJ 上的测试文件夹。我正在 运行M1 MAC 上的最后一个 Java 版本。
运行在 master 分支上进行测试时出现以下错误。
Unable to make private static int[]
java.math.BigInteger.add(int[],int[])
accessible: module java.base does not "opens java.math"
to unnamed module @b1a58a3
这里可能是什么问题?
你运行他们怎么样?您的 IDE 可能会使用 non-local Gradle,因此您应该 运行 通过
./gradlew clean build
确保通过 ./configure.sh
命令(one-time 操作)正确配置了 Gradle。
另外,检查 Java 版本。它应该在版本 8(例如 JVM temurin-1.8)和 M1
上的 11 上正常工作
我已经从 official repo 克隆了 RSKj 并尝试 运行 IntelliJ 上的测试文件夹。我正在 运行M1 MAC 上的最后一个 Java 版本。
运行在 master 分支上进行测试时出现以下错误。
Unable to make private static int[]
java.math.BigInteger.add(int[],int[])
accessible: module java.base does not "opens java.math"
to unnamed module @b1a58a3
这里可能是什么问题?
你运行他们怎么样?您的 IDE 可能会使用 non-local Gradle,因此您应该 运行 通过
./gradlew clean build
确保通过 ./configure.sh
命令(one-time 操作)正确配置了 Gradle。
另外,检查 Java 版本。它应该在版本 8(例如 JVM temurin-1.8)和 M1