Fixes for integer truncation - #153
Open
ifranzki wants to merge 2 commits into
Open
Travis CI / Travis CI - Pull Request
succeeded
Sep 1, 2026 in 8m 20s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #153 Fixes for integer truncation.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build has three jobs, running in parallel.
| Job | Compiler | ENV | OS | State |
|---|---|---|---|---|
| gcc | CONFIG_OPTS="--enable-fips --enable-internal-tests" | Linux | passed | |
| clang | CONFIG_OPTS="--enable-fips --enable-internal-tests" | Linux | passed | |
| gcc | CONFIG_OPTS="--enable-fips --enable-internal-tests --enable-sanitizer" | Linux | passed |
Build Configuration
| Build Option | Setting |
|---|---|
| Language | C |
| Operating System | Linux (Jammy) |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "jammy",
"jobs": {
"include": [
{
"name": "linux-s390x-gcc",
"os": "linux",
"arch": "s390x",
"compiler": "gcc",
"env": [
{
"CONFIG_OPTS": "\"--enable-fips --enable-internal-tests\""
}
]
},
{
"name": "linux-s390x-clang",
"os": "linux",
"arch": "s390x",
"compiler": "clang",
"env": [
{
"CONFIG_OPTS": "\"--enable-fips --enable-internal-tests\""
}
]
},
{
"name": "linux-s390x-sanitizer",
"os": "linux",
"arch": "s390x",
"compiler": "gcc",
"env": [
{
"CONFIG_OPTS": "\"--enable-fips --enable-internal-tests --enable-sanitizer\""
}
]
}
]
},
"before_script": [
"./bootstrap.sh 2> >(tee)"
],
"script": [
"./configure $CONFIG_OPTS 2> >(tee) && make check V=0 2> >(tee)",
"cat test/test-suite.log"
]
}
Loading