diff options
author | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
commit | af962864b108d8fdd654edaf3c0300404ca07e3e (patch) | |
tree | 3a6877e15644a6da25570af9ee7aade000983ad4 /test/TEX | |
parent | 82c2f16e53cba1a639d568fe8d6780dfe30c56ab (diff) | |
download | SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.zip SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.gz SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.bz2 |
Get rid of indentation tabs in the test scripts and have runtest.py invoke them with the python -tt option to keep them out.
Diffstat (limited to 'test/TEX')
-rw-r--r-- | test/TEX/LATEX.py | 2 | ||||
-rw-r--r-- | test/TEX/LATEXFLAGS.py | 2 | ||||
-rw-r--r-- | test/TEX/PDFLATEX.py | 2 | ||||
-rw-r--r-- | test/TEX/PDFLATEXFLAGS.py | 2 | ||||
-rw-r--r-- | test/TEX/PDFTEX.py | 2 | ||||
-rw-r--r-- | test/TEX/PDFTEXFLAGS.py | 2 | ||||
-rw-r--r-- | test/TEX/TEX.py | 10 | ||||
-rw-r--r-- | test/TEX/TEXFLAGS.py | 2 |
8 files changed, 12 insertions, 12 deletions
diff --git a/test/TEX/LATEX.py b/test/TEX/LATEX.py index 4ed080f..4f19bc1 100644 --- a/test/TEX/LATEX.py +++ b/test/TEX/LATEX.py @@ -44,7 +44,7 @@ infile = open(sys.argv[1], 'rb') out_file = open(base_name+'.dvi', 'wb') for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/LATEXFLAGS.py b/test/TEX/LATEXFLAGS.py index badf85e..fa2348f 100644 --- a/test/TEX/LATEXFLAGS.py +++ b/test/TEX/LATEXFLAGS.py @@ -50,7 +50,7 @@ out_file = open(base_name+'.dvi', 'wb') out_file.write(opt_string + "\n") for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/PDFLATEX.py b/test/TEX/PDFLATEX.py index 4c6f84d..5dcfd0b 100644 --- a/test/TEX/PDFLATEX.py +++ b/test/TEX/PDFLATEX.py @@ -44,7 +44,7 @@ infile = open(sys.argv[1], 'rb') out_file = open(base_name+'.pdf', 'wb') for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/PDFLATEXFLAGS.py b/test/TEX/PDFLATEXFLAGS.py index 880d6d0..0b6a9fc 100644 --- a/test/TEX/PDFLATEXFLAGS.py +++ b/test/TEX/PDFLATEXFLAGS.py @@ -50,7 +50,7 @@ out_file = open(base_name+'.pdf', 'wb') out_file.write(opt_string + "\n") for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/PDFTEX.py b/test/TEX/PDFTEX.py index 2015c33..fa0d839 100644 --- a/test/TEX/PDFTEX.py +++ b/test/TEX/PDFTEX.py @@ -44,7 +44,7 @@ infile = open(sys.argv[1], 'rb') out_file = open(base_name+'.pdf', 'wb') for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/PDFTEXFLAGS.py b/test/TEX/PDFTEXFLAGS.py index fb1fbf0..1a0f8df 100644 --- a/test/TEX/PDFTEXFLAGS.py +++ b/test/TEX/PDFTEXFLAGS.py @@ -50,7 +50,7 @@ out_file = open(base_name+'.pdf', 'wb') out_file.write(opt_string + "\n") for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) diff --git a/test/TEX/TEX.py b/test/TEX/TEX.py index a2e69fa..a970822 100644 --- a/test/TEX/TEX.py +++ b/test/TEX/TEX.py @@ -44,7 +44,7 @@ infile = open(sys.argv[1], 'rb') out_file = open(base_name+'.dvi', 'wb') for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) @@ -129,10 +129,10 @@ Run \texttt{latex}, then \texttt{bibtex}, then \texttt{latex} twice again \cite{ bib = r""" @Book{lamport, - author = {L. Lamport}, - title = {{\LaTeX: A} Document Preparation System}, - publisher = {Addison-Wesley}, - year = 1994 + author = {L. Lamport}, + title = {{\LaTeX: A} Document Preparation System}, + publisher = {Addison-Wesley}, + year = 1994 } """ diff --git a/test/TEX/TEXFLAGS.py b/test/TEX/TEXFLAGS.py index fa5edb6..7bd602f 100644 --- a/test/TEX/TEXFLAGS.py +++ b/test/TEX/TEXFLAGS.py @@ -50,7 +50,7 @@ out_file = open(base_name+'.dvi', 'wb') out_file.write(opt_string + "\n") for l in infile.readlines(): if l[0] != '\\': - out_file.write(l) + out_file.write(l) sys.exit(0) """) |