3 # Script to do performance testing.
6 # check_performance SRC_DIR BUILD_DIR
13 # Now that we've successfully translated the numerical option into
14 # a symbolic one, we can safely ignore it.
17 # This has been true all along. Found out about it the hard way...
20 echo 'You need bash 2.x to run check_performance. Exiting.';
25 flags_script
=$BUILD_DIR/scripts
/testsuite_flags
26 INCLUDES
=`$flags_script --build-includes`
27 FLAGS
=`$flags_script --cxxflags`
28 COMPILER
=`$flags_script --build-cxx`
29 SH_FLAG
="-Wl,--rpath -Wl,$BUILD_DIR/../../gcc \
30 -Wl,--rpath -Wl,$BUILD_DIR/src/.libs"
33 CXX
="$COMPILER $INCLUDES $FLAGS $LINK"
36 TESTS_FILE
="testsuite_files_performance"
38 for NAME
in `cat $TESTS_FILE`
41 FILE_NAME
="`basename $NAME`"
42 EXE_NAME
="`echo $FILE_NAME | sed 's/cc$/exe/'`"
43 $CXX $SRC_DIR/testsuite
/$NAME -o $EXE_NAME