repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gnat.dg
/
test_version.adb
blob
2b88a147a5cb9223f1872058d2f7c7d1849dc2c3
1
-- { dg-do run }
2
with
GNAT
.
Compiler_Version
;
3
procedure
Test_Version
is
4
package
Vsn
is new
GNAT
.
Compiler_Version
;
5
use
Vsn
;
6
X
:
constant
String
:=
Version
;
7
begin
8
if
X
'Length
=
78
then
9
-- 78 = Ver_Len_Max + Ver_Prefix'Length
10
-- actual version should be shorter than this
11
raise
Program_Error
;
12
end if
;
13
end
Test_Version
;