summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/assert1.adb
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gnat.dg/assert1.adb
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gnat.dg/assert1.adb')
-rw-r--r--gcc/testsuite/gnat.dg/assert1.adb39
1 files changed, 39 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/assert1.adb b/gcc/testsuite/gnat.dg/assert1.adb
new file mode 100644
index 000000000..d761cd0d9
--- /dev/null
+++ b/gcc/testsuite/gnat.dg/assert1.adb
@@ -0,0 +1,39 @@
+-- { dg-do run }
+-- { dg-options "-gnatws" }
+
+pragma Assertion_Policy (Check);
+with Text_IO; use Text_IO;
+procedure assert1 is
+ type p1 is array (1 .. 113) of Boolean;
+ pragma Pack (p1);
+ type p2 is array (1 .. 13) of Boolean;
+ pragma Pack (p2);
+ type p3 is array (1 .. 113) of Boolean;
+ pragma Pack (p3);
+ for p3'size use 113;
+ type p4 is array (1 .. 13) of Boolean;
+ pragma Pack (p4);
+ for p4'size use 13;
+ v1 : p1;
+ v2 : p2;
+ v3 : p3;
+ v4 : p4;
+begin
+ pragma Assert (p1'Size = 120);
+ pragma Assert (p2'Size = 13);
+ pragma Assert (p3'Size = 113);
+ pragma Assert (p4'Size = 13);
+ pragma Assert (p1'Value_Size = 120);
+ pragma Assert (p2'Value_Size = 13);
+ pragma Assert (p3'Value_Size = 113);
+ pragma Assert (p4'Value_Size = 13);
+ pragma Assert (p1'Object_Size = 120);
+ pragma Assert (p2'Object_Size = 16);
+ pragma Assert (p3'Object_Size = 120);
+ pragma Assert (p4'Object_Size = 16);
+ pragma Assert (v1'Size = 120);
+ pragma Assert (v2'Size = 16);
+ pragma Assert (v3'Size = 120);
+ pragma Assert (v4'Size = 16);
+ null;
+end;