Home
last modified time | relevance | path

Searched refs:test_glob (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/tools/build/test/
Dbuiltin_glob.py12 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/
Dtest_pathlib.py2524 def test_glob(self): member in PosixPathTest
2625 def test_glob(self): member in WindowsPathTest