Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Christian Persch
poppler
Commits
0c744c93
Commit
0c744c93
authored
Oct 21, 2018
by
Elliott Sales de Andrade
Committed by
Albert Astals Cid
Nov 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regtest: Use print function everywhere.
parent
0c02573f
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
23 additions
and
1 deletion
+23
-1
regtest/Bisect.py
regtest/Bisect.py
+1
-0
regtest/Config.py
regtest/Config.py
+1
-0
regtest/HTMLReport.py
regtest/HTMLReport.py
+1
-0
regtest/InterruptibleQueue.py
regtest/InterruptibleQueue.py
+1
-0
regtest/Printer.py
regtest/Printer.py
+1
-0
regtest/TestReferences.py
regtest/TestReferences.py
+1
-0
regtest/TestRun.py
regtest/TestRun.py
+1
-0
regtest/Timer.py
regtest/Timer.py
+1
-0
regtest/Utils.py
regtest/Utils.py
+1
-0
regtest/backends/__init__.py
regtest/backends/__init__.py
+1
-0
regtest/backends/cairo.py
regtest/backends/cairo.py
+1
-0
regtest/backends/postscript.py
regtest/backends/postscript.py
+1
-0
regtest/backends/splash.py
regtest/backends/splash.py
+1
-0
regtest/backends/text.py
regtest/backends/text.py
+1
-0
regtest/builder/__init__.py
regtest/builder/__init__.py
+1
-0
regtest/builder/autotools.py
regtest/builder/autotools.py
+1
-0
regtest/commands/__init__.py
regtest/commands/__init__.py
+2
-1
regtest/commands/create-refs.py
regtest/commands/create-refs.py
+1
-0
regtest/commands/create-report.py
regtest/commands/create-report.py
+1
-0
regtest/commands/find-regression.py
regtest/commands/find-regression.py
+1
-0
regtest/commands/run-tests.py
regtest/commands/run-tests.py
+1
-0
regtest/main.py
regtest/main.py
+1
-0
No files found.
regtest/Bisect.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
builder
import
get_builder
from
TestRun
import
TestRun
...
...
regtest/Config.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
class
Config
:
...
...
regtest/HTMLReport.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
get_backend
,
get_all_backends
from
Config
import
Config
...
...
regtest/InterruptibleQueue.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
threading
import
Lock
,
Condition
from
collections
import
deque
...
...
regtest/Printer.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
sys
from
Config
import
Config
...
...
regtest/TestReferences.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
os
import
errno
...
...
regtest/TestRun.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
get_backend
,
get_all_backends
from
Config
import
Config
...
...
regtest/Timer.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
time
import
time
,
strftime
,
gmtime
...
...
regtest/Utils.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
os
...
...
regtest/backends/__init__.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
hashlib
import
os
...
...
regtest/backends/cairo.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
Backend
,
register_backend
import
subprocess
...
...
regtest/backends/postscript.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
Backend
,
register_backend
import
subprocess
...
...
regtest/backends/splash.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
Backend
,
register_backend
import
subprocess
...
...
regtest/backends/text.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
backends
import
Backend
,
register_backend
import
subprocess
...
...
regtest/builder/__init__.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
Config
import
Config
import
os
...
...
regtest/builder/autotools.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
builder
import
Builder
,
register_builder
import
os
...
...
regtest/commands/__init__.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
argparse
...
...
@@ -88,5 +89,5 @@ def print_help():
for
name
,
description
in
commands
:
print
(
" %-15s %s"
%
(
name
,
description
))
print
print
()
print
(
"For more information run 'poppler-regtest --help-command <command>'"
)
regtest/commands/create-refs.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
commands
import
Command
,
register_command
from
TestReferences
import
TestReferences
...
...
regtest/commands/create-report.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
commands
import
Command
,
register_command
from
HTMLReport
import
HTMLReport
...
...
regtest/commands/find-regression.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
commands
import
Command
,
register_command
from
Bisect
import
Bisect
...
...
regtest/commands/run-tests.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
from
commands
import
Command
,
register_command
from
TestRun
import
TestRun
...
...
regtest/main.py
View file @
0c744c93
...
...
@@ -15,6 +15,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from
__future__
import
print_function
import
sys
import
argparse
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment