OSDN Git Service

2005-01-20 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / scripts / check_compile
1 #!/usr/bin/env bash
2
3 # Script to do performance testing.
4
5 # Invocation 
6 # check_performance SRC_DIR BUILD_DIR
7
8 # 1: variables
9 #
10 SRC_DIR=$1
11 BUILD_DIR=$2
12
13 # Now that we've successfully translated the numerical option into
14 # a symbolic one, we can safely ignore it.
15 shift
16
17 # This has been true all along.  Found out about it the hard way...
18 case $BASH_VERSION in
19     1*)  
20         echo 'You need bash 2.x to run check_performance.  Exiting.'; 
21         exit 1 ;;
22     *)   ;;  
23 esac
24
25 flags_script=$BUILD_DIR/scripts/testsuite_flags
26 INCLUDES=`$flags_script --build-includes`
27 PCH_FLAGS=`$flags_script --cxxpchflags`
28 FLAGS=`$flags_script --cxxflags`
29 TEST_FLAGS="-S"
30 COMPILER=`$flags_script --build-cxx`
31 CXX="$COMPILER $INCLUDES $PCH_FLAGS $FLAGS $TEST_FLAGS"
32
33 TESTS_FILE="testsuite_files"
34
35 for NAME in `cat $TESTS_FILE`
36 do
37   if $RUN; then
38     echo $NAME
39     FILE_NAME="`basename $NAME`"
40     OUTPUT_NAME="`echo $FILE_NAME | sed 's/cc$/s/'`"
41     $CXX $SRC_DIR/testsuite/$NAME -o $OUTPUT_NAME
42     if [ -f $OUTPUT_NAME ]; then
43         rm $OUTPUT_NAME
44     fi
45     echo ""
46   fi
47 done
48
49 exit 0