From 36e17158ed72646a126c5494e765c704e120f18a Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 15 Dec 2005 05:46:07 +0000 Subject: *** empty log message *** --- testsuite/buildok/pmap_foreach.stp | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 testsuite/buildok/pmap_foreach.stp (limited to 'testsuite/buildok/pmap_foreach.stp') diff --git a/testsuite/buildok/pmap_foreach.stp b/testsuite/buildok/pmap_foreach.stp deleted file mode 100755 index 8cc8decd..00000000 --- a/testsuite/buildok/pmap_foreach.stp +++ /dev/null @@ -1,22 +0,0 @@ -#! stap -p4 - -global foo - - -probe begin { - for (i=0;i<10;i+=2) { - foo[1] <<< i - foo[2] <<< i*i - foo[3] <<< i*i*i - } - foo[3] <<< 4*4*4 - exit() -} - -probe end { - for (i=1;i<4;i++) - printf("count of foo[%d] = %d\n", i, @count(foo[i])) - - foreach (i in foo) - printf("count of foo[%d] = %d\n", i, @count(foo[i])) -} -- cgit