| 1 |
309 |
jeremybenn |
# GCC Objective-C testsuite that uses the `dg.exp' driver.
|
| 2 |
|
|
# Copyright (C) 1997, 2001, 2007, 2008 Free Software Foundation, Inc.
|
| 3 |
|
|
|
| 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 3 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.
|
| 13 |
|
|
#
|
| 14 |
|
|
# You should have received a copy of the GNU General Public License
|
| 15 |
|
|
# along with GCC; see the file COPYING3. If not see
|
| 16 |
|
|
# .
|
| 17 |
|
|
|
| 18 |
|
|
# Load support procs.
|
| 19 |
|
|
load_lib objc-dg.exp
|
| 20 |
|
|
load_lib target-libpath.exp
|
| 21 |
|
|
|
| 22 |
|
|
# If a testcase doesn't have special options, use these.
|
| 23 |
|
|
global DEFAULT_CFLAGS
|
| 24 |
|
|
if ![info exists DEFAULT_CFLAGS] then {
|
| 25 |
|
|
set DEFAULT_CFLAGS "-fgnu-runtime"
|
| 26 |
|
|
}
|
| 27 |
|
|
|
| 28 |
|
|
# Initialize `dg'.
|
| 29 |
|
|
dg-init
|
| 30 |
|
|
|
| 31 |
|
|
#
|
| 32 |
|
|
# gnu-encoding tests
|
| 33 |
|
|
#
|
| 34 |
|
|
set tstobjdir "$tmpdir/objc.dg-struct-layout-encoding-1"
|
| 35 |
|
|
set generator "$tmpdir/objc.dg-struct-layout-encoding-1_generate"
|
| 36 |
|
|
|
| 37 |
|
|
set generator_src "$srcdir/$subdir/struct-layout-encoding-1_generate.c"
|
| 38 |
|
|
set generator_src "$generator_src $srcdir/$subdir/generate-random.c"
|
| 39 |
|
|
set generator_src "$generator_src $srcdir/$subdir/generate-random_r.c"
|
| 40 |
|
|
set generator_cmd "-o $generator $generator_src"
|
| 41 |
|
|
# Temporarily switch to the environment of the host compiler.
|
| 42 |
|
|
restore_ld_library_path_env_vars
|
| 43 |
|
|
set status [remote_exec build "$HOSTCC $HOSTCFLAGS $generator_cmd"]
|
| 44 |
|
|
set status [lindex $status 0]
|
| 45 |
|
|
set_ld_library_path_env_vars
|
| 46 |
|
|
if { $status == 0 } then {
|
| 47 |
|
|
file delete -force $tstobjdir
|
| 48 |
|
|
file mkdir $tstobjdir
|
| 49 |
|
|
set generator_args "-s $srcdir/$subdir -d $tstobjdir"
|
| 50 |
|
|
# set generator_args "$generator_args -n 15000"
|
| 51 |
|
|
set status [remote_exec host "$generator $generator_args"]
|
| 52 |
|
|
set status [lindex $status 0]
|
| 53 |
|
|
if { $status == 0 } then {
|
| 54 |
|
|
foreach src [lsort [find $tstobjdir *_main.m]] {
|
| 55 |
|
|
# If we're only testing specific files and this isn't one
|
| 56 |
|
|
# of them, skip it.
|
| 57 |
|
|
if ![runtest_file_p $runtests $src] then {
|
| 58 |
|
|
continue
|
| 59 |
|
|
}
|
| 60 |
|
|
|
| 61 |
|
|
dg-runtest $src "" $DEFAULT_CFLAGS
|
| 62 |
|
|
}
|
| 63 |
|
|
} else {
|
| 64 |
|
|
warning "Could not execute objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
|
| 65 |
|
|
}
|
| 66 |
|
|
} else {
|
| 67 |
|
|
warning "Could not compile objc.dg/gnu-encoding/struct-layout-encoding-1 generator"
|
| 68 |
|
|
}
|
| 69 |
|
|
|
| 70 |
|
|
|
| 71 |
|
|
|
| 72 |
|
|
|
| 73 |
|
|
|
| 74 |
|
|
|
| 75 |
|
|
# All done.
|
| 76 |
|
|
dg-finish
|
| 77 |
|
|
|