summaryrefslogtreecommitdiff
path: root/libstdc++-v3/scripts/check_compile
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2018-08-23 16:10:35 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2018-08-23 16:10:35 +0100
commit6de2ce26bcd54824a065e4158f2b4f58623af863 (patch)
tree4275f2ef78b95f115e82d75b2fd3c681b1c52603 /libstdc++-v3/scripts/check_compile
parent62852194225ed2df31ff6a600659e5cefbb1e8c0 (diff)
Fix comments in testsuite script
* scripts/check_compile: Fix comments. From-SVN: r263814
Diffstat (limited to 'libstdc++-v3/scripts/check_compile')
-rwxr-xr-xlibstdc++-v3/scripts/check_compile6
1 files changed, 3 insertions, 3 deletions
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