changeset 984:bcf3d04d6585

test-renames.t: don't use "seq" Seq is not a standard utility, and explicit loop should be more performant.
author Dmitrij D. Czarkoff <czarkoff@gmail.com>
date Thu, 14 Jan 2016 13:33:35 +0100
parents 296349f421c8
children 00afe8290cd4
files tests/test-renames.t
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tests/test-renames.t
+++ b/tests/test-renames.t
@@ -10,7 +10,7 @@
 
   $ git init -q gitrepo
   $ cd gitrepo
-  $ for i in $(seq 1 10); do echo $i >> alpha; done
+  $ for i in 1 2 3 4 5 6 7 8 9 10; do echo $i >> alpha; done
   $ git add alpha
   $ fn_git_commit -malpha