mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
Fuzz the CMake path manipulation utilities. Tests cmake_path() operations.
62 lines
510 B
Plaintext
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"
|