- Commit
- e56cd9e8fa1ed0fbda3bee7eba1b13829ba44082
- Parent
- 440a56ba2b12e1c5d068ab6d8a5768d7470d5a31
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Don't open shared library if --dump-tests or --debug-normalization.
My personal build of CMark ✏️
Don't open shared library if --dump-tests or --debug-normalization.
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | runtests.py | 2 | 1 | 1 |
diff --git 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':