dg-extract-results.sh: Check that the necessary python modules exist.
authorBernd Edlinger <bernd.edlinger@hotmail.de>
Fri, 6 Mar 2015 18:35:15 +0000 (18:35 +0000)
committerBernd Edlinger <edlinger@gcc.gnu.org>
Fri, 6 Mar 2015 18:35:15 +0000 (18:35 +0000)
2015-03-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>

        * dg-extract-results.sh: Check that the necessary python modules exist.

From-SVN: r221247

contrib/ChangeLog
contrib/dg-extract-results.sh

index 1d75f448b1366698911791ca72c7e9468e7a1ee4..f539588e0ca3f57cbda1c74a1e2b731317eb7e7c 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-06  Bernd Edlinger  <bernd.edlinger@hotmail.de>
+
+       * dg-extract-results.sh: Check that the necessary python modules exist.
+
 2015-02-05  Ilya Verbin  <ilya.verbin@intel.com>
 
        * gcc_update (files_and_dependencies): Add rules for liboffloadmic and
index 0ddf25b60a639cb90b21f038e8ad36e7a5c06390..5a8e67ea2fa7e59e29bffdc36f921b378ea0dcec 100755 (executable)
@@ -32,7 +32,7 @@ PROGNAME=dg-extract-results.sh
 PYTHON_VER=`echo "$0" | sed 's/sh$/py/'`
 if test "$PYTHON_VER" != "$0" &&
    test -f "$PYTHON_VER" &&
-   python -c 'import sys; sys.exit (0 if sys.version_info >= (2, 6) else 1)' \
+   python -c 'import sys, getopt, re, io, datetime, operator; sys.exit (0 if sys.version_info >= (2, 6) else 1)' \
      > /dev/null 2> /dev/null; then
   exec python $PYTHON_VER "$@"
 fi