aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/concurrent
diff options
context:
space:
mode:
authorGravatar Eric Fellheimer <felly@google.com>2015-06-18 22:08:32 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-06-19 11:04:46 +0000
commit6a9d7e5ef21bf8b76a0027c58bd13e98a95b9750 (patch)
treedcdf54bf7af2993711bd58396b026d49bd72e209 /src/test/java/com/google/devtools/build/lib/concurrent
parent42a6830cfd476a75c61cb49443da3c1e4857d36e (diff)
Renaming ExecutorShutdownUtil to ExecutorUtil, since it doesn't just do shutdown operations.
-- MOS_MIGRATED_REVID=96351438
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/concurrent')
-rw-r--r--src/test/java/com/google/devtools/build/lib/concurrent/BatchedKeyedLockerTest.java2
-rw-r--r--src/test/java/com/google/devtools/build/lib/concurrent/KeyedFrequencyStoreTest.java2
-rw-r--r--src/test/java/com/google/devtools/build/lib/concurrent/KeyedLockerTest.java6
3 files changed, 5 insertions, 5 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/concurrent/BatchedKeyedLockerTest.java b/src/test/java/com/google/devtools/build/lib/concurrent/BatchedKeyedLockerTest.java
index 2e5f8a8dc6..e2449d9db5 100644
--- a/src/test/java/com/google/devtools/build/lib/concurrent/BatchedKeyedLockerTest.java
+++ b/src/test/java/com/google/devtools/build/lib/concurrent/BatchedKeyedLockerTest.java
@@ -148,7 +148,7 @@ public abstract class BatchedKeyedLockerTest extends KeyedLockerTest {
}
}));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executorService);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executorService);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted) {
Thread.currentThread().interrupt();
diff --git a/src/test/java/com/google/devtools/build/lib/concurrent/KeyedFrequencyStoreTest.java b/src/test/java/com/google/devtools/build/lib/concurrent/KeyedFrequencyStoreTest.java
index 47a34e9226..95896e0534 100644
--- a/src/test/java/com/google/devtools/build/lib/concurrent/KeyedFrequencyStoreTest.java
+++ b/src/test/java/com/google/devtools/build/lib/concurrent/KeyedFrequencyStoreTest.java
@@ -93,7 +93,7 @@ public abstract class KeyedFrequencyStoreTest {
for (int i = 0; i < NUM_EXECUTOR_THREADS; i++) {
executorService.submit(wrapper.wrap(runnable));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executorService);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executorService);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted) {
Thread.currentThread().interrupt();
diff --git a/src/test/java/com/google/devtools/build/lib/concurrent/KeyedLockerTest.java b/src/test/java/com/google/devtools/build/lib/concurrent/KeyedLockerTest.java
index 9ee806afd8..1549a548ac 100644
--- a/src/test/java/com/google/devtools/build/lib/concurrent/KeyedLockerTest.java
+++ b/src/test/java/com/google/devtools/build/lib/concurrent/KeyedLockerTest.java
@@ -165,7 +165,7 @@ public abstract class KeyedLockerTest {
for (int i = 0; i < NUM_EXECUTOR_THREADS; i++) {
executorService.submit(wrapper.wrap(runnable));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executorService);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executorService);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted) {
Thread.currentThread().interrupt();
@@ -210,7 +210,7 @@ public abstract class KeyedLockerTest {
};
executorService.submit(wrapper.wrap(runnable1));
executorService.submit(wrapper.wrap(runnable2));
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executorService);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executorService);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted || runnableInterrupted.get()) {
Thread.currentThread().interrupt();
@@ -264,7 +264,7 @@ public abstract class KeyedLockerTest {
for (int i = 0; i < NUM_EXECUTOR_THREADS; i++) {
executorService.submit(wrapper.wrap(runnable));
}
- boolean interrupted = ExecutorShutdownUtil.interruptibleShutdown(executorService);
+ boolean interrupted = ExecutorUtil.interruptibleShutdown(executorService);
Throwables.propagateIfPossible(wrapper.getFirstThrownError());
if (interrupted || runnableInterrupted.get()) {
Thread.currentThread().interrupt();