Home
last modified time | relevance | path

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

/external/protobuf/src/google/protobuf/compiler/
Dzip_output_unittest.sh54 ' > $TEST_TMPDIR/testzip.proto
57 --cpp_out=$TEST_TMPDIR/testzip.zip --python_out=$TEST_TMPDIR/testzip.zip \
58 --java_out=$TEST_TMPDIR/testzip.jar -I$TEST_TMPDIR testzip.proto \
63 $UNZIP -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list \
66 grep 'testing: testzip\.pb\.cc *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
68 grep 'testing: testzip\.pb\.h *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
70 grep 'testing: testzip_pb2\.py *OK$' $TEST_TMPDIR/testzip.list > /dev/null \
72 grep -i 'manifest' $TEST_TMPDIR/testzip.list > /dev/null \
79 if $JAR c $TEST_TMPDIR/testzip.proto > /dev/null; then
80 $JAR tf $TEST_TMPDIR/testzip.jar > $TEST_TMPDIR/testzip.list \
[all …]
/external/protobuf/
D.gitignore73 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.am60 testzip.jar testzip.list testzip.proto testzip.zip \
/external/python/cpython2/Lib/
Dzipfile.py891 def testzip(self): member in ZipFile
1502 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/python/cpython3/Lib/test/
Dtest_zipfile.py121 zipfp.testzip()
745 zipfp.testzip()
1740 self.assertRaises(ValueError, zipf.testzip)
1960 self.assertIsNone(zipf.testzip())
2051 self.assertEqual('afile', zipf.testzip())
/external/python/cpython3/Doc/library/
Dzipfile.rst378 .. method:: ZipFile.testzip()
384 Calling :meth:`testzip` on a closed ZipFile will raise a
/external/python/cpython3/Lib/
Dzipfile.py1412 def testzip(self): member in ZipFile
2387 badfile = zf.testzip()
/external/python/cpython2/Misc/
DHISTORY4061 - ZipFile.testzip() now only traps BadZipfile exceptions. Previously,
/external/python/cpython3/Misc/
DHISTORY21445 - ZipFile.testzip() now only traps BadZipfile exceptions. Previously,