X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=tests%2Fpdtest;h=ef0c3503ad23d780d3c4b201d1255e1e78f44ce1;hp=ac511650021ebd5090d8d21da880da2c7bf8684c;hb=caa4b2cc0cdb34570e0fe8e5a6dad05a2988cc89;hpb=554a49f9df0ee8c57d7fae64515cf57d622b0511 diff --git a/tests/pdtest b/tests/pdtest index ac51165..ef0c350 100755 --- a/tests/pdtest +++ b/tests/pdtest @@ -7,7 +7,7 @@ from tempfile import mkstemp from subprocess import Popen, PIPE from difflib import Differ -DEBUG = False +DEBUG = 0 VERBOSE = False @@ -221,6 +221,8 @@ def run_tests(tests): for tclist in tests: for tc in tclist: args = [cmd] + if DEBUG > 1: + args.append('-d') for pd in tc['pdlist']: args.extend(['-P', pd['name']]) for label, probe in pd['probes']: @@ -358,7 +360,7 @@ report_dir = None opts, args = getopt(sys.argv[1:], "dvarslRS:") for opt, arg in opts: if opt == '-d': - DEBUG = True + DEBUG += 1 if opt == '-v': VERBOSE = True elif opt == '-a':