8000 BUG: longdouble with elsize 12 is never uint alignable by mattip · Pull Request #12611 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: longdouble with elsize 12 is never uint alignable #12611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 26, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
DEV: activate assert code in 32bit linux via -UNDEBUG
  • Loading branch information
mattip committed Dec 25, 2018
commit d2ec5a1ce85fb670e23ebd266e413fd4341d2ff8
5 changes: 3 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ trigger:
- master
- maintenance/*
jobs:
- job: Linux_Python_36_32bit_full
- job: Linux_Python_36_32bit_full_with_asserts
pool:
vmIMage: 'ubuntu-16.04'
steps:
Expand All @@ -26,7 +26,8 @@ jobs:
cp ./usr/local/include/* /usr/include && \
cd ../numpy && \
NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1 \
F77=gfortran-5 F90=gfortran-5 python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml"
F77=gfortran-5 F90=gfortran-5 \
CFLAGS=-UNDEBUG python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml"
displayName: 'Run 32-bit Ubuntu Docker Build / Tests'
- task: PublishTestResults@2
inputs:
Expand Down
0