tau icon indicating copy to clipboard operation
tau copied to clipboard

A Micro (1k lines of code) Unit Test Framework for C/C++

Results 14 tau issues
Sort by recently updated
recently updated
newest added

``` /Users/horta/code/imm3/build/_deps/tau-src/tau/tau.h:440:9: warning: variable 'numActualDigits' set but not used [-Wunused-but-set-variable] int numActualDigits = 0; ^ /Users/horta/code/imm3/build/_deps/tau-src/tau/tau.h:441:9: warning: variable 'numExpectedDigits' set but not used [-Wunused-but-set-variable] int numExpectedDigits = 0; ```

This fixes the problem that `clang-10` is not available for newer versions of Ubuntu. Of course we could upgrade `clang` as well, but let's restore the functionality as it was,...

This should fix the CI builds for Windows that has been failing for quite some time with the following error message: ``` Cannot find path '... lib\mingw\tools\install\mingw64\x86_64-w64-mingw32\lib\libpthread.dll.a' ``` By upgrading...