aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2022-10-25 09:28:51 -0700
committerJavac Team <javac-team+copybara@google.com>2022-10-25 09:29:40 -0700
commit3eba4087ecfbf6e81577a91f9fa1326729505cd5 (patch)
tree1604e10ae9963736076dea23c12e3f399005eba4
parentec73d8ab2ec2d8cc49e98f8c2f24e94302f33662 (diff)
downloadturbine-3eba4087ecfbf6e81577a91f9fa1326729505cd5.tar.gz
Update Error Prone version
PiperOrigin-RevId: 483696374
-rw-r--r--javatests/com/google/turbine/lower/LongStringIntegrationTest.java4
-rw-r--r--pom.xml4
2 files changed, 4 insertions, 4 deletions
diff --git a/javatests/com/google/turbine/lower/LongStringIntegrationTest.java b/javatests/com/google/turbine/lower/LongStringIntegrationTest.java
index a462b69..7bb61e5 100644
--- a/javatests/com/google/turbine/lower/LongStringIntegrationTest.java
+++ b/javatests/com/google/turbine/lower/LongStringIntegrationTest.java
@@ -44,7 +44,7 @@ public class LongStringIntegrationTest {
public void test() throws Exception {
Map<String, byte[]> output =
runTurbineWithStack(
- /* stackSize= */ 1,
+ /* stackSize= */ 100_000,
/* input= */ ImmutableMap.of("Test.java", source()),
/* classpath= */ ImmutableList.of());
@@ -70,7 +70,7 @@ public class LongStringIntegrationTest {
},
/* name= */ "turbine",
stackSize);
- t.run();
+ t.start();
t.join();
return output;
}
diff --git a/pom.xml b/pom.xml
index a03ab6d..a2bf088 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,9 +30,9 @@
<url>https://github.com/google/turbine</url>
<properties>
- <asm.version>9.3</asm.version>
+ <asm.version>9.4</asm.version>
<guava.version>31.0.1-jre</guava.version>
- <errorprone.version>2.11.0</errorprone.version>
+ <errorprone.version>2.16</errorprone.version>
<maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>