Searched refs:testpath (Results 1 – 5 of 5) sorted by relevance
/third_party/ltp/testcases/kernel/controllers/pids/ |
D | pids.sh | 42 rmdir $testpath 64 testpath=$mount_point/ltp_pids_$caseno 70 ROD mkdir -p $testpath 75 start_pids_tasks2_path $testpath $1 94 stop_pids_tasks_path $testpath 113 pids_task1 "$testpath/tasks" 131 ROD echo $max \> $testpath/pids.max 136 pids_task1 "$testpath/tasks" 154 ROD echo $lim \> $testpath/pids.max 158 pids_task1 "$testpath/tasks" [all …]
|
/third_party/ltp/testcases/kernel/controllers/cpuacct/ |
D | cpuacct.sh | 54 testpath=$mount_point/ltp_$TST_ID 61 ROD mkdir $testpath 65 ROD mkdir $testpath/subgroup_$i 74 if [ -d "$testpath/subgroup_1" ]; then 75 rmdir $testpath/subgroup_* 78 rmdir $testpath 94 cpuacct_task $testpath/subgroup_$i/tasks & 105 tmp=`cat $testpath/subgroup_$i/cpuacct.usage` 120 ref=`cat $testpath/cpuacct.usage`
|
/third_party/littlefs/scripts/ |
D | test.py | 638 for testpath in args['test_paths']: 640 testpath, *filter = testpath.split('#') 644 if os.path.isdir(testpath): 645 testpath = testpath + '/*.toml' 646 elif os.path.isfile(testpath): 647 testpath = testpath 648 elif testpath.endswith('.toml'): 649 testpath = TEST_PATHS + '/' + testpath 651 testpath = TEST_PATHS + '/' + testpath + '.toml' 654 for path in glob.glob(testpath):
|
/third_party/glib/glib/ |
D | gtestutils.h | 327 void g_test_add_func (const char *testpath, 331 void g_test_add_data_func (const char *testpath, 336 void g_test_add_data_func_full (const char *testpath, 376 #define g_test_add(testpath, Fixture, tdata, fsetup, ftest, fteardown) \ argument 385 … (testpath, sizeof (Fixture), tdata, fsetup, ftest, fteardown); \ 568 void g_test_add_vtable (const char *testpath,
|
D | gtestutils.c | 2286 g_test_add_vtable (const char *testpath, in g_test_add_vtable() argument 2297 g_return_if_fail (testpath != NULL); in g_test_add_vtable() 2298 g_return_if_fail (g_path_is_absolute (testpath)); in g_test_add_vtable() 2300 g_return_if_fail (!test_isolate_dirs || strstr (testpath, "/.") == NULL); in g_test_add_vtable() 2303 segments = g_strsplit (testpath, "/", -1); in g_test_add_vtable() 2309 g_error ("invalid test case path: %s", testpath); in g_test_add_vtable() 2333 g_error ("duplicate test case path: %s", testpath); in g_test_add_vtable() 2494 g_test_add_func (const char *testpath, in g_test_add_func() argument 2497 g_return_if_fail (testpath != NULL); in g_test_add_func() 2498 g_return_if_fail (testpath[0] == '/'); in g_test_add_func() [all …]
|