Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
Pyston
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
Boxiang Sun
Pyston
Commits
5ae5bf2c
Commit
5ae5bf2c
authored
8 years ago
by
Kevin Modzelewski
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1235 from kmod/disable_clang_build
Temporarily disable the clang build on travis-CI
parents
b1137c13
251f48a0
zope_test_1
Zope_Test
get_set_1
getset
master
new_bytecode
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
.travis.yml
.travis.yml
+6
-6
src/capi/typeobject.cpp
src/capi/typeobject.cpp
+1
-1
No files found.
.travis.yml
View file @
5ae5bf2c
language
:
cpp
compiler
:
-
clang
#
- clang
-
gcc
env
:
...
...
@@ -13,8 +13,8 @@ env:
matrix
:
exclude
:
-
compiler
:
gcc
env
:
TRAVIS_BUILD_TYPE=Debug CCACHE_DIR=$HOME/.ccache_debug
#
- compiler: gcc
#
env: TRAVIS_BUILD_TYPE=Debug CCACHE_DIR=$HOME/.ccache_debug
# use travis-ci docker based infrastructure
sudo
:
false
...
...
@@ -28,12 +28,12 @@ addons:
apt
:
sources
:
-
kubuntu-backports
-
llvm-toolchain-precise-3.5
#
- llvm-toolchain-precise-3.5
-
ubuntu-toolchain-r-test
packages
:
-
autoconf
-
ccache
-
clang-3.5
#
- clang-3.5
-
cmake
-
g++-4.8
-
gdb
...
...
@@ -78,7 +78,7 @@ before_script:
script
:
-
ccache -z
-
ninja -j4 pyston check-deps && PYSTON_RUN_ARGS=G travis_wait
45
ctest --output-on-failure
-
ninja -j4 pyston check-deps && PYSTON_RUN_ARGS=G travis_wait
60
ctest --output-on-failure
-
ccache -s
-
if [ -n "$(git status --porcelain --untracked=no)" ]; then echo "test suite left the source directory dirty"; git status;
false
; fi
...
...
This diff is collapsed.
Click to expand it.
src/capi/typeobject.cpp
View file @
5ae5bf2c
...
...
@@ -3487,7 +3487,7 @@ static Box* tppProxyToTpCall(Box* self, CallRewriteArgs* rewrite_args, ArgPassSp
}
Box
*
proxyToTppCall
(
Box
*
self
,
Box
*
args
,
Box
*
kw
)
noexcept
{
assert
(
self
->
cls
->
tpp_call
.
get
<
CAPI
>
()
!=
NULL
&&
self
->
cls
->
tpp_call
.
get
<
CAPI
>
()
!=
tppProxyToTpCall
<
CAPI
>
);
assert
(
self
->
cls
->
tpp_call
.
get
<
CAPI
>
()
!=
NULL
&&
self
->
cls
->
tpp_call
.
get
<
CAPI
>
()
!=
&
tppProxyToTpCall
<
CAPI
>
);
return
self
->
cls
->
tpp_call
.
call
<
CAPI
>
(
self
,
NULL
,
ArgPassSpec
(
0
,
0
,
true
,
true
),
args
,
kw
,
NULL
,
NULL
,
NULL
);
}
...
...
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