Skip to content

Commit 305dbbf

Browse files
committed
revert debugging changes
1 parent 4479e50 commit 305dbbf

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

affinity/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,10 @@
5757
<dependency>
5858
<groupId>net.java.dev.jna</groupId>
5959
<artifactId>jna</artifactId>
60-
<version>4.2.1</version>
6160
</dependency>
6261
<dependency>
6362
<groupId>net.java.dev.jna</groupId>
6463
<artifactId>jna-platform</artifactId>
65-
<version>4.2.1</version>
6664
</dependency>
6765
<dependency>
6866
<groupId>com.intellij</groupId>

affinity/src/test/java/net/openhft/affinity/AffinityLockTest.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
import java.io.IOException;
2727
import java.util.ArrayList;
2828
import java.util.List;
29-
import java.util.Properties;
30-
import java.util.concurrent.TimeUnit;
3129

3230
import static org.junit.Assert.assertEquals;
3331
import static org.junit.Assert.assertNotSame;
@@ -39,17 +37,6 @@
3937
public class AffinityLockTest {
4038
private static final Logger logger = LoggerFactory.getLogger(AffinityLockTest.class);
4139

42-
@Test
43-
public void shouldDumpSystemProperties() throws Exception {
44-
if (System.getProperty("os.name").startsWith("Linux")) {
45-
final Process process = new ProcessBuilder().command("ldd", "--version").inheritIO().start();
46-
final int exitCode = process.waitFor();
47-
if (exitCode != 0) {
48-
System.out.println("ldd did not exit cleanly: " + exitCode);
49-
}
50-
}
51-
}
52-
5340
@Test
5441
public void dumpLocksI7() throws IOException {
5542
LockInventory lockInventory = new LockInventory(VanillaCpuLayout.fromCpuInfo("i7.cpuinfo"));

0 commit comments

Comments
 (0)