Gregory Szorc
|
c7bf7887f9
|
Bug 784841 - Part 18r: Convert /ipc; r=ted f=Ms2ger
|
2013-02-25 12:47:22 -08:00 |
Chris Jones
|
5282f37ed8
|
Bug 823422: Make ipdl C++ unit tests compile again. r=jlebar
|
2012-12-20 11:54:00 -08:00 |
Chris Jones
|
cbe3e12296
|
Test for bug 775777. r=bent
|
2012-09-20 12:30:53 -07:00 |
Ms2ger
|
711f1fd480
|
Bug 787933 - Stop using stdin types in IPC code; r=bsmedberg+cjones sr=cjones
|
2012-09-17 10:37:20 +02:00 |
Chris Jones
|
fef429cb47
|
Bug 636063, part 3: Honor compression requests when queuing messages. r=bent
|
2012-08-25 01:25:08 -07:00 |
Ms2ger
|
1023162c9c
|
Back out bug 636063, bug 774988 and bug 784647 for busting all of Android.
|
2012-08-25 13:18:18 +02:00 |
Chris Jones
|
59b05f8960
|
Bug 636063, part 3: Honor compression requests when queuing messages. r=bent
|
2012-08-25 01:25:08 -07:00 |
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Mike Hommey
|
70d7c821af
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
Aryeh Gregor
|
d0ad5a7d0c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
Joshua Cranmer
|
d539846cab
|
Bug 702877 - Replace NS_OVERRIDE with MOZ_OVERRIDE. r=ehsan
--HG--
extra : rebase_source : 1843575683c3897f96f3966cbce26140ff1a7d90
|
2012-07-06 13:15:45 -05:00 |
Ehsan Akhgari
|
117b7fa829
|
Convert some of the IPDL C++ test files to use Unix line endings (no bug)
|
2012-07-23 16:31:14 -04:00 |
Josh Matthews
|
0e05a2e2bf
|
Bug 767775 - Viciously and loudly kill any process sending messages that race with RPC __delete__ messages. Test by bsmedberg. r=cjones
|
2012-07-13 13:53:00 -04:00 |
Chris Jones
|
364854b6f9
|
Bug 765734, part 0: Do the right thing here. r=bent
--HG--
extra : rebase_source : 7b73d2ea334b9ca394e156b598e888723844315a
|
2012-07-12 05:51:57 -07:00 |
Chris Jones
|
3bc9fa211c
|
Test for bug 763228.
|
2012-06-11 20:41:46 -07:00 |
Chris Jones
|
cbde7ac0ad
|
Tests for bug 521898.
|
2012-06-08 17:25:36 -07:00 |
Chris Jones
|
c6a6f92105
|
Bug 521898, part 10: Add .ipdlh to the test harness and fix an annoying build warning. r=bent
|
2012-06-08 17:25:36 -07:00 |
Chris Jones
|
107bf169a8
|
Bug 760007, part 2: Fix shutdown race condition in cross-process TestOpens. r=bent
|
2012-06-04 15:14:41 -07:00 |
Chris Jones
|
bbbf2ebf50
|
Bug 760007, part 1: Fix the IPDL C++ test harness. r=bent
|
2012-06-04 15:14:41 -07:00 |
Chris Jones
|
6d0bc7c4ff
|
Test for bug 753159.
|
2012-05-30 15:37:26 -07:00 |
Gervase Markham
|
82ff7027aa
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
Jim Mathies
|
21295497e6
|
Bug 732127 - win8 dev kit fixup for strdup call in ipctest harness, r=bbondy.
|
2012-03-22 09:18:47 -05:00 |
Chris Jones
|
62a1c622f5
|
Bug 718254: Get the IPDL unit test harness compiling again. r=bent
|
2012-02-02 00:33:06 -08:00 |
Jim Mathies
|
5fc873d79e
|
Bug 679240 - Split total channel timeout into two discrete wait periods. Avoids aborting children after system sleep. r=bsmedberg
|
2012-01-06 12:17:03 -06:00 |
Niko Matsakis
|
fbaae7f787
|
Bug 699319 - Part 3: Update test infrastructure to run tests in either threaded or process mode. r=cjones
|
2011-11-30 08:27:22 -08:00 |
Ehsan Akhgari
|
92064e6d3f
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
Chris Jones
|
958dfaa218
|
Test for bug 671189.
|
2011-07-13 22:43:43 -07:00 |
Chris Jones
|
9d4a84d546
|
Bug 598869: Test that using actors on non-main threads works
|
2011-06-03 13:33:56 -05:00 |
Chris Jones
|
13d0b99a66
|
Bug 613442, part 6: Test IPDL |opens|
|
2011-06-03 13:33:56 -05:00 |
Chris Jones
|
8c842dccb2
|
Bug 564086, part r: Test IPDL |bridge|
|
2011-06-03 13:33:56 -05:00 |
Chris Jones
|
4dd6a3e50f
|
Bug 564086, part e: Allow IPDL/C++ tests to spawn subprocesses that speak protocols that are not unit tests in and of themselves. r=ted
|
2011-06-03 13:33:55 -05:00 |
Ed Morley
|
994dc34d86
|
Bug 655473 - Remove WinCE code from IPC; r=cjones
|
2011-05-10 20:24:49 +02:00 |
Chris Jones
|
eb1da4388e
|
Test for bug 648935.
|
2011-05-04 15:55:54 -05:00 |
Chris Jones
|
2387f54dbe
|
Test for bug 640901. a=b
|
2011-03-25 12:56:17 -05:00 |
Chris Jones
|
8d9bc1ea81
|
Test for bug 572134. a=b
|
2011-01-12 01:07:17 -06:00 |
Chris Jones
|
08183edeb5
|
Bug 622235: Fix ipdlunittest.exe build error. a=npotb
|
2011-01-04 10:40:54 -06:00 |
Ryan VanderMeulen
|
5de9ca5fd4
|
Bug 578546 - Fix more MSVC warning spam by removing unneeded declarations. r=cjones a=benjamin
|
2010-11-16 10:21:53 +01:00 |
Chris Jones
|
339106b788
|
Bug 562424: Switch IPDL interfaces to infallible TArray. r=bent a=blocking
|
2010-11-08 20:49:00 -06:00 |
Chris Jones
|
603bc83179
|
Tests for bug 598866.
|
2010-11-05 02:17:07 -05:00 |
Chris Jones
|
3b953ced69
|
Merge m-c --> cedar
|
2010-09-08 17:25:30 -05:00 |
Chris Jones
|
c8dabee86a
|
Bug 592866: Allow Shmem to be used in IPDL unions. r=bent a=blocking-2.0
|
2010-09-08 13:27:52 -05:00 |
Oleg Romashin
|
a4c07eb71a
|
Merge m-c: 09872e2e2130 -> cedar, (qt build bustage fix)
|
2010-09-01 12:07:19 -07:00 |
Chris Jones
|
405278e221
|
Test for bug 592002. a=test
|
2010-09-01 13:01:50 -05:00 |
Chris Jones
|
d3a9ff236c
|
Bug 540097: Add a ProcessingError(what) notification interface for top-level actors. r=bent
|
2010-08-20 18:24:40 -05:00 |
Benedict Hsieh
|
06c7038301
|
Bug 535077 - Fixes hang caused by failure to execute sync launch r=cjones a=blocking2.0
|
2010-08-10 14:14:10 -07:00 |
Chris Jones
|
e14520565f
|
Bug 581930: Add an async "spam test" and make output more readable. r=NPOTB (alas!)
|
2010-08-05 17:11:23 -05:00 |
Chris Jones
|
d505c49608
|
Bug 575110: Fix C++ IPDL test build failure on windows. r=NPOTB (alas!)
|
2010-08-05 17:11:23 -05:00 |
Chris Jones
|
c6a03599aa
|
Bug 525181, part 3: Turn on "soft" state checking, NS_WARNING()ing on bad transitions. Fix tests. r=bent
|
2010-07-15 14:27:43 -05:00 |
Chris Jones
|
2d2a5f4b25
|
Bug 570099: Allow Shmems to be used in IPDL structs. r=benjamn
|
2010-06-23 13:59:07 -05:00 |
Chris Jones
|
ac67f4dbc4
|
Bug 570096: Implement serialization of a grab-bag of gfx types. r=joe
|
2010-06-21 15:35:48 -05:00 |
Chris Jones
|
ad393ee2d4
|
Bug 568366: Allow copy-constructing and assigning from T__None-typed unions. r=benjamn
|
2010-06-02 12:56:34 -05:00 |
Chris Jones
|
ba8e10bb5d
|
Bug 565462: Implement operator== for IPDL structs and unions. r=bsmedberg
|
2010-05-22 14:35:42 -05:00 |
Chris Jones
|
3736c87ff8
|
Tests for bug 560000
|
2010-05-22 14:35:40 -05:00 |
Chris Jones
|
ca7af8ea8c
|
Tests for bug 553846.
--HG--
rename : ipc/ipdl/test/cxx/PTestArrays.ipdl => ipc/ipdl/test/cxx/PTestDataStructures.ipdl
rename : ipc/ipdl/test/cxx/PTestArraysSub.ipdl => ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl
rename : ipc/ipdl/test/cxx/TestArrays.cpp => ipc/ipdl/test/cxx/TestDataStructures.cpp
rename : ipc/ipdl/test/cxx/TestArrays.h => ipc/ipdl/test/cxx/TestDataStructures.h
|
2010-05-22 14:35:37 -05:00 |
Chris Jones
|
e0a14f18fc
|
Bug 522547: Serialize/deserialize IPC messages in a "streaming" style. r=bent
|
2010-05-22 14:35:34 -05:00 |
Benoit Girard
|
94d6258a5b
|
Bug 528146: Run plug-in code on the thread that starts in main(). r=cjones
--HG--
rename : dom/plugins/PluginThreadChild.cpp => dom/plugins/PluginProcessChild.cpp
rename : dom/plugins/PluginThreadChild.h => dom/plugins/PluginProcessChild.h
rename : ipc/ipdl/test/cxx/IPDLUnitTestThreadChild.cpp => ipc/ipdl/test/cxx/IPDLUnitTestProcessChild.cpp
rename : ipc/ipdl/test/cxx/IPDLUnitTestThreadChild.h => ipc/ipdl/test/cxx/IPDLUnitTestProcessChild.h
|
2010-05-10 23:18:00 -05:00 |
Benjamin Smedberg
|
01cd6e47af
|
Bug 561817 part A: Entered/ExitedCall callbacks for toplevel actors upon RPC in-calls. r=bsmedberg
|
2010-04-29 11:49:00 -05:00 |
Chris Jones
|
44e3e67b08
|
No bug: Test RPC round-trip times and warn before sleep()ing. no r=, test only
|
2010-02-04 21:40:42 -06:00 |
Chris Jones
|
cc52e0aa86
|
Bug 518881: Fix unused-result warnings in IPDL/C++ unit tests.
|
2010-04-27 00:43:01 -05:00 |
Chris Jones
|
43db547c0a
|
Bug 559898: Allow (sub-)protocols to manage themselves. r=bsmedberg
|
2010-04-26 20:11:48 -05:00 |
Chris Jones
|
821e840e3b
|
Bug 559953: Add a |const nsTArray<Subactor*>& ManagedFoo();| accessor. r=bent
|
2010-04-26 20:11:47 -05:00 |
Thomas Lee
|
f562dffa71
|
Bug 541131: Include IPDL headers as |include protocol PFoo;|. r=cjones
|
2010-04-26 20:11:46 -05:00 |
Chris Jones
|
c2273182da
|
Bug 555275: Implement a DeallocShmem() interface. r=bent
|
2010-04-26 20:11:40 -05:00 |
Chris Jones
|
e81c79ae2f
|
Bug 548437: Test SysV shmem.
|
2010-04-16 00:29:17 -05:00 |
Joe Drew ext:(%20and%20Chris%20Jones%20%3Cjones.chris.g%40gmail.com%3E)
|
0bd95dade4
|
Bug 548437: Add a SysV shmem subtype of SharedMemory. r=dougt
|
2010-04-16 00:29:16 -05:00 |
Josh Matthews
|
d4487458dd
|
Bug 552117 - Print current test name in IPDL tests. r=cjones
--HG--
extra : rebase_source : 45b554a05e8a9e3ca627b10f633a955cec4f0f05
|
2010-03-13 13:23:50 +13:00 |
Chris Jones
|
eae7be085a
|
Bug 552014: Test
|
2010-03-18 17:52:34 -05:00 |
Chris Jones
|
55b7305f9e
|
Followup to bug 545342: atomically refcount the dequeue task. r=bent
|
2010-03-11 16:24:15 -06:00 |
Chris Jones
|
eb4b1d88db
|
Bug 549888: Test
|
2010-03-11 01:35:32 -06:00 |
Chris Jones
|
560720af2a
|
Bug 546035: Test
|
2010-03-11 01:35:28 -06:00 |
Chris Jones
|
60dbdc95ce
|
Bug 545342: Test
|
2010-03-11 01:35:21 -06:00 |
Chris Jones
|
94faebe11f
|
Bug 545455: IPDL/C++ test.
--HG--
extra : rebase_source : 9fae2c3f3192633834166b863f7ab0c1ed2f0e40
|
2010-02-16 12:44:23 -06:00 |
Chris Jones
|
17e4329c85
|
Bug 548214: Extended IPDL/C++ test.
|
2010-02-24 15:59:24 -06:00 |
Chris Jones
|
6431ad2dc0
|
Bug 545053: IPDL/C++ test of hang detector.
--HG--
extra : transplant_source : %92%F8%81%3A%E0%99n%15kQ%BEB%EB%B6U%1Csuar
|
2010-02-11 14:32:17 -06:00 |
Chris Jones
|
a564f3aad2
|
Bug 545591: Temporary workaround.
--HG--
extra : transplant_source : /%9E5%1C%A2%B1%21%BD%9D%A5%DB%039/p%23%95%A2%7B%D3
|
2010-02-11 00:48:33 -06:00 |
Chris Jones
|
35245fa672
|
Bug 540886, part 3: IPDL/C++ test for BlockChild()/UnblockChild(). r=bnewman
--HG--
extra : transplant_source : h%0DM%F8%C5s%82%97%28%AEH%91%86%00%0E%99%A0%05T%1B
|
2010-01-27 00:41:33 -06:00 |
Chris Jones
|
40ab77cad5
|
Bug 540111, part 5: IPDL/C++ test of multi-managers. r=bnewman
--HG--
extra : transplant_source : %3B%83%10%FC%C3%5D%F7%22%B4%07WB7u%F6%8A4%D8%16%01
|
2010-01-26 22:56:14 -06:00 |
Benjamin Smedberg
|
d5eb4d3947
|
Bug 516515 - Don't initialize XPCOM in plugin processes, r=cjones
--HG--
extra : rebase_source : cab356b862a66fb7f5955b1f936944f2395bba3c
|
2010-02-03 17:17:09 -05:00 |
Chris Jones
|
fbd897de71
|
Followup to bug 542052: Windows doesn't like stdint types.
|
2010-01-25 17:18:11 -06:00 |
Chris Jones
|
bf83609f43
|
Bug 542052: Add support for serializing/deserializing byte types. r=bent
|
2010-01-25 16:47:39 -06:00 |
Chris Jones
|
aff9b49ce6
|
Bug 521929, part 3: IPDL/C++ test.
--HG--
extra : transplant_source : %9E%82%3E%20E%81J%97r%CD%05%93%FC%E0%9C%877P%DF%EE
|
2010-01-21 20:04:11 -06:00 |
Chris Jones
|
d33bbbf8cd
|
Fix Windows build busted by 2e3e142612b1.
--HG--
extra : transplant_source : -z%FD%996%7D%89%BD%09%E8%E2L%23%0E%1CK%21%AC%28%1C
|
2010-01-20 22:58:47 -06:00 |
Chris Jones
|
25bab4e0a8
|
Test for bug 538239.
--HG--
extra : transplant_source : 8e%9E%87%3F%D1%EE%A7%3A%AB%19%84%AD%C1%DD%13%CE%82%E3w
|
2010-01-20 21:50:07 -06:00 |
Chris Jones
|
f1e8661419
|
Test for followup to bug 539856.
--HG--
extra : transplant_source : f%83f%28%DC%A9%09%ADm%C3Ra%C5%D4%A7%A5%B2%D8%EDb
|
2010-01-15 15:15:51 -06:00 |
Chris Jones
|
521cb24310
|
Bug 539343: Call DeallocSubtree() on subprotocol actors after being __delete__-ed. r=bent
--HG--
extra : transplant_source : d%BE5%28%8D%EE%E3%D2Q%14%FB8%8Co%D5U%2C%19W%C4
|
2010-01-13 21:08:36 -06:00 |
Chris Jones
|
9465670838
|
Test for bug 539343.
--HG--
extra : transplant_source : J0p%C1%D3%7F%A5%D5%7Ds%F3%3F%8EG%B4%DD%D5%2A_%B2
|
2010-01-13 21:08:35 -06:00 |
Chris Jones
|
e32ed2f501
|
Test for bug 539856.
--HG--
extra : transplant_source : %20%83%FE%ED1N%00Xg6D%A9%FC%1E%B1%7E%BD%14xQ
|
2010-01-14 23:25:56 -06:00 |
Chris Jones
|
23991c2223
|
Test for bug 538586.
--HG--
extra : rebase_source : 806feb88f71efe10512b084156b88534bc6236bf
|
2010-01-12 00:14:31 -06:00 |
Chris Jones
|
93dc896673
|
Don't run TestLatency if the timing resolution is too low and use the new TimeDuration::ToSecondsSigDigits() method to display durations to humans. No r=, test only.
--HG--
extra : rebase_source : 34ee3b04c128da20d035cb6e4d92418f5870cccd
|
2010-01-11 23:46:17 -06:00 |
Chris Jones
|
d80073cd0a
|
bug 535867: fix threadsafety problem causing windows tinderbox error. r=trivial
|
2009-12-18 18:09:56 -06:00 |
Chris Jones
|
47489467ce
|
bug 535298: IPDL unit test for use-after-free crashes after RPC errors. r=test-only
|
2009-12-17 18:12:01 -06:00 |
Chris Jones
|
8b16a35dc0
|
bug 533587: process RPC in-calls deferred because of races until "later". in-person r=bent
|
2009-12-09 17:15:01 -06:00 |
Chris Jones
|
1db753bb3a
|
add missing makefile dep. r=trivial
|
2009-12-09 14:53:52 -06:00 |
Chris Jones
|
8d5a2a2fae
|
bug 532973: add a check-valgrind target that runs IPDL unit tests under valgrind. r=luser
|
2009-12-07 01:10:52 -06:00 |
Chris Jones
|
f7ff8ffcef
|
bug 533034: fix race condition that led to use-after-free. thanks valgrind!
|
2009-12-07 00:04:00 -06:00 |
Chris Jones
|
8e5648cbee
|
bug 532983: fix invalid memory reads caused by regressions in shutdown behavior. r=bsmedberg
|
2009-12-07 00:03:49 -06:00 |
Chris Jones
|
35ac1f8cd2
|
fix some leaks found by valgrind. r=trivial
|
2009-12-04 18:15:44 -06:00 |
Chris Jones
|
da33d06c2d
|
bug 523175: follow-up to 82549dbf71d8, fully enables the C++/IPDL side of Shmem and adds unit tests. r=bent
|
2009-12-04 12:45:21 -06:00 |
Chris Jones
|
c47450d9a7
|
bug 529005: detect child process shutdowns vs. crashes, and expose this information to IPDL actors in a new |ActorDestroy(why)| interface. also ensure that subprotocol actors are notified of shutdown and cleaned up properly. r=bsmedberg r=bent
|
2009-12-03 02:16:28 -06:00 |
Chris Jones
|
57d427c91a
|
bug 521272: add C++ interfaces allowing IPDL manager actors to iterate over managees. r=trivial
|
2009-12-03 02:16:21 -06:00 |