diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-04-20 01:16:06 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-04-20 01:16:06 -0700 |
| commit | d24a3a4b016331438ec3c611e37c11cfe41fa4af (patch) | |
| tree | 607133e003f653da05d9e3d657eee29e2ead92f4 /src/rt/rust_test_helpers.cpp | |
| parent | 744ba627f34ebf76b5a784085645780066d8d92a (diff) | |
| download | rust-d24a3a4b016331438ec3c611e37c11cfe41fa4af.tar.gz rust-d24a3a4b016331438ec3c611e37c11cfe41fa4af.zip | |
core::rt: Use generated port numbers in tests
Diffstat (limited to 'src/rt/rust_test_helpers.cpp')
| -rw-r--r-- | src/rt/rust_test_helpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_test_helpers.cpp b/src/rt/rust_test_helpers.cpp index 7938d65acd2..d82c39d6838 100644 --- a/src/rt/rust_test_helpers.cpp +++ b/src/rt/rust_test_helpers.cpp @@ -170,7 +170,7 @@ rust_dbg_extern_identity_TwoDoubles(TwoDoubles u) { extern "C" CDECL uintptr_t rust_dbg_next_port() { static lock_and_signal dbg_port_lock; - static uintptr_t next_port = 9000; + static uintptr_t next_port = 9600; scoped_lock with(dbg_port_lock); uintptr_t this_port = next_port; next_port += 1; |
