diff options
author | Kai Blin <kai@samba.org> | 2007-12-24 13:04:56 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-26 11:57:05 -0600 |
commit | 3c744ddd2c33a9a06013f357261b8ea86804e8e8 (patch) | |
tree | 431d069898a963280398c88b94f56498ac678aa8 /source4/lib/util | |
parent | 95b1f554b2c57a9f975a0cc27ca51bec6c7594d6 (diff) | |
download | samba-3c744ddd2c33a9a06013f357261b8ea86804e8e8.tar.gz samba-3c744ddd2c33a9a06013f357261b8ea86804e8e8.tar.bz2 samba-3c744ddd2c33a9a06013f357261b8ea86804e8e8.zip |
r26588: Janitorial: Rename torture_*_add_*test to torture_*_add_*test_const.
Also rename the corresponding wrap_ functions.
(This used to be commit e59c2eaf681f076d175b9779d1c27b5f74a57c96)
Diffstat (limited to 'source4/lib/util')
-rw-r--r-- | source4/lib/util/tests/strlist.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/lib/util/tests/strlist.c b/source4/lib/util/tests/strlist.c index 3ecb982e24..9af26f9e71 100644 --- a/source4/lib/util/tests/strlist.c +++ b/source4/lib/util/tests/strlist.c @@ -93,9 +93,8 @@ struct torture_suite *torture_local_util_strlist(TALLOC_CTX *mem_ctx) int i; for (i = 0; test_lists_shell_strings[i]; i++) { - torture_suite_add_simple_tcase(suite, - "lists_shell", test_lists_shell, - &test_lists_shell_strings[i]); + torture_suite_add_simple_tcase_const(suite, "lists_shell", + test_lists_shell, &test_lists_shell_strings[i]); } torture_suite_add_simple_test(suite, "list_copy", test_list_copy); |