summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2013-08-13 02:10:01 -0400
committerMartin Kosek <mkosek@redhat.com>2013-08-13 15:31:46 +0200
commitb9ec4d1a679f1485c9c109969e891269627d9f7f (patch)
treecf197642059f6fae5a9b99ab170d2b8546d97af2 /ipatests/test_xmlrpc
parentb561e85e4a7ae9f39a10951ed3cc5e2cc114edb2 (diff)
downloadfreeipa-b9ec4d1a679f1485c9c109969e891269627d9f7f.tar.gz
freeipa-b9ec4d1a679f1485c9c109969e891269627d9f7f.tar.xz
freeipa-b9ec4d1a679f1485c9c109969e891269627d9f7f.zip
Prevent *.pyo and *.pyc multilib problems
Differences in the python byte code fails in a build validation (rpmdiff) done on difference architecture of the same package. This patch: 1) Ensures that timestamps of generated *.pyo and *.pyc files match 2) Python integer literals greater or equal 2^32 and lower than 2^64 are converted to long right away to prevent different type of the integer on architectures with different size of int https://fedorahosted.org/freeipa/ticket/3858
Diffstat (limited to 'ipatests/test_xmlrpc')
-rw-r--r--ipatests/test_xmlrpc/test_dns_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipatests/test_xmlrpc/test_dns_plugin.py b/ipatests/test_xmlrpc/test_dns_plugin.py
index 9a3ce667b..1bfaee71e 100644
--- a/ipatests/test_xmlrpc/test_dns_plugin.py
+++ b/ipatests/test_xmlrpc/test_dns_plugin.py
@@ -1254,7 +1254,7 @@ class test_dns(Declarative):
dict(
desc='Set SOA serial of zone %r to high number' % dnszone1,
- command=('dnszone_mod', [dnszone1], {'idnssoaserial': 4294967295}),
+ command=('dnszone_mod', [dnszone1], {'idnssoaserial': 4294967295L}),
expected={
'value': dnszone1,
'summary': None,