Print this page
4474 DTrace Userland CTF Support
4475 DTrace userland Keyword
4476 DTrace tests should be better citizens
4479 pid provider types
4480 dof emulation missing checks
Reviewed by: Bryan Cantrill <bryan@joyent.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/dtrace/test/tst/common/usdt/tst.header.ksh
          +++ new/usr/src/cmd/dtrace/test/tst/common/usdt/tst.header.ksh
↓ open down ↓ 56 lines elided ↑ open up ↑
  57   57  int
  58   58  main(int argc, char **argv)
  59   59  {
  60   60          TEST_PROV_ZERO();
  61   61          TEST_PROV_ONE(1);
  62   62          TEST_PROV_U_NDER("hi there");
  63   63          TEST_PROV_D_ASH(argv);
  64   64  }
  65   65  EOF
  66   66  
  67      -gcc -c test.c
       67 +gcc -m32 -c test.c
  68   68  if [ $? -ne 0 ]; then
  69   69          print -u2 "failed to compile test.c"
  70   70          exit 1
  71   71  fi
  72   72  $dtrace -G -32 -s prov.d test.o
  73   73  if [ $? -ne 0 ]; then
  74   74          print -u2 "failed to create DOF"
  75   75          exit 1
  76   76  fi
  77      -gcc -o test test.o prov.o
       77 +gcc -m32 -o test test.o prov.o
  78   78  if [ $? -ne 0 ]; then
  79   79          print -u2 "failed to link final executable"
  80   80          exit 1
  81   81  fi
  82   82  
  83   83  cd /
  84   84  /usr/bin/rm -rf $DIR
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX