aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2013-12-27 04:11:04 +0100
committerTristan Gingold <tgingold@free.fr>2013-12-27 04:11:04 +0100
commit620458ed156b7a1d779119dc916e4c1f357ec71e (patch)
treecbd293f8d420e82621b90fe60af5939d6dc41279 /testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write
parente673d2bc2f74ef6d63e5ae90cc0ccfff04e688ef (diff)
downloadghdl-620458ed156b7a1d779119dc916e4c1f357ec71e.tar.gz
ghdl-620458ed156b7a1d779119dc916e4c1f357ec71e.tar.bz2
ghdl-620458ed156b7a1d779119dc916e4c1f357ec71e.zip
vests testsuite: reorder some tests for file io.
Add some ENTITY option. Fix some tests.
Diffstat (limited to 'testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write')
-rw-r--r--testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_array_write.vhd2
-rw-r--r--testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_write.vhd4
2 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_array_write.vhd b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_array_write.vhd
index 1774062ea..b98fa52ea 100644
--- a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_array_write.vhd
+++ b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_array_write.vhd
@@ -28,7 +28,7 @@ architecture test0 of character_array_write is
type character_array_file is file of character_array;
begin
doit: process
- file fileout : character_array_file open write_mode is "character_array_write.out";
+ file fileout : character_array_file open write_mode is "character_array.file";
begin
write(fileout,('1','a','$','+'));
diff --git a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_write.vhd b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_write.vhd
index fab261a2c..aebdf4849 100644
--- a/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_write.vhd
+++ b/testsuite/vests/vhdl-93/clifton-labs/compliant/functional/textio/write/character_write.vhd
@@ -27,10 +27,10 @@ architecture test0 of character_write is
type character_file is file of character;
begin
doit: process
- file fileout : character_file open write_mode is "character_write.out";
+ file fileout : character_file open write_mode is "character.file";
begin
write(fileout, '1');
- write(fileout, 'a');
+ write(fileout, 'A');
write(fileout, '$');
write(fileout, '+');