Fossil

Check-in [cb3a8905]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the "fossil test-all-help -e" command so that it shows help for test commands and settings.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: cb3a89058c83f3343bea97574ea2e293865f022a7b7a73a01ff195eed85cb2c8
User & Date: drh 2018-12-12 14:28:13.578
Context
2018-12-12
18:15
Changing the Timeline submenu between "Basic" and "Advanced" should be a sticky setting. ... (check-in: 2be93e3d user: drh tags: trunk)
14:28
Fix the "fossil test-all-help -e" command so that it shows help for test commands and settings. ... (check-in: cb3a8905 user: drh tags: trunk)
12:42
Break out the Wiki setup items into a separate submenu of the Admin section. ... (check-in: bf09c3bb user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/dispatch.c.
263
264
265
266
267
268
269
270

271
272
273
274
275
276
277
  int mask = CMDFLAG_1ST_TIER | CMDFLAG_2ND_TIER;
  int useHtml = find_option("html","h",0)!=0;

  if( find_option("www","w",0) ){
    mask = CMDFLAG_WEBPAGE;
  }
  if( find_option("everything","e",0) ){
    mask = CMDFLAG_1ST_TIER | CMDFLAG_2ND_TIER | CMDFLAG_WEBPAGE;

  }
  if( find_option("settings","s",0) ){
    mask = CMDFLAG_SETTING;
  }
  if( find_option("test","t",0) ){
    mask |= CMDFLAG_TEST;
  }







|
>







263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
  int mask = CMDFLAG_1ST_TIER | CMDFLAG_2ND_TIER;
  int useHtml = find_option("html","h",0)!=0;

  if( find_option("www","w",0) ){
    mask = CMDFLAG_WEBPAGE;
  }
  if( find_option("everything","e",0) ){
    mask = CMDFLAG_1ST_TIER | CMDFLAG_2ND_TIER | CMDFLAG_WEBPAGE |
              CMDFLAG_SETTING | CMDFLAG_TEST;
  }
  if( find_option("settings","s",0) ){
    mask = CMDFLAG_SETTING;
  }
  if( find_option("test","t",0) ){
    mask |= CMDFLAG_TEST;
  }