Skip to content

Commit be58fa3

Browse files
author
hugsy
committed
macho x86 works
1 parent 87316e4 commit be58fa3

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ You've been warned, don't blame me...
1010

1111
Currently supports:
1212

13-
| | ELF | PE | Mach |
14-
|:-----:|:---:|:--:|:----:|
15-
| x86 ||| |
16-
| x64 ||||
17-
| arm ||||
18-
| arm64 | |||
13+
| | ELF | PE | Mach |
14+
| :---: | :---: | :---: | :---: |
15+
| x86 ||| |
16+
| x64 ||| |
17+
| arm ||| |
18+
| arm64 | || |
1919

2020

2121
## ropgadget-rs

src/main.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,9 @@ mod tests {
186186

187187
#[test]
188188
fn arm32() {
189-
assert!(test_one("small", "arm32", FMT));
190-
assert!(test_one("big", "arm32", FMT));
189+
for sz in vec!["small", "big"] {
190+
assert!(test_one(sz, "arm32", FMT));
191+
}
191192
}
192193

193194
#[test]

0 commit comments

Comments
 (0)