Skip to content

Commit

Permalink
Update list of tests requiring stack checking
Browse files Browse the repository at this point in the history
Add handling of tests using Ada 95 semantics and thus requiring -gnat95 switch


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@116944 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
charlet committed Sep 14, 2006
1 parent 83d28db commit 03af657
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
31 changes: 31 additions & 0 deletions gcc/testsuite/ada/acats/ada95.lst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
ac3106a
c34005p
c34005r
c34005s
c34005u
c34005v
c34006g
c34006j
c34006l
c34008a
c3a0014
c41103b
c41203b
c41306a
c460a01
c650001
c74302b
c74306a
c85014a
c85014b
c85014c
c87b26b
c87b41a
c99004a
cb40005
cc3019c
cc51b03
cc51d02
cd10002
cdd2a03
cxac005
4 changes: 4 additions & 0 deletions gcc/testsuite/ada/acats/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,10 @@ for chapter in $chapters; do
if [ $? -eq 0 ]; then
extraflags="$extraflags -fstack-check"
fi
grep $i $testdir/ada95.lst > /dev/null 2>&1
if [ $? -eq 0 ]; then
extraflags="$extraflags -gnat95"
fi
test=$dir/tests/$chapter/$i
mkdir $test && cd $test >> $dir/acats.log 2>&1

Expand Down
3 changes: 3 additions & 0 deletions gcc/testsuite/ada/acats/stackcheck.lst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
c52103x
c52104x
c52104y
cb1010a
cb1010c
cb1010d

0 comments on commit 03af657

Please sign in to comment.