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
a7cbf048
Commit
a7cbf048
authored
Jul 31, 2011
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Plain Diff
merge heads.
parents
b351a48e
ecd3e38f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
25 deletions
+15
-25
Makefile.pre.in
Makefile.pre.in
+15
-25
No files found.
Makefile.pre.in
View file @
a7cbf048
...
...
@@ -747,23 +747,22 @@ $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
######################################################################
# Test the interpreter (twice, once without .pyc files, once with)
# In the past, we've had problems where bugs in the marshalling or
# elsewhere caused bytecode read from .pyc files to behave differently
# than bytecode generated directly from a .py source file. Sometimes
# the bytecode read from a .pyc file had the bug, somtimes the directly
# generated bytecode. This is sometimes a very shy bug needing a lot of
# sample data.
TESTOPTS
=
-l
$(EXTRATESTOPTS)
# Run a basic set of regression tests.
# This excludes some tests that are particularly resource-intensive.
TESTOPTS
=
-j0
$(EXTRATESTOPTS)
TESTPROG
=
$(srcdir)
/Lib/test/regrtest.py
TESTPYTHON
=
$(RUNSHARED)
./
$(BUILDPYTHON)
-Wd
-E
-bb
$(TESTPYTHONOPTS)
TESTTIMEOUT
=
3600
test
:
all platform
-
find
$(srcdir)
/Lib
-name
'*.py[co]'
-print
| xargs
rm
-f
-
$(TESTPYTHON)
$(TESTPROG)
$(TESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
$(TESTOPTS)
# Run the full test suite twice - once without .pyc files, and once with.
# In the past, we've had problems where bugs in the marshalling or
# elsewhere caused bytecode read from .pyc files to behave differently
# than bytecode generated directly from a .py source file. Sometimes
# the bytecode read from a .pyc file had the bug, sometimes the directly
# generated bytecode. This is sometimes a very shy bug needing a lot of
# sample data.
testall
:
all platform
-
find
$(srcdir)
/Lib
-name
'*.py[co]'
-print
| xargs
rm
-f
$(TESTPYTHON)
$(srcdir)
/Lib/compileall.py
...
...
@@ -771,21 +770,18 @@ testall: all platform
-
$(TESTPYTHON)
$(TESTPROG)
-uall
$(TESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
-uall
$(TESTOPTS)
#
Run the unitests for both architectures in a Universal build on OSX
#
Must be run on an Intel box.
#
Run the test suite for both architectures in a Universal build on OSX.
# Must be run on an Intel box.
testuniversal
:
all platform
if
[
`
arch
`
!=
'i386'
]
;
then
\
echo
"This can only be used on OSX/i386"
;
\
exit
1
;
\
fi
-
find
$(srcdir)
/Lib
-name
'*.py[co]'
-print
| xargs
rm
-f
-
$(TESTPYTHON)
$(TESTPROG)
-uall
$(TESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
-uall
$(TESTOPTS)
$(RUNSHARED)
/usr/libexec/oah/translate ./
$(BUILDPYTHON)
-E
$(TESTPROG)
-uall
$(TESTOPTS)
# Like testall, but with a single pass only
# run an optional script to include some information about the build environment
# Like testall, but with only one pass.
# Run an optional script to include information about the build environment.
buildbottest
:
all platform
-
@if which pybuildbot.identify
>
/dev/null 2>&1
;
then
\
pybuildbot.identify
"CC='
$(CC)
'"
"CXX='
$(CXX)
'"
;
\
...
...
@@ -801,12 +797,6 @@ quicktest: all platform
-
$(TESTPYTHON)
$(TESTPROG)
$(QUICKTESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
$(QUICKTESTOPTS)
MEMTESTOPTS
=
$(QUICKTESTOPTS)
-x
test_dl test___all__ test_fork1
\
test_longexp
memtest
:
all platform
-
rm
-f
$(srcdir)
/Lib/test/
*
.py[co]
-
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
$(TESTPYTHON)
$(TESTPROG)
$(MEMTESTOPTS)
install
:
altinstall bininstall
...
...
@@ -1381,7 +1371,7 @@ patchcheck:
Python/thread.o
:
@THREADHEADERS@
# Declare targets that aren't real files
.PHONY
:
all build_all sharedmods oldsharedmods test quicktest
memtest
.PHONY
:
all build_all sharedmods oldsharedmods test quicktest
.PHONY
:
install altinstall oldsharedinstall bininstall altbininstall
.PHONY
:
maninstall libinstall inclinstall libainstall sharedinstall
.PHONY
:
frameworkinstall frameworkinstallframework frameworkinstallstructure
...
...
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