mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
21
mozglue/linker/tests/run_test_zip.py
Normal file
21
mozglue/linker/tests/run_test_zip.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env python
|
||||
#
|
||||
# Any copyright is dedicated to the Public Domain.
|
||||
# http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
||||
import buildconfig
|
||||
import mozpack.path as mozpath
|
||||
import mozunit
|
||||
import subprocess
|
||||
import unittest
|
||||
|
||||
class TestZip(unittest.TestCase):
|
||||
def test_zip(self):
|
||||
srcdir = mozpath.dirname(__file__)
|
||||
relsrcdir = mozpath.relpath(srcdir, buildconfig.topsrcdir)
|
||||
test_bin = mozpath.join(buildconfig.topobjdir, relsrcdir,
|
||||
'TestZip' + buildconfig.substs['BIN_SUFFIX'])
|
||||
self.assertEqual(0, subprocess.call([test_bin, srcdir]))
|
||||
|
||||
if __name__ == '__main__':
|
||||
mozunit.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue