12be1a816SJohn Birrell /*
22be1a816SJohn Birrell  * CDDL HEADER START
32be1a816SJohn Birrell  *
42be1a816SJohn Birrell  * The contents of this file are subject to the terms of the
52be1a816SJohn Birrell  * Common Development and Distribution License (the "License").
62be1a816SJohn Birrell  * You may not use this file except in compliance with the License.
72be1a816SJohn Birrell  *
82be1a816SJohn Birrell  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
92be1a816SJohn Birrell  * or http://www.opensolaris.org/os/licensing.
102be1a816SJohn Birrell  * See the License for the specific language governing permissions
112be1a816SJohn Birrell  * and limitations under the License.
122be1a816SJohn Birrell  *
132be1a816SJohn Birrell  * When distributing Covered Code, include this CDDL HEADER in each
142be1a816SJohn Birrell  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
152be1a816SJohn Birrell  * If applicable, add the following below this CDDL HEADER, with the
162be1a816SJohn Birrell  * fields enclosed by brackets "[]" replaced with your own identifying
172be1a816SJohn Birrell  * information: Portions Copyright [yyyy] [name of copyright owner]
182be1a816SJohn Birrell  *
192be1a816SJohn Birrell  * CDDL HEADER END
202be1a816SJohn Birrell  */
212be1a816SJohn Birrell 
222be1a816SJohn Birrell /*
232be1a816SJohn Birrell  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
242be1a816SJohn Birrell  * Use is subject to license terms.
252be1a816SJohn Birrell  */
262be1a816SJohn Birrell 
272be1a816SJohn Birrell #pragma ident	"%Z%%M%	%I%	%E% SMI"
282be1a816SJohn Birrell 
292be1a816SJohn Birrell /*
302be1a816SJohn Birrell  * ASSERTION: test for assertion failure in the ring buffer code
312be1a816SJohn Birrell  *
322be1a816SJohn Birrell  * SECTION: Buffers and Buffering/ring Policy; Misc
332be1a816SJohn Birrell  */
342be1a816SJohn Birrell 
352be1a816SJohn Birrell #pragma ident	"@(#)tst.roch.d	1.2	03/08/11 SMI"
362be1a816SJohn Birrell 
372be1a816SJohn Birrell /*
382be1a816SJohn Birrell  * A script from Roch Bourbonnais that induced an assertion failure in the
392be1a816SJohn Birrell  * ring buffer code.
402be1a816SJohn Birrell  */
412be1a816SJohn Birrell #pragma D option strsize=16
422be1a816SJohn Birrell #pragma D option bufsize=10K
432be1a816SJohn Birrell #pragma D option bufpolicy=ring
442be1a816SJohn Birrell 
452be1a816SJohn Birrell fbt:::entry
462be1a816SJohn Birrell /(self->done == 0) && (curthread->t_cpu->cpu_intr_actv == 0) /
472be1a816SJohn Birrell {
482be1a816SJohn Birrell 	self->done = 1;
492be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d comm:%s csathr:%lld", timestamp,
502be1a816SJohn Birrell 	    (long long)curthread, pid, tid,
512be1a816SJohn Birrell 	    execname, (long long)stackdepth);
522be1a816SJohn Birrell 	stack(20);
532be1a816SJohn Birrell }
542be1a816SJohn Birrell 
552be1a816SJohn Birrell fbt:::return
562be1a816SJohn Birrell /(self->done == 0) && (curthread->t_cpu->cpu_intr_actv == 0) /
572be1a816SJohn Birrell {
582be1a816SJohn Birrell 	self->done = 1;
592be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d comm:%s csathr:%lld", timestamp,
602be1a816SJohn Birrell 	    (long long) curthread, pid, tid,
612be1a816SJohn Birrell 	    execname, (long long) stackdepth);
622be1a816SJohn Birrell 	stack(20);
632be1a816SJohn Birrell }
642be1a816SJohn Birrell 
652be1a816SJohn Birrell fbt:::entry
662be1a816SJohn Birrell {
672be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d ", timestamp,
682be1a816SJohn Birrell 	    (long long)curthread, pid, tid);
692be1a816SJohn Birrell }
702be1a816SJohn Birrell 
712be1a816SJohn Birrell fbt:::return
722be1a816SJohn Birrell {
732be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d tag:%d off:%d ", timestamp,
742be1a816SJohn Birrell 	    (long long)curthread, pid, tid, (int)arg1, (int)arg0);
752be1a816SJohn Birrell }
762be1a816SJohn Birrell 
77bc8eecf7SMark Johnston mtx_lock:adaptive-acquire
782be1a816SJohn Birrell {
792be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d lock:0x%llX", timestamp,
802be1a816SJohn Birrell 	    (long long)curthread, pid, tid, arg0);
812be1a816SJohn Birrell }
822be1a816SJohn Birrell 
83bc8eecf7SMark Johnston mtx_unlock:adaptive-release
842be1a816SJohn Birrell {
852be1a816SJohn Birrell 	printf(" %u 0x%llX %d %d lock:0x%llX", timestamp,
862be1a816SJohn Birrell 	    (long long) curthread, pid, tid, arg0);
872be1a816SJohn Birrell }
882be1a816SJohn Birrell 
892be1a816SJohn Birrell tick-1sec
902be1a816SJohn Birrell /n++ == 10/
912be1a816SJohn Birrell {
922be1a816SJohn Birrell 	exit(0);
932be1a816SJohn Birrell }
94