Searched refs:test_glob (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/tools/build/test/ |
D | builtin_glob.py | 12 def test_glob(files, glob, expected, setup=""): function 30 test_glob([], "[ GLOB : ]", []) 31 test_glob([], "[ GLOB . : ]", []) 32 test_glob([], "[ GLOB : * ]", []) 35 test_glob([], "[ GLOB . : * ]", ["./file.jam"]) 38 test_glob([], "[ GLOB . : file*.jam ]", ["./file.jam"]) 39 test_glob([], "[ GLOB . : f*am ]", ["./file.jam"]) 41 test_glob([], "[ GLOB . : fi?e.?am ]", ["./file.jam"]) 42 test_glob([], "[ GLOB . : fi?.jam ]", []) 44 test_glob([], '[ GLOB . : "[f][i][l][e].jam" ]', ["./file.jam"]) [all …]
|
/third_party/python/Lib/test/ |
D | test_pathlib.py | 2524 def test_glob(self): member in PosixPathTest 2625 def test_glob(self): member in WindowsPathTest
|