1 // RUN: %clang_scudo %s -lstdc++ -o %t 2 // RUN: %run %t 2>&1 3 4 // Tests that a regular workflow of allocation, memory fill and free works as 5 // intended. Tests various sizes serviced by the primary and secondary 6 // allocators. 7 8 #include <stdlib.h> 9 #include <string.h> 10 11 #include <vector> 12 13 int main(int argc, char **argv) 14 { 15 void *p; 16 std::vector<ssize_t> sizes{1, 8, 16, 32, 1024, 32768, 17 1 << 16, 1 << 17, 1 << 20, 1 << 24}; 18 std::vector<int> offsets{1, 0, -1, -7, -8, -15, -16, -31, -32}; 19 20 p = malloc(0); 21 if (!p) 22 return 1; 23 free(p); 24 for (ssize_t size : sizes) { 25 for (int offset: offsets) { 26 ssize_t actual_size = size + offset; 27 if (actual_size <= 0) 28 continue; 29 p = malloc(actual_size); 30 if (!p) 31 return 1; 32 memset(p, 0xff, actual_size); 33 free(p); 34 } 35 } 36 37 return 0; 38 } 39