diff options
author | Tristan Gingold <tgingold@free.fr> | 2013-12-29 04:27:56 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2013-12-29 04:27:56 +0100 |
commit | 1ab7d75f4c4c6e281d1cd96084aae231481df609 (patch) | |
tree | d0be1ee51b474825fa3d58cf985a7fc6f102b696 /testsuite/gna/bug20771/20771.vhd | |
parent | 6e75035993a0f52456c300931ee32b24e2626696 (diff) | |
download | ghdl-1ab7d75f4c4c6e281d1cd96084aae231481df609.tar.gz ghdl-1ab7d75f4c4c6e281d1cd96084aae231481df609.tar.bz2 ghdl-1ab7d75f4c4c6e281d1cd96084aae231481df609.zip |
Add bug20771.
Diffstat (limited to 'testsuite/gna/bug20771/20771.vhd')
-rw-r--r-- | testsuite/gna/bug20771/20771.vhd | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/testsuite/gna/bug20771/20771.vhd b/testsuite/gna/bug20771/20771.vhd new file mode 100644 index 000000000..55968ae30 --- /dev/null +++ b/testsuite/gna/bug20771/20771.vhd @@ -0,0 +1,31 @@ +entity Jon is +end Jon; + +use std.textio.all; + +architecture Taylor of Jon is +begin + +process is + variable buf:line; + variable s : string(1 to 1); + + variable fstatus : file_open_status; + file readfile : text; + constant temp_string : string := "hello.txt"; +begin + file_open(fstatus, readfile, temp_string, read_mode); + report "open " & file_open_status'image(fstatus) severity note; + if fstatus = OPEN_OK then +-- while not endfile(readfile) + loop + readline(readfile, buf); + read(buf, s); + report "s= "& s severity note; + end loop; + end if; + report "done" severity note; + wait; +end process; + +end Taylor; |