aboutsummaryrefslogtreecommitdiff
path: root/test/Scripts/count
diff options
context:
space:
mode:
Diffstat (limited to 'test/Scripts/count')
-rwxr-xr-xtest/Scripts/count17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Scripts/count b/test/Scripts/count
deleted file mode 100755
index 1c3d7e0953b2..000000000000
--- a/test/Scripts/count
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-#
-# Program: count
-#
-# Synopsis: Count the number of lines of input on stdin and test that it
-# matches the specified number.
-#
-# Syntax: count <number>
-
-set -e
-set -u
-input_lines=`wc -l`
-if [ "$input_lines" -ne "$1" ]; then
- echo "count: expected $1 lines and got ${input_lines}."
- exit 1
-fi
-exit 0