We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87316e4 commit be58fa3Copy full SHA for be58fa3
README.md
@@ -10,12 +10,12 @@ You've been warned, don't blame me...
10
11
Currently supports:
12
13
-| | ELF | PE | Mach |
14
-|:-----:|:---:|:--:|:----:|
15
-| x86 | ✅ | ✅ | ❌ |
16
-| x64 | ✅ | ✅ | ✅ |
17
-| arm | ✅ | ✅ | ❌ |
18
-| arm64 | ✅ | ✅ | ❌ |
+| | ELF | PE | Mach |
+| :---: | :---: | :---: | :---: |
+| x86 | ✅ | ✅ | ✅ |
+| x64 | ✅ | ✅ | ✅ |
+| arm | ✅ | ✅ | ❌ |
+| arm64 | ✅ | ✅ | ❌ |
19
20
21
## ropgadget-rs
src/main.rs
@@ -186,8 +186,9 @@ mod tests {
186
187
#[test]
188
fn arm32() {
189
- assert!(test_one("small", "arm32", FMT));
190
- assert!(test_one("big", "arm32", FMT));
+ for sz in vec!["small", "big"] {
+ assert!(test_one(sz, "arm32", FMT));
191
+ }
192
}
193
194
0 commit comments