File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed
src/test/java/net/openhft/affinity Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 2626import java .io .IOException ;
2727import java .util .ArrayList ;
2828import java .util .List ;
29- import java .util .Properties ;
30- import java .util .concurrent .TimeUnit ;
3129
3230import static org .junit .Assert .assertEquals ;
3331import static org .junit .Assert .assertNotSame ;
3937public 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" ));
You can’t perform that action at this time.
0 commit comments