Oliver Stöneberg
Oliver Stöneberg
The test suites were copied from other projects and are being re-distributed with the source release. There is no indication where they are coming from and they are essentially re-licensed...
The GNU compilers also support a line preprocessor directive with just a number without a file specified. ``` # 3 __LINE__ __FILE__ ``` `gcc -E output`: ``` # 0 "a.cpp"...
From `testsuite/clang-preprocessor-tests/hash_space.c` and uncovered by #490. ```cpp #define HASH # HASH define foo bar ``` `gcc -E` output: ``` # 0 "testsuite/clang-preprocessor-tests/hash_space.c" # 0 "" # 0 "" # 1...
From `testsuite/clang-preprocessor-tests/print_line_include.c` and uncovered by #490. `print_line_include.c` ```cpp #include "print_line_include.h" #include "print_line_include.h" ``` `print_line_include.h` ``` int x; ``` `gcc -E` output: ``` # 0 "testsuite/clang-preprocessor-tests/print_line_include.c" # 0 "" # 0...
`run-tests.py` has a number of test which have TODOs attached or are being skipped as whole. Each of these cases should have an associated issue.
The default shell in GitHub Actions does not include `-o pipefail`. You need to specify `shell: bash` for it to be included. That option will cause commands to fail in...
Encountered while working on #438. ```cpp # if __has_include_next() # endif ``` ``` a.cpp:1: syntax error: failed to evaluate #if condition, undefined function-like macro invocation: __has_include_next( ... ) ``` See...
Encountered while working on #475. ``` C:/msys64/mingw64/include/c++/15.1.0/bits/basic_string.h:1349: std::__cxx11::basic_string::const_reference std::__cxx11::basic_string::operator[](size_type) const [with _CharT = char; _Traits = std::char_traits; _Alloc = std::allocator; const_reference = const char&; size_type = long long unsigned int]:...