Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ff2d7a7f
Commit
ff2d7a7f
authored
Jan 07, 2010
by
R. David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add -W to the 'basics', 'opt', and 'all' test runs so that we get verbose
information if a failure happens.
parent
705a3582
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Misc/build.sh
Misc/build.sh
+4
-4
No files found.
Misc/build.sh
View file @
ff2d7a7f
#!/bin/sh
#!/bin/sh
-x
## Script to build and test the latest python from svn. It basically
## does this:
...
...
@@ -212,7 +212,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
## make and run basic tests
F
=
make-test.out
start
=
`
current_time
`
$PYTHON
$REGRTEST_ARGS
-u
urlfetch
>
& build/
$F
$PYTHON
$REGRTEST_ARGS
-
W
-
u
urlfetch
>
& build/
$F
NUM_FAILURES
=
`
count_failures build/
$F
`
place_summary_first build/
$F
update_status
"Testing basics (
$NUM_FAILURES
failures)"
"
$F
"
$start
...
...
@@ -220,7 +220,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
F
=
make-test-opt.out
start
=
`
current_time
`
$PYTHON
-O
$REGRTEST_ARGS
-u
urlfetch
>
& build/
$F
$PYTHON
-O
$REGRTEST_ARGS
-
W
-
u
urlfetch
>
& build/
$F
NUM_FAILURES
=
`
count_failures build/
$F
`
place_summary_first build/
$F
update_status
"Testing opt (
$NUM_FAILURES
failures)"
"
$F
"
$start
...
...
@@ -243,7 +243,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
start
=
`
current_time
`
## skip curses when running from cron since there's no terminal
## skip sound since it's not setup on the PSF box (/dev/dsp)
$PYTHON
$REGRTEST_ARGS
-uall
-x
test_curses test_linuxaudiodev test_ossaudiodev
>
& build/
$F
$PYTHON
$REGRTEST_ARGS
-
W
-
uall
-x
test_curses test_linuxaudiodev test_ossaudiodev
>
& build/
$F
NUM_FAILURES
=
`
count_failures build/
$F
`
place_summary_first build/
$F
update_status
"Testing all except curses and sound (
$NUM_FAILURES
failures)"
"
$F
"
$start
...
...
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