Home
last modified time | relevance | path

Searched refs:testzip (Results 1 – 9 of 9) sorted by relevance

/external/protobuf/src/google/protobuf/compiler/
Dzip_output_unittest.sh52 ' > $TEST_TMPDIR/testzip.proto
55 --cpp_out=$TEST_TMPDIR/testzip.zip --python_out=$TEST_TMPDIR/testzip.zip \
56 --java_out=$TEST_TMPDIR/testzip.jar -I$TEST_TMPDIR testzip.proto \
61 unzip -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list || fail 'unzip failed.'
63 grep 'testing: testzip\.pb\.cc *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
65 grep 'testing: testzip\.pb\.h *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
67 grep 'testing: testzip_pb2\.py *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
69 grep -i 'manifest' $TEST_TMPDIR/testzip.list > /dev/null \
76 if jar c $TEST_TMPDIR/testzip.proto > /dev/null; then
77 jar tf $TEST_TMPDIR/testzip.jar > $TEST_TMPDIR/testzip.list || fail 'jar failed.'
[all …]
/external/protobuf/
D.gitignore69 src/testzip.*
/external/python/cpython2/Lib/test/
Dtest_zipfile.py116 zipfp.testzip()
742 zipfp.testzip()
1063 self.assertRaises(RuntimeError, zipf.testzip)
1189 self.assertEqual('afile', zipf.testzip())
1289 self.assertIsNone(zipf.testzip())
/external/protobuf/src/
DMakefile.am53 testzip.jar testzip.list testzip.proto testzip.zip
/external/python/cpython2/Lib/
Dzipfile.py894 def testzip(self): member in ZipFile
1504 badfile = zf.testzip()
Dtarfile.py2594 def testzip(self): member in TarFileCompat
/external/python/cpython2/Doc/library/
Dzipfile.rst273 .. method:: ZipFile.testzip()
277 :meth:`testzip` on a closed ZipFile will raise a :exc:`RuntimeError`.
/external/chromium-trace/catapult/third_party/zipfile/
Dzipfile_2_7_13.py894 def testzip(self): member in ZipFile
1504 badfile = zf.testzip()
/external/python/cpython2/Misc/
DHISTORY4061 - ZipFile.testzip() now only traps BadZipfile exceptions. Previously,