aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/awt/event/FocusEvent.java
diff options
context:
space:
mode:
authorPaolo Carlini <pcarlini@suse.de>2006-09-10 09:23:59 +0000
committerPaolo Carlini <paolo@gcc.gnu.org>2006-09-10 09:23:59 +0000
commit8cfb1bca834eda8c7996130c91a49e11244306cc (patch)
treee015385ca2c6cda8546ebacb902d942437391367 /libjava/classpath/java/awt/event/FocusEvent.java
parent1be1e2dd0ca378af29caebf419f36e5f7e17d589 (diff)
downloadgcc-8cfb1bca834eda8c7996130c91a49e11244306cc.zip
gcc-8cfb1bca834eda8c7996130c91a49e11244306cc.tar.gz
gcc-8cfb1bca834eda8c7996130c91a49e11244306cc.tar.bz2
stl_heap.h (sort_heap): Iterator post-decrement is only required to be convertible to the iterator type.
2006-09-10 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_heap.h (sort_heap): Iterator post-decrement is only required to be convertible to the iterator type. From-SVN: r116812
Diffstat (limited to 'libjava/classpath/java/awt/event/FocusEvent.java')
0 files changed, 0 insertions, 0 deletions
;]['format-specific'] self.assertEqual(data['type'], iotests.imgfmt) self.assertEqual(data['data'], self.compare) class TestQCow2(TestQemuImgInfo): '''Testing a qcow2 version 2 image''' img_options = 'compat=0.10' json_compare = { 'compat': '0.10', 'refcount-bits': 16 } human_compare = [ 'compat: 0.10', 'refcount bits: 16' ] class TestQCow3NotLazy(TestQemuImgInfo): '''Testing a qcow2 version 3 image with lazy refcounts disabled''' img_options = 'compat=1.1,lazy_refcounts=off' json_compare = { 'compat': '1.1', 'lazy-refcounts': False, 'refcount-bits': 16, 'corrupt': False } human_compare = [ 'compat: 1.1', 'lazy refcounts: false', 'refcount bits: 16', 'corrupt: false' ] class TestQCow3Lazy(TestQemuImgInfo): '''Testing a qcow2 version 3 image with lazy refcounts enabled''' img_options = 'compat=1.1,lazy_refcounts=on' json_compare = { 'compat': '1.1', 'lazy-refcounts': True, 'refcount-bits': 16, 'corrupt': False } human_compare = [ 'compat: 1.1', 'lazy refcounts: true', 'refcount bits: 16', 'corrupt: false' ] class TestQCow3NotLazyQMP(TestQMP): '''Testing a qcow2 version 3 image with lazy refcounts disabled, opening with lazy refcounts enabled''' img_options = 'compat=1.1,lazy_refcounts=off' qemu_options = 'lazy-refcounts=on' compare = { 'compat': '1.1', 'lazy-refcounts': False, 'refcount-bits': 16, 'corrupt': False } class TestQCow3LazyQMP(TestQMP): '''Testing a qcow2 version 3 image with lazy refcounts enabled, opening with lazy refcounts disabled''' img_options = 'compat=1.1,lazy_refcounts=on' qemu_options = 'lazy-refcounts=off' compare = { 'compat': '1.1', 'lazy-refcounts': True, 'refcount-bits': 16, 'corrupt': False } TestImageInfoSpecific = None TestQemuImgInfo = None TestQMP = None if __name__ == '__main__': iotests.main(supported_fmts=['qcow2'])