annotate usr/src/cmd/dtrace/test/tst/common/pointers/err.BadAlign.d @ 13944:bbcbb468dc37

3519 DTrace fails to resolve const types from fbt 3520 dtrace internal error -- token type 316 is not a valid D compilation token 3521 clean up dtrace unit tests Reviewed by: Matthew Ahrens <mahrens@delphix.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Christopher Siden <christopher.siden@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Approved by: Robert Mustacchi <rm@joyent.com>
author Adam Leventhal <ahl@delphix.com>
date Tue, 05 Feb 2013 10:10:25 -0800
parents 71bab08d24b2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2633
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
1 /*
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
2 * CDDL HEADER START
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
3 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
4 * The contents of this file are subject to the terms of the
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
5 * Common Development and Distribution License (the "License").
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
6 * You may not use this file except in compliance with the License.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
7 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
9 * or http://www.opensolaris.org/os/licensing.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
10 * See the License for the specific language governing permissions
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
11 * and limitations under the License.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
12 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
13 * When distributing Covered Code, include this CDDL HEADER in each
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
15 * If applicable, add the following below this CDDL HEADER, with the
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
16 * fields enclosed by brackets "[]" replaced with your own identifying
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
17 * information: Portions Copyright [yyyy] [name of copyright owner]
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
18 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
19 * CDDL HEADER END
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
20 */
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
21
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
22 /*
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
24 * Use is subject to license terms.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
25 */
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
26
13944
bbcbb468dc37 3519 DTrace fails to resolve const types from fbt
Adam Leventhal <ahl@delphix.com>
parents: 2633
diff changeset
27 /*
bbcbb468dc37 3519 DTrace fails to resolve const types from fbt
Adam Leventhal <ahl@delphix.com>
parents: 2633
diff changeset
28 * Copyright (c) 2012 by Delphix. All rights reserved.
bbcbb468dc37 3519 DTrace fails to resolve const types from fbt
Adam Leventhal <ahl@delphix.com>
parents: 2633
diff changeset
29 */
2633
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
30
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
31 /*
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
32 * ASSERTION: This test reproduces the alignment error.
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
33 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
34 * SECTION: Type and Constant Definitions/Enumerations
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
35 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
36 * NOTES:
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
37 *
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
38 */
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
39
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
40 #pragma D option quiet
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
41
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
42 BEGIN
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
43 {
13944
bbcbb468dc37 3519 DTrace fails to resolve const types from fbt
Adam Leventhal <ahl@delphix.com>
parents: 2633
diff changeset
44 x = (int *)64;
2633
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
45 y = *x;
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
46 trace(y);
13944
bbcbb468dc37 3519 DTrace fails to resolve const types from fbt
Adam Leventhal <ahl@delphix.com>
parents: 2633
diff changeset
47 exit(0);
2633
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
48 }
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
49
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
50 ERROR
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
51 {
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
52 exit(1);
71bab08d24b2 6464285 integrate the DTrace test suite
ahl
parents:
diff changeset
53 }