~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to tests/cris/check_subr.s

  • Committer: Package Import Robot
  • Author(s): Serge Hallyn, Serge Hallyn, Adam Conrad
  • Date: 2013-01-04 08:50:24 UTC
  • mfrom: (1.6.6) (10.1.29 sid)
  • Revision ID: package-import@ubuntu.com-20130104085024-k4mr3z3zzjxemww2
Tags: 1.2.0.dfsg-1~exp1-0ubuntu1
[ Serge Hallyn ]
* debian/control:
  - update maintainer
  - remove vde2 recommends
  - build-deps: remove libusbredir, libvdeplug2-dev,
    libspice-server-dev, libspice-protocol-dev, libiscsi-dev,
    and libxen-dev.
  - qemu-keymaps: break/replace qemu-common
  - qemu-system:
    - break/replace qemu-common
    - depend on udev
    - remove openbios-ppc, openbios-sparc, and openhackware from
      Depends.  (Intend to add them back once we can build them.)
    - provides: qemu-kvm
  - qemu-utils: break/replace qemu-kvm
  - set up transitional packages for qemu-kvm, qemu-common, and kvm.
* debian/rules:
  - install kvm-ifup and kvm-ifdown
  - dh_installinit the qemu-kvm upstart job
* install a 30-qemu-kvm.conf into /etc/sysctl.c for nr_hugepages.
* qemu-kvm.upstart:
  - add qemu-system.qemu-kvm.upstart
  - add mv_confile to qemu-system.preinst, postinst, and .postrm to rename
    /etc/init/qemu-kvm.conf to qemu-system.conf
  - debian/rules: add dh_installinit to get qemu-system.upstart installed.
  - take the defaults from the old qemu-kvm.defaults, and move them into
    the upstart job
* debian/patches:
  - apply gridcentric patches from lp:~amscanne/+junk/gridcentric-qemu-patches
  - apply arm patches from git://git.linaro.org/qemu/qemu-linaro.git
  - apply nbd-fixes-to-read-only-handling.patch from upstream to
    make read-write mount after read-only mount work.  (LP: #1077838)
* ifup/down:
  - copy Ubuntu qemu-kvm's kvm-ifup/down into debian/
  - fix dh_install for kvm-ifup/down in debian/rules
  - add links for qemu-ifup/down in qemu-system.links
  - remove (debian's original) qemu-ifup from qemu-system.install
* debian/qemu-system.postinst
  - udevadm trigger to fix up /dev/kvm perms
  - make the 'qemu' symlink point to qemu-system-x86_64, not -i386.
* debian/qemu-system.links:
  - point 'kvm' to qemu-system-x86_64
  - remove pxe-virtio, pxe-e1000 and pxe-rtl8139 links (which conflict
    with ones from kvm-ipxe).  We may want to move the links from kvm-ipxe
    back to qemu-system at some point.
  - add qemu-ifdown and qemu-ifup links
* debian/qemu-system.install:
  - remove /etc/qemu-ifup link
  - add /etc/sysctl.d/30-qemu-kvm.conf

[ Adam Conrad ]
* Appease apt-get's dist-upgrade resolver by creating a qemu-common
  transitional package to upgrade more gracefully to qemu-keymaps.
* Move all the empty transitional packages to the oldlibs section. 
* Restore the versioned dep from qemu-kvm (and kvm) to qemu-system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# mach: crisv0 crisv3 crisv8 crisv10 crisv32
2
 
# output: 1\n1\n1fffe\nfffffffe\ncc463bdb\nffff0001\n1\nfffe\nfedafffe\n78133bdb\nffffff01\n1\nfe\nfeda49fe\n781344db\n85649200\n
3
 
 
4
 
 .include "testutils.inc"
5
 
 start
6
 
 moveq -1,r3
7
 
 moveq -2,r4
8
 
 sub.d r4,r3
9
 
 test_cc 0 0 0 0
10
 
 checkr3 1
11
 
 
12
 
 moveq 2,r3
13
 
 moveq 1,r4
14
 
 sub.d r4,r3
15
 
 test_cc 0 0 0 0
16
 
 checkr3 1
17
 
 
18
 
 move.d 0xffff,r3
19
 
 move.d -0xffff,r4
20
 
 sub.d r4,r3
21
 
 test_cc 0 0 0 1
22
 
 checkr3 1fffe
23
 
 
24
 
 moveq 1,r4
25
 
 moveq -1,r3
26
 
 sub.d r4,r3
27
 
 test_cc 1 0 0 0
28
 
 checkr3 fffffffe
29
 
 
30
 
 move.d -0x5432f789,r4
31
 
 move.d 0x78134452,r3
32
 
 sub.d r4,r3
33
 
 test_cc 1 0 1 1
34
 
 checkr3 cc463bdb
35
 
 
36
 
 moveq -1,r3
37
 
 moveq -2,r4
38
 
 sub.w r4,r3
39
 
 test_cc 0 0 0 0
40
 
 checkr3 ffff0001
41
 
 
42
 
 moveq 2,r3
43
 
 moveq 1,r4
44
 
 sub.w r4,r3
45
 
 test_cc 0 0 0 0
46
 
 checkr3 1
47
 
 
48
 
 move.d 0xffff,r3
49
 
 move.d -0xffff,r4
50
 
 sub.w r4,r3
51
 
 test_cc 1 0 0 0
52
 
 checkr3 fffe
53
 
 
54
 
 move.d 0xfedaffff,r3
55
 
 move.d -0xfedaffff,r4
56
 
 sub.w r4,r3
57
 
 test_cc 1 0 0 0
58
 
 checkr3 fedafffe
59
 
 
60
 
 move.d -0x5432f789,r4
61
 
 move.d 0x78134452,r3
62
 
 sub.w r4,r3
63
 
 test_cc 0 0 0 0
64
 
 checkr3 78133bdb
65
 
 
66
 
 moveq -1,r3
67
 
 moveq -2,r4
68
 
 sub.b r4,r3
69
 
 test_cc 0 0 0 0
70
 
 checkr3 ffffff01
71
 
 
72
 
 moveq 2,r3
73
 
 moveq 1,r4
74
 
 sub.b r4,r3
75
 
 test_cc 0 0 0 0
76
 
 checkr3 1
77
 
 
78
 
 move.d -0xff,r4
79
 
 move.d 0xff,r3
80
 
 sub.b r4,r3
81
 
 test_cc 1 0 0 0
82
 
 checkr3 fe
83
 
 
84
 
 move.d -0xfeda49ff,r4
85
 
 move.d 0xfeda49ff,r3
86
 
 sub.b r4,r3
87
 
 test_cc 1 0 0 0
88
 
 checkr3 feda49fe
89
 
 
90
 
 move.d -0x5432f789,r4
91
 
 move.d 0x78134452,r3
92
 
 sub.b r4,r3
93
 
 test_cc 1 0 0 1
94
 
 checkr3 781344db
95
 
 
96
 
 move.d 0x85649222,r3
97
 
 move.d 0x77445622,r4
98
 
 sub.b r4,r3
99
 
 test_cc 0 1 0 0
100
 
 checkr3 85649200
101
 
 
102
 
 quit