Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(411)

Side by Side Diff: third_party/libxslt/src/win32/runtests.py

Issue 2865973002: Check in the libxslt roll script. (Closed)
Patch Set: Consistent quotes. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 import io 1 import io
2 import os 2 import os
3 import sys 3 import sys
4 import difflib 4 import difflib
5 5
6 from os import path 6 from os import path
7 from subprocess import Popen, PIPE 7 from subprocess import Popen, PIPE
8 8
9 xsltproc = path.join(os.getcwd(), "win32", "bin.msvc", "xsltproc.exe") 9 xsltproc = path.join(os.getcwd(), "win32", "bin.msvc", "xsltproc.exe")
10 if not path.isfile(xsltproc): 10 if not path.isfile(xsltproc):
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 print("## Running exslt strings tests") 79 print("## Running exslt strings tests")
80 runtests("tests/exslt/strings") 80 runtests("tests/exslt/strings")
81 81
82 print("## Running exslt dynamic tests") 82 print("## Running exslt dynamic tests")
83 runtests("tests/exslt/dynamic") 83 runtests("tests/exslt/dynamic")
84 84
85 print("## Running exslt date tests") 85 print("## Running exslt date tests")
86 runtests("tests/exslt/date") 86 runtests("tests/exslt/date")
87 87
OLDNEW
« no previous file with comments | « third_party/libxslt/src/win32/libxslt/xsltproc.dsp ('k') | third_party/libxslt/src/xsltConf.sh.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698