
* Fixes to main * Add librasan * Party like it's 2024 * Fix snapshot module to work with guest asan * Fix guest_asan module * Fixes to runner * Fix linking issues using a REL * Fix qemu_launcher * Change modify_mapping to a method * Fix gasan_test * Remove debug from Justfile * Optimize release build of librasan * Set ulimit for qasan and gasan tests * Tidy up symbol renaming * Add missing symbols for PPC * Change to support rustix 1.0.0 * Canonicalize the CUSTOM_ASAN_PATH * Review changes * Restructure backends * release_max_level_info * More review changes * Clippy fixes * Changes to reduce the burden on the CI * Fix macos clippy --------- Co-authored-by: Your Name <you@example.com>
42 lines
1019 B
Rust
42 lines
1019 B
Rust
#[cfg(test)]
|
|
#[cfg(feature = "hooks")]
|
|
mod tests {
|
|
use core::{ffi::c_char, ptr::null};
|
|
|
|
use asan::{expect_panic, hooks::strnlen::strnlen};
|
|
|
|
#[test]
|
|
fn test_strnlen_zero_length() {
|
|
let ret = unsafe { strnlen(null() as *const c_char, 0) };
|
|
assert_eq!(ret, 0);
|
|
}
|
|
|
|
#[test]
|
|
fn test_strnlen_cs_null() {
|
|
expect_panic();
|
|
unsafe { strnlen(null() as *const c_char, 10) };
|
|
unreachable!();
|
|
}
|
|
|
|
#[test]
|
|
fn test_strnlen_cs_empty() {
|
|
let data = c"";
|
|
let ret = unsafe { strnlen(data.as_ptr() as *const c_char, 10) };
|
|
assert_eq!(ret, 0);
|
|
}
|
|
|
|
#[test]
|
|
fn test_strnlen_full() {
|
|
let data = c"abcdefghij";
|
|
let ret = unsafe { strnlen(data.as_ptr() as *const c_char, data.count_bytes()) };
|
|
assert_eq!(ret, 10);
|
|
}
|
|
|
|
#[test]
|
|
fn test_strnlen_partial() {
|
|
let data = c"abcdefghij";
|
|
let ret = unsafe { strnlen(data.as_ptr() as *const c_char, 5) };
|
|
assert_eq!(ret, 5);
|
|
}
|
|
}
|