testalloc0.sh 329 B

123456789101112131415161718
  1. #!/bin/bash
  2. export DUMA_DISABLE_BANNER=1
  3. g++ testalloc0.cpp -o testalloc0
  4. echo tests without duma
  5. ./testalloc0 0
  6. ./testalloc0 1
  7. ./testalloc0 2
  8. echo tests with duma
  9. export LD_PRELOAD=./libduma.so.0.0.0
  10. export DYLD_INSERT_LIBRARIES=./libduma.dylib
  11. export DYLD_FORCE_FLAT_NAMESPACE=1
  12. ./testalloc0 0
  13. ./testalloc0 1
  14. ./testalloc0 2