search for: __test__

Displaying 8 results from an estimated 8 matches for "__test__".

2009 Feb 01
1
Intel Graphics Driver problems...
...[/home/dan/Software/wine-1.1.10/dlls/kernel32/process.c:904] in kernel32 (0x0033ffe8) 11 0x60025af7 wine_switch_to_stack+0x17() in libwine.so.1 (0x00000000) make[2]: *** [device.ok] Error 5 make[2]: Leaving directory `/home/dan/Software/wine-1.1.10/dlls/d3d10/tests' make[1]: *** [d3d10/tests/__test__] Error 2 make[1]: Leaving directory `/home/dan/Software/wine-1.1.10/dlls' make: *** [dlls/__test__] Error 2 It appears that the library for the graphics driver is the problem. The question is, does anyone know of a workaround or a solution?
2017 Nov 24
2
[ovirt-users] slow performance with export storage on glusterfs
...f=/rhev/data-center/2ff6d0ee-a10b-473d-b77c-be9149945f5f/ > ff3cd56a-1005-4426-8137-8f422c0b47c1/images/ba42cbcc- > c068-4df8-af3d-00f2077b1e27/c57acd5f-d6cf-48cc-ad0c-4a7d979c0c1e > > of=/rhev/data-center/mnt/glusterSD/10.20.30.41:_rhv__ > export/81094499-a392-4ea2-b081-7c6288fbb636/__test__ > > bs=8M oflag=direct status=progress > > unfrotunately dd performs the same > > 1778384896 bytes (1.8 GB) copied, 198.565265 s, 9.0 MB/s > > > > If dd can do this faster, please ask on qemu-discuss mailing list: > > https://lists.nongnu.org/mailman/listinfo/qem...
2011 Aug 05
2
Issues Building WINE 1.3.25 and 1.3.26 on Aptosid AMD64
...ToSid String constant not supported: L"No" fixme:advapi:CreateRestrictedToken (0x3c, 0x0, 1, 0x32fba4, 0, (nil), 0, (nil), 0x32fbb4): stub make[2]: *** [security.ok] Error 4 make[2]: Leaving directory `/hide/trip/build/wine-1.3.26/dlls/advapi32/tests' make[1]: *** [dlls/advapi32/tests/__test__] Error 2 make[1]: Leaving directory `/hide/trip/build/wine-1.3.26' dh_auto_test: make -j1 test returned exit code 2 make: *** [build] Error 29 dpkg-buildpackage: error: debian/rules build gave error exit status 2 Which is understandable. What I cannot figure out is why the non-root build ke...
2017 Nov 24
0
[ovirt-users] slow performance with export storage on glusterfs
...gt; > if=/rhev/data-center/2ff6d0ee-a10b-473d-b77c-be9149945f5f/ff3cd56a-1005-4426-8137-8f422c0b47c1/images/ba42cbcc-c068-4df8-af3d-00f2077b1e27/c57acd5f-d6cf-48cc-ad0c-4a7d979c0c1e > > of=/rhev/data-center/mnt/glusterSD/10.20.30.41:_rhv__export/81094499-a392-4ea2-b081-7c6288fbb636/__test__ > > bs=8M oflag=direct status=progress > > unfrotunately dd performs the same > > 1778384896 bytes (1.8 GB) copied, 198.565265 s, 9.0 MB/s > > > > If dd can do this faster, please ask on qemu-discuss mailing list: > > https://lists.nongnu....
2017 Nov 28
2
[ovirt-users] slow performance with export storage on glusterfs
...; if=/rhev/data-center/2ff6d0ee-a10b-473d-b77c-be9149945f5f/ff3cd56a-1005-4426-8137-8f422c0b47c1/images/ba42cbcc-c068-4df8-af3d-00f2077b1e27/c57acd5f-d6cf-48cc-ad0c-4a7d979c0c1e > > > of=/rhev/data-center/mnt/glusterSD/10.20.30.41: > _rhv__export/81094499-a392-4ea2-b081-7c6288fbb636/__test__ > > > bs=8M oflag=direct status=progress > > > > unfrotunately dd performs the same > > > > 1778384896 bytes (1.8 GB) copied, 198.565265 s, 9.0 MB/s > > > > > > > If dd can do this faster, please ask on qemu-discuss mailing list:...
2012 Mar 13
2
Having problems with building a deb package of the sources
...leClientSite_ShowObject (0x178cf8) - stub atl_ax.c:110: Test failed: Expected AtlAxAttachControl to return S_OK, got 0x00000001 make[2]: *** [atl_ax.ok] Error 1 make[2]: Leaving directory `/home/rahul/Programming/Projects/Downloaded/Wine/wine-1.4-rc6/dlls/atl/tests' make[1]: *** [dlls/atl/tests/__test__] Error 2 make[1]: Leaving directory `/home/rahul/Programming/Projects/Downloaded/Wine/wine-1.4-rc6' dh_auto_test: make -j1 test returned exit code 2 make: *** [build] Error 29 dpkg-buildpackage: error: debian/rules build gave error exit status 2 debuild: fatal error at line 1348: dpkg-buildpack...
2017 Nov 28
0
[ovirt-users] slow performance with export storage on glusterfs
...0ee-a10b-473d-b77c-be9149945f5f/ >> ff3cd56a-1005-4426-8137-8f422c0b47c1/images/ba42cbcc- >> c068-4df8-af3d-00f2077b1e27/c57acd5f-d6cf-48cc-ad0c-4a7d979c0c1e >> > > of=/rhev/data-center/mnt/glusterSD/10.20.30.41:_rhv__ >> export/81094499-a392-4ea2-b081-7c6288fbb636/__test__ >> > > bs=8M oflag=direct status=progress >> > >> > unfrotunately dd performs the same >> > >> > 1778384896 bytes (1.8 GB) copied, 198.565265 s, 9.0 MB/s >> > >> > >> > > If dd can do this faster, please a...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...priate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/server/ovirtserver/initservice/urls.py b/server/ovirtserver/initservice/urls.py new file mode 100755 index 0000000..5f0869a --- /dev/null ++...