| [2] | 1 | #! /bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # (C) 1998, 2000 Free Software Foundation
|
|---|
| 4 | # Originally by Alexandre Oliva <[email protected]>
|
|---|
| 5 |
|
|---|
| 6 | # This script is Free Software, and it can be copied, distributed and
|
|---|
| 7 | # modified as defined in the GNU General Public License. A copy of
|
|---|
| 8 | # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
|
|---|
| 9 |
|
|---|
| 10 | # This scripts assumes it lives in the contrib directory of the GCC
|
|---|
| 11 | # source tree, so it will find the testsuite tree from its location.
|
|---|
| 12 | # If you move it elsewhere, or want to use another testsuite tree, you
|
|---|
| 13 | # can override the defaults with --srcdir=/some/dir/GCC or
|
|---|
| 14 | # --testsuite=/some/dir/GCC/gcc/testsuite. If you specify
|
|---|
| 15 | # --testsuite, --srcdir will be ignored; otherwise, `/gcc/testsuite'
|
|---|
| 16 | # will be appended to the srcdir.
|
|---|
| 17 |
|
|---|
| 18 | # You may specify where the binaries to be tested should be picked up
|
|---|
| |
|---|