Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
1f1619c5
Commit
1f1619c5
authored
Mar 18, 2002
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
Old testscript removed.
Rev: src/testsuite/runtests:1.4(DEAD)
parent
9c0016ff
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/testsuite/runtests
+0
-40
0 additions, 40 deletions
src/testsuite/runtests
with
0 additions
and
40 deletions
src/testsuite/runtests
deleted
100755 → 0
+
0
−
40
View file @
9c0016ff
#! /bin/sh
# Runs the test programs provided on the command line.
failed
=
0
all
=
0
if
[
-z
"
$srcdir
"
]
;
then
srcdir
=
`
pwd
`
fi
export
srcdir
for
t
in
"
$@
"
;
do
if
[
-s
$t
]
;
then
dir
=
.
else
dir
=
$srcdir
fi
if
$dir
/
$t
;
then
echo
"PASS:
$t
"
else
echo
"FAIL:
$t
"
failed
=
`
expr
$failed
+ 1
`
fi
all
=
`
expr
$all
+ 1
`
done
if
[
$failed
-eq
0
]
;
then
banner
=
"All
$all
tests passed"
else
banner
=
"
$failed
of
$all
tests failed"
fi
dashes
=
`
echo
"
$banner
"
|
sed
s/./
=
/g
`
echo
"
$dashes
"
echo
"
$banner
"
echo
"
$dashes
"
[
"
$failed
"
-eq
0
]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment