From 8d621b73b6af5954a412192c38c12f17e171ed3e Mon Sep 17 00:00:00 2001 From: parrt Date: Thu, 11 Mar 2021 13:55:37 -0800 Subject: [PATCH] support new anaconda mac location. --- .../test/org/antlr/v4/test/runtime/python/BasePythonTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime-testsuite/test/org/antlr/v4/test/runtime/python/BasePythonTest.java b/runtime-testsuite/test/org/antlr/v4/test/runtime/python/BasePythonTest.java index c12967869..126e2e055 100644 --- a/runtime-testsuite/test/org/antlr/v4/test/runtime/python/BasePythonTest.java +++ b/runtime-testsuite/test/org/antlr/v4/test/runtime/python/BasePythonTest.java @@ -195,7 +195,8 @@ public abstract class BasePythonTest extends BaseRuntimeTestSupport implements R private String locateTool(List tools) { String[] roots = { "/opt/local/bin", "/usr/bin/", "/usr/local/bin/", - "/Users/"+System.getProperty("user.name")+"/anaconda3/bin/" + "/Users/"+System.getProperty("user.name")+"/anaconda3/bin/", + "/Users/"+System.getProperty("user.name")+"/opt/anaconda3/bin/" }; for(String root : roots) { for (String tool : tools) {