Files
cmake/Tests/Fuzzing/cmCMakePath.dict
T
Leslie P. Polzer 78992bf2ea Tests/Fuzzing: Add cmCMakePathFuzzer
Fuzz the CMake path manipulation utilities.
Tests cmake_path() operations.
2026-01-20 14:06:35 -05:00

62 lines
510 B
Plaintext

# CMake path dictionary
# Separators
"/"
"\\"
":"
# Unix paths
"/usr"
"/usr/local"
"/home"
"/tmp"
"/var"
"/etc"
"/opt"
"/bin"
"/lib"
# Windows paths
"C:"
"D:"
"C:\\"
"Program Files"
"Windows"
# CMake directories
"CMakeFiles"
"cmake"
"share"
"lib"
"include"
"bin"
"build"
"src"
"source"
# Special paths
"."
".."
"./"
"../"
"~"
# Extensions
".cmake"
".txt"
".h"
".hpp"
".c"
".cpp"
".cxx"
".a"
".so"
".dll"
".lib"
# CMake files
"CMakeLists.txt"
"CMakeCache.txt"
"cmake_install.cmake"
"CTestTestfile.cmake"