Ejemplo n.º 1
0
  def __init__(self, args):
    CheckOptions.__init__(self, args)
    self.missing_baseline_tests = set()

    self.untested_options = [
        'anon',
        'args-only',
        'debug',
        'download',
        'force-color',
        'force-pager',
        'generated',
        'help',
        'import',
        'no-color',
        'no-pager',
        'options',
        'price-exp',
        'revalued-total',
        'seed',
        'trace',
        'verbose',
        'verify',
        'verify-memory',
        'version'
    ]
Ejemplo n.º 2
0
    def __init__(self, args):
        CheckOptions.__init__(self, args)
        self.missing_baseline_tests = set()

        self.untested_options = [
            'anon', 'args-only', 'debug', 'download', 'force-pager',
            'generated', 'help', 'import', 'no-color', 'no-pager', 'options',
            'price-exp', 'revalued-total', 'seed', 'trace', 'verbose',
            'verify', 'verify-memory', 'version'
        ]
Ejemplo n.º 3
0
 def __init__(self, args):
   CheckOptions.__init__(self, args)
   self.option_pattern = '\.It Fl \\\\-([-A-Za-z]+)'
   self.function_pattern = '\.It Fn ([-A-Za-z_]+)'
   self.source_file = join(self.source, 'doc', 'ledger.1')
   self.source_type = 'manpage'
Ejemplo n.º 4
0
 def __init__(self, args):
     CheckOptions.__init__(self, args)
     self.option_pattern = '^@item\s+--([-A-Za-z]+)'
     self.function_pattern = '^@defun\s+([-A-Za-z_]+)'
     self.source_file = join(self.source, 'doc', 'ledger3.texi')
     self.source_type = 'texinfo'
Ejemplo n.º 5
0
 def __init__(self, args):
   CheckOptions.__init__(self, args)
   self.option_pattern = '^@item\s+--([-A-Za-z]+)'
   self.function_pattern = '^@defun\s+([-A-Za-z_]+)'
   self.source_file = join(self.source, 'doc', 'ledger3.texi')
   self.source_type = 'texinfo'
Ejemplo n.º 6
0
 def __init__(self, args):
     CheckOptions.__init__(self, args)
     self.option_pattern = '\.It Fl \\\\-([-A-Za-z]+)'
     self.function_pattern = '\.It Fn ([-A-Za-z_]+)'
     self.source_file = join(self.source, 'doc', 'ledger.1')
     self.source_type = 'manpage'