From: Georg Baum Date: Sat, 15 Dec 2012 16:47:09 +0000 (+0100) Subject: Do not call tex2lyx in roundtrip mode for tests X-Git-Tag: 2.1.0beta1~1085 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3d4da7fa6161a37b8b8bf0fd4ede83bad74bb5f8;p=features.git Do not call tex2lyx in roundtrip mode for tests --- diff --git a/src/tex2lyx/test/runtests.py b/src/tex2lyx/test/runtests.py index 358aa4ecc5..406a96e22e 100755 --- a/src/tex2lyx/test/runtests.py +++ b/src/tex2lyx/test/runtests.py @@ -58,10 +58,12 @@ def main(argv): (base, ext) = os.path.splitext(f) texfile = os.path.join(inputdir, f) if overwrite: + # we are updating the test references, so use roundtrip to allow + # for checking the LyX export as well. cmd = '%s -roundtrip -f %s' % (tex2lyx, texfile) else: lyxfile = os.path.join(outputdir, base + ".lyx") - cmd = '%s -roundtrip -copyfiles -f %s %s' % (tex2lyx, texfile, lyxfile) + cmd = '%s -copyfiles -f %s %s' % (tex2lyx, texfile, lyxfile) proc = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True) proc.wait() err = proc.returncode