Skip to content

Commit

Permalink
Clenup test packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Chwedczuk committed Dec 24, 2021
1 parent 2490589 commit a7927cf
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ public Object buildAttributeValue() {
// Unknown value type
return null;
}

}

// TODO: Memory range
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pl.marcinchwedczuk.elfviewer.elfreader.elf32;
package pl.marcinchwedczuk.elfviewer.elfreader;

import org.junit.jupiter.api.Test;
import pl.marcinchwedczuk.elfviewer.elfreader.ElfReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pl.marcinchwedczuk.elfviewer.elfreader.elf32;
package pl.marcinchwedczuk.elfviewer.elfreader;

import org.junit.jupiter.api.Test;
import pl.marcinchwedczuk.elfviewer.elfreader.ElfReader;
Expand Down Expand Up @@ -34,6 +34,7 @@ public class ElfReader_64Bits_Test {
private final AbstractFile helloWorld64;
private final AbstractFile libc64;
private final AbstractFile ld64;
private final AbstractFile arm64libc;

public ElfReader_64Bits_Test() throws IOException {
helloWorld64 = new InMemoryFile(this.getClass()
Expand All @@ -47,6 +48,10 @@ public ElfReader_64Bits_Test() throws IOException {
ld64 = new InMemoryFile(this.getClass()
.getResourceAsStream("ld-2.17.so")
.readAllBytes());

arm64libc = new InMemoryFile(this.getClass()
.getResourceAsStream("arm64-libc-2.33.so")
.readAllBytes());
}

@Test
Expand Down

0 comments on commit a7927cf

Please sign in to comment.