<!-- description --> @brief Returns an allocated and initialized ELF file buffer for use during testing. <!-- inputs/outputs --> @return Returns an allocated and initialized ELF file buffer for use during testing.
| 130 | /// during testing. |
| 131 | /// |
| 132 | [[nodiscard]] constexpr auto |
| 133 | get_elf_file_buf() noexcept -> elf_file_buf_t |
| 134 | { |
| 135 | return {new bsl::uint8[ELF_FILE_BUF_SIZE.get()](), ELF_FILE_BUF_SIZE}; |
| 136 | } |
| 137 | |
| 138 | /// <!-- description --> |
| 139 | /// @brief Deletes the provided ELF file buffer. |