From e56cd9e8fa1ed0fbda3bee7eba1b13829ba44082 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 25 Nov 2014 11:23:31 -0800 Subject: Don't open shared library if --dump-tests or --debug-normalization. --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtests.py') diff --git a/runtests.py b/runtests.py index 5468041..601508d 100755 --- a/runtests.py +++ b/runtests.py @@ -34,7 +34,7 @@ if __name__ == "__main__": default=False, help='filter stdin through normalizer for testing') args = parser.parse_args(sys.argv[1:]) -if not args.program: +if not (args.program or args.dump_tests or args.debug_normalization): sysname = platform.system() libname = "libcmark" if sysname == 'Darwin': -- cgit v1.2.3