mirror of
https://github.com/Kitware/CMake.git
synced 2026-06-24 08:47:59 +00:00
Fuzz the CMake GCC-style dependency file parser. Tests parsing of .d files from compiler output.
46 lines
411 B
Plaintext
46 lines
411 B
Plaintext
# GCC depfile dictionary
|
|
|
|
# Target separator
|
|
":"
|
|
|
|
# Dependency continuation
|
|
"\\"
|
|
|
|
# Whitespace
|
|
" "
|
|
"\x09"
|
|
"\x0a"
|
|
|
|
# Common file extensions
|
|
".o"
|
|
".obj"
|
|
".d"
|
|
".cpp"
|
|
".c"
|
|
".h"
|
|
".hpp"
|
|
".hxx"
|
|
|
|
# Escape sequences
|
|
"\\ "
|
|
"\\#"
|
|
"\\:"
|
|
|
|
# Special characters
|
|
"#"
|
|
"$"
|
|
|
|
# Common paths
|
|
"/usr/include/"
|
|
"/usr/local/include/"
|
|
"../include/"
|
|
"./src/"
|
|
|
|
# Common headers
|
|
"stdio.h"
|
|
"stdlib.h"
|
|
"string.h"
|
|
"iostream"
|
|
"vector"
|
|
"string"
|