Print this page
XXX Remove nawk(1)
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/dtrace/test/tst/i86xpv/xdt/tst.schedargs.ksh
+++ new/usr/src/cmd/dtrace/test/tst/i86xpv/xdt/tst.schedargs.ksh
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21
22 22 #
23 23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 24 # Use is subject to license terms.
25 25 #
26 26
27 27 #
28 28 # ASSERTION: Sched probe arguments should be valid.
29 29 #
30 30
31 31 if [ $# != 1 ]; then
32 32 echo expected one argument: '<'dtrace-path'>'
33 33 exit 2
34 34 fi
35 35
36 36 #
37 37 # do not fail test in a domU
38 38 #
39 39 if [ ! -c /dev/xen/privcmd ]; then
40 40 exit 0
41 41 fi
42 42
43 43 dtrace=$1
44 44 outf=/tmp/sched.args.$$
45 45
46 46 script()
47 47 {
48 48 $dtrace -c '/usr/bin/sleep 10' -o $outf -qs /dev/stdin <<EOF
49 49 xdt:sched::off-cpu,
50 50 xdt:sched::on-cpu,
51 51 xdt:sched::block,
52 52 xdt:sched::sleep,
53 53 xdt:sched::wake,
↓ open down ↓ |
53 lines elided |
↑ open up ↑ |
54 54 xdt:sched::yield
55 55 {
56 56 /* print domid vcpu pcpu probename */
57 57 printf("%d %d %d %s\n", arg0, arg1, \`xdt_curpcpu, probename);
58 58 }
59 59 EOF
60 60 }
61 61
62 62 validate()
63 63 {
64 - /usr/bin/nawk '
64 + /usr/xpg4/bin/awk '
65 65 BEGIN {
66 66 while (("/usr/sbin/xm vcpu-list" | getline)) {
67 67 if ($1 != "Name") {
68 68 domid = $2
69 69 vcpu = $3
70 70
71 71 vcpumap[domid, vcpu] = 1
72 72
73 73 split($7, affinity, ",")
74 74 for (i in affinity) {
75 75 if (split(affinity[i], p, "-") > 1) {
76 76 for (pcpu = p[1]; pcpu <= p[2];\
77 77 pcpu++) {
78 78 cpumap[domid, vcpu,
79 79 pcpu] = 1
80 80 }
81 81 } else {
82 82 cpumap[domid, vcpu,
83 83 affinity[i]] = 1
84 84 }
85 85 }
86 86 }
87 87 }
88 88 }
89 89
90 90 /^$/ { next }
91 91
92 92 /wake/ {
93 93 if (vcpumap[$1, $2]) {
94 94 next
95 95 } else {
96 96 print "error: " $0
97 97 exit 1
98 98 }
99 99 }
100 100
101 101 {
102 102 if (cpumap[$1, $2, "any"] || cpumap[$1, $2, $3]) {
103 103 next
104 104 } else {
105 105 print "error: " $0
106 106 exit 1
107 107 }
108 108 }
109 109 ' $outf
110 110 }
111 111
112 112 script
113 113 status=$?
114 114
115 115 if [ $status == 0 ]; then
116 116 validate
117 117 status=$?
118 118 fi
119 119
120 120 rm $outf
121 121 exit $status
↓ open down ↓ |
47 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX