Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / objc.dg / gnu-encoding / gnu-encoding.exp
blobf1cd252a0ec55716bfdb30727f0d522e38c855c7
1 # GCC Objective-C testsuite that uses the `dg.exp' driver.
2 # Copyright (C) 1997, 2001 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 # Load support procs.
19 load_lib objc-dg.exp
21 # If a testcase doesn't have special options, use these.
22 global DEFAULT_CFLAGS
23 if ![info exists DEFAULT_CFLAGS] then {
24 set DEFAULT_CFLAGS "-fgnu-runtime"
27 # Initialize `dg'.
28 dg-init
31 # gnu-encoding tests
33 set tstobjdir "$tmpdir/objc.dg-struct-layout-encoding-1"
34 set generator "$tmpdir/objc.dg-struct-layout-encoding-1_generate"
36 set generator_src "$srcdir/$subdir/struct-layout-encoding-1_generate.c"
37 set generator_src "$generator_src $srcdir/$subdir/generate-random.c"
38 set generator_src "$generator_src $srcdir/$subdir/generate-random_r.c"
39 set generator_cmd "-o $generator $generator_src"
40 set status [remote_exec host "$HOSTCC $HOSTCFLAGS $generator_cmd"]
41 set status [lindex $status 0]
42 if { $status == 0 } then {
43 file delete -force $tstobjdir
44 file mkdir $tstobjdir
45 set generator_args "-s $srcdir/$subdir -d $tstobjdir"
46 # set generator_args "$generator_args -n 15000"
47 set status [remote_exec host "$generator $generator_args"]
48 set status [lindex $status 0]
49 if { $status == 0 } then {
50 foreach src [lsort [find $tstobjdir *_main.m]] {
51 # If we're only testing specific files and this isn't one
52 # of them, skip it.
53 if ![runtest_file_p $runtests $src] then {
54 continue
57 dg-runtest $src "" $DEFAULT_CFLAGS
59 } else {
60 warning "Could not execute objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
62 } else {
63 warning "Could not compile objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
71 # All done.
72 dg-finish