OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [scripts/] [create_testsuite_files] - Blame information for rev 20

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 20 jlechner
#!/bin/sh
2
 
3
# Constructs lists of source files (full pathnames) to test.  Two
4
# files are constructed: testsuite_files, which is used to test with
5
# the default dg-runtest command, and testsuite_files_interactive,
6
# which is used to test cases that require input to be entered. In
7
# addition, both lists are pruned of wchar_t tests if the toolchain
8
# under test does not support wchar_t functionality.
9
#
10
# We mimic the mkcheck script in that the first time this is run, all
11
# existing files are listed in "testsuite_files" in the output
12
# directory.  Subsequent runs pull the list from that file, allowing
13
# users to trim the list down to problematic tests, or just run
14
# paticular directories or sub-directories of tests.
15
#
16
# Selecting individual tests can also be done with RUNTESTFLAGS, but
17
# that doesn't really do all that we are trying to accomplish here.
18
 
19
LC_ALL=C
20
export LC_ALL
21
 
22
# Both of these are in the appropriate testsuite subdirectories.
23
srcdir="$1"
24
outdir="$2"
25
 
26
tmp="${TMPDIR:-/tmp}/ctt$$"
27
tests_file_normal="$outdir/testsuite_files"
28
tests_file_inter="$outdir/testsuite_files_interactive"
29
tests_file_perf="$outdir/testsuite_files_performance"
30
 
31
cd $srcdir
32
# This is the ugly version of "everything but the current directory".  It's
33
# what has to happen when find(1) doesn't support -mindepth, or -xtype.
34
dlist=`echo [0-9][0-9]*`
35
for d in [a-z]*; do
36
  test -d $d && dlist="$dlist $d"
37
done
38
find $dlist "(" -type f -o -type l ")" -name "*.cc" -print > $tmp.01
39
find $dlist "(" -type f -o -type l ")" -name "*.c" -print > $tmp.02
40
cat  $tmp.01 $tmp.02 | sort > $tmp.1
41
if test ! -s "$tmp.1"; then
42
  exit 1
43
fi
44
 
45
# Now filter out classes of tests.  These classes are run using special rules.
46
grep _xin $tmp.1 > $tests_file_inter
47
grep -v _xin $tmp.1 > $tmp.4
48
 
49
grep performance $tmp.4 > $tests_file_perf
50
grep -v performance $tmp.4 > $tmp.5
51
 
52
# ...more filters go here.
53
cp $tmp.5 $tests_file_normal
54
 
55
rm $tmp*
56
exit 0

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.