s4-drs: additional delete test cases
[Samba/eduardoll.git] / source3 / utils / split_tokens.c
blobac4f7268e97d3e1158131ee095cff9db6984f8e3
1 /*
2 Unix SMB/CIFS implementation.
3 test program for the next_token() function
5 Copyright (C) 2009 Michael Adam
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * Diagnostic output for "next_token()".
26 #include "includes.h"
28 extern bool AllowDebugChange;
30 int main(int argc, const char *argv[])
32 const char *config_file = get_dyn_CONFIGFILE();
33 const char *sequence = "";
34 poptContext pc;
35 char *buff;
36 TALLOC_CTX *ctx = talloc_stackframe();
38 struct poptOption long_options[] = {
39 POPT_AUTOHELP
40 POPT_COMMON_VERSION
41 POPT_TABLEEND
44 load_case_tables();
46 pc = poptGetContext(NULL, argc, argv, long_options,
47 POPT_CONTEXT_KEEP_FIRST);
48 poptSetOtherOptionHelp(pc, "[OPTION...] <sequence-string>");
50 while(poptGetNextOpt(pc) != -1);
52 setup_logging(poptGetArg(pc), true);
54 sequence = poptGetArg(pc);
56 if (sequence == NULL) {
57 fprintf(stderr, "ERROR: missing sequence string\n");
58 return 1;
61 dbf = x_stderr;
62 DEBUGLEVEL = 0;
63 AllowDebugChange = false;
65 if (!lp_load(config_file,false,true,false,true)) {
66 fprintf(stderr,"Error loading services.\n");
67 return 1;
70 while(next_token_talloc(ctx, &sequence, &buff, NULL)) {
71 printf("[%s]\n", buff);
74 talloc_free(ctx);
76 return 0;