mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-09 04:25:38 +00:00
Bug 771048: fix typo in nsAutoRef::swap, r=khuey
This commit is contained in:
parent
bf289c9915
commit
69607e384f
@ -186,7 +186,7 @@ public:
|
||||
void swap(ThisClass& aOther)
|
||||
{
|
||||
LocalSimpleRef temp;
|
||||
temp.SimpleRef::operator=(this);
|
||||
temp.SimpleRef::operator=(*this);
|
||||
SimpleRef::operator=(aOther);
|
||||
aOther.SimpleRef::operator=(temp);
|
||||
}
|
||||
|
@ -59,6 +59,7 @@ CPP_UNIT_TESTS = \
|
||||
ShowAlignments.cpp \
|
||||
ShowSSEConfig.cpp \
|
||||
TestAutoPtr.cpp \
|
||||
TestAutoRef.cpp \
|
||||
TestBloomFilter.cpp \
|
||||
TestCOMArray.cpp \
|
||||
TestCOMPtr.cpp \
|
||||
|
62
xpcom/tests/TestAutoRef.cpp
Normal file
62
xpcom/tests/TestAutoRef.cpp
Normal file
@ -0,0 +1,62 @@
|
||||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
||||
// vim:cindent:ts=4:et:sw=4:
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
#include "nsAutoRef.h"
|
||||
#include "TestHarness.h"
|
||||
|
||||
#define TEST(aCondition, aMsg) \
|
||||
if (!(aCondition)) { fail("TestAutoRef: "#aMsg); exit(1); }
|
||||
|
||||
struct TestObjectA {
|
||||
public:
|
||||
TestObjectA() : mRefCnt(0) {
|
||||
}
|
||||
|
||||
~TestObjectA() {
|
||||
TEST(mRefCnt == 0, "mRefCnt in destructor");
|
||||
}
|
||||
|
||||
public:
|
||||
int mRefCnt;
|
||||
};
|
||||
|
||||
template <>
|
||||
class nsAutoRefTraits<TestObjectA> : public nsPointerRefTraits<TestObjectA>
|
||||
{
|
||||
public:
|
||||
static int mTotalRefsCnt;
|
||||
|
||||
static void Release(TestObjectA *ptr) {
|
||||
ptr->mRefCnt--;
|
||||
if (ptr->mRefCnt == 0) {
|
||||
delete ptr;
|
||||
}
|
||||
}
|
||||
|
||||
static void AddRef(TestObjectA *ptr) {
|
||||
ptr->mRefCnt++;
|
||||
}
|
||||
};
|
||||
|
||||
int nsAutoRefTraits<TestObjectA>::mTotalRefsCnt = 0;
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
nsCountedRef<TestObjectA> a(new TestObjectA());
|
||||
TEST(a->mRefCnt == 1, "nsCountedRef instantiation with valid RawRef");
|
||||
|
||||
nsCountedRef<TestObjectA> b;
|
||||
TEST(b.get() == nsnull, "nsCountedRef instantiation with invalid RawRef");
|
||||
|
||||
a.swap(b);
|
||||
TEST(b->mRefCnt, "nsAutoRef::swap() t1");
|
||||
TEST(a.get() == nsnull, "nsAutoRef::swap() t2");
|
||||
}
|
||||
|
||||
TEST(true, "All tests pass");
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user