Lucian Popescu
Lucian Popescu
The following test profiles have broken download links: ``` pts/cairo-demos-1.0.2 pts/daphne-1.0.0 pts/encode-ogg-1.6.1 pts/encode-opus-1.1.1 pts/gromacs-1.8.0 pts/gromacs-gpu-1.1.1 ```
Hi, The PTS [documentation](https://github.com/phoronix-test-suite/phoronix-test-suite/blob/master/documentation/phoronix-test-suite.md#compiler-testing--masking) states that: > The Phoronix Test Suite does respect CC/CXX environment variables Following is a list of test profiles that do not respect the CC/CXX environment...
Some install.sh scripts are formed of two steps: first they compile the benchmark and then they run some decompressing. Take the example of git/aom-av1-1.1.0 (comments mine): ``` #!/bin/sh ## compilation...
Hi, I tried to install temci with the following comand: ``` sudo pip3 install temci ``` But I got the following error: ``` × python setup.py egg_info did not run...
While running some static code analysis with clang-tidy over the john code-base I saw a dubious use of pcapngepb: https://github.com/openwall/john/blob/1c97519d09500ffcd24fd8d56541c1d3cf10ea87/src/wpapcap2john.c#L1983 It's dubious because pcapngepb is used uninitialized if this branch...
Previous checks were trying to validate that file->pos does not become negative. However, the method used for checking this contains possible undefined behaivor (UB) because of the signed integer overflow....