diff options
Diffstat (limited to 'cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh')
-rw-r--r-- | cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh b/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh index fe5649da76cda..6ca823f5ddd33 100644 --- a/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh +++ b/cmd/dtrace/test/tst/common/profile-n/tst.umod.ksh @@ -23,6 +23,7 @@ # Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # +# ident "%Z%%M% %I% %E% SMI" script() { @@ -61,7 +62,7 @@ child=$! # # The only thing we can be sure of here is that ksh is doing some work. # -script | tee /dev/fd/2 | egrep '(ksh|libshell)' > /dev/null +script | tee /dev/fd/2 | grep -w ksh > /dev/null status=$? kill $child |