Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
3c2e0ba5
Commit
3c2e0ba5
authored
9 years ago
by
Christian Couder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ipfs-test-lib: implement test_seq()
License: MIT Signed-off-by:
Christian Couder
<
chriscool@tuxfamily.org
>
parent
898863d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
test/ipfs-test-lib.sh
test/ipfs-test-lib.sh
+13
-0
No files found.
test/ipfs-test-lib.sh
View file @
3c2e0ba5
...
...
@@ -22,3 +22,16 @@ test_sort_cmp() {
sort
"
$2
"
>
"
$2_sorted
"
&&
test_cmp
"
$1_sorted
"
"
$2_sorted
"
}
# Depending on GNU seq availability is not nice.
# Git also has test_seq but it uses Perl.
test_seq
()
{
test
"
$1
"
-le
"
$2
"
||
return
i
=
"
$1
"
j
=
"
$2
"
while
test
"
$i
"
-le
"
$j
"
do
echo
"
$i
"
i
=
$(
expr
"
$i
"
+ 1
)
done
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment