summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-03-02 18:27:45 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:06 -0500
commitacdfe6dcd85b6730f7960eaf518d298b11f7d621 (patch)
treeb5bfe8c28816aec7805693701c2473f20698c85c
parent648fe6610ef8fce0179cc10cb7162b402b2761ee (diff)
downloadsamba-acdfe6dcd85b6730f7960eaf518d298b11f7d621.tar.gz
samba-acdfe6dcd85b6730f7960eaf518d298b11f7d621.tar.bz2
samba-acdfe6dcd85b6730f7960eaf518d298b11f7d621.zip
r21661: Put direction in test name
(This used to be commit bb0ebdab63bd8ba643f372fda8fe2ef4d600035b)
-rw-r--r--source4/torture/ndr/ndr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/ndr/ndr.h b/source4/torture/ndr/ndr.h
index 6d3a840034..1bbeec7917 100644
--- a/source4/torture/ndr/ndr.h
+++ b/source4/torture/ndr/ndr.h
@@ -38,7 +38,7 @@ _PUBLIC_ struct torture_test *_torture_suite_add_ndr_pull_test(
sizeof(struct name), 0, (bool (*) (struct torture_context *, void *)) check_fn);
#define torture_suite_add_ndr_pull_fn_test(suite,name,data,flags,check_fn) \
- _torture_suite_add_ndr_pull_test(suite, #name, \
+ _torture_suite_add_ndr_pull_test(suite, #name "_" #flags, \
(ndr_pull_flags_fn_t)ndr_pull_ ## name, data_blob_talloc(suite, data, sizeof(data)), \
sizeof(struct name), flags, (bool (*) (struct torture_context *, void *)) check_fn);