From 6de2ce26bcd54824a065e4158f2b4f58623af863 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 23 Aug 2018 16:10:35 +0100 Subject: [PATCH] Fix comments in testsuite script * scripts/check_compile: Fix comments. From-SVN: r263814 --- libstdc++-v3/ChangeLog | 2 ++ libstdc++-v3/scripts/check_compile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 02dce1aad9f..722b45ad2e5 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,7 @@ 2018-08-23 Jonathan Wakely + * scripts/check_compile: Fix comments. + * include/debug/string (insert(__const_iterator, _InIter, _InIter)): [!_GLIBCXX_USE_CXX11_ABI]: Replace use of C++11-only cbegin() with begin(), for C++98 compatibility. diff --git a/libstdc++-v3/scripts/check_compile b/libstdc++-v3/scripts/check_compile index 76762e675ee..2f347ec9d30 100755 --- a/libstdc++-v3/scripts/check_compile +++ b/libstdc++-v3/scripts/check_compile @@ -1,9 +1,9 @@ #!/usr/bin/env bash -# Script to do performance testing. +# Script to do compilation-only testing. # Invocation -# check_performance SRC_DIR BUILD_DIR +# check_compile SRC_DIR BUILD_DIR # 1: variables # @@ -17,7 +17,7 @@ shift # This has been true all along. Found out about it the hard way... case $BASH_VERSION in 1*) - echo 'You need bash 2.x to run check_performance. Exiting.'; + echo 'You need bash 2.x to run check_compile. Exiting.'; exit 1 ;; *) ;; esac -- 2.30.2