Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
9b64c9e8
Commit
9b64c9e8
authored
Feb 09, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of runtest.sh shell script
parent
d742f37b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
35 deletions
+0
-35
lib/python/TAL/README
lib/python/TAL/README
+0
-1
lib/python/TAL/runtest.sh
lib/python/TAL/runtest.sh
+0
-34
No files found.
lib/python/TAL/README
View file @
9b64c9e8
...
...
@@ -62,7 +62,6 @@ setpath.py hack to set sys.path and import ZODB
__init__.py empty file that makes this directory a package
runtest.py Python script to run regression tests
ndiff.py helper for runtest.py to produce diffs
runtest.sh shell script to run regression tests (old)
test/ drectory with test files and output
Author and License
...
...
lib/python/TAL/runtest.sh
deleted
100755 → 0
View file @
d742f37b
#! /bin/sh
# Run the regression test suite
:
${
TMPDIR
=/tmp
}
flags
=
""
while
:
do
case
$1
in
-
*
)
flags
=
"
$flags
$1
"
;
shift
;;
*
)
break
;;
esac
done
for
test
in
${
*-test/test*.xml
}
do
out
=
`
echo
$test
|
sed
's,/[^/0-9]*\([0-9]*\).xml,/out\1.xml,'
`
tmp
=
$TMPDIR
/taltest
$$
`
basename
$test
`
./driver.py
$flags
$test
>
$tmp
case
$?
in
0
)
if
cmp
-s
$tmp
$out
then
echo
$test
OK
else
echo
"
$test
failed -- diff (expected vs. actual) follows"
diff
$out
$tmp
fi
;;
*
)
echo
$test
exit
status
$?
;;
esac
rm
$tmp
done
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