mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 1140760 - Move TestXPIDLString.cpp to gtest and enable it; r=froydnj
--HG-- rename : xpcom/tests/TestXPIDLString.cpp => xpcom/tests/gtest/TestXPIDLString.cpp
This commit is contained in:
parent
a98abb5918
commit
db5ec9921e
@ -1,6 +1,7 @@
|
||||
#include "nsString.h"
|
||||
#include "nsReadableUtils.h"
|
||||
#include "nsXPIDLString.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
static void
|
||||
nsXPIDLStringTest_Value(char16_t** aResult)
|
||||
@ -8,11 +9,10 @@ nsXPIDLStringTest_Value(char16_t** aResult)
|
||||
*aResult = ToNewUnicode(NS_LITERAL_STRING("Hello, World"));
|
||||
}
|
||||
|
||||
int
|
||||
main(int argc, char* argv[])
|
||||
TEST(XPIDLString, Main)
|
||||
{
|
||||
nsXPIDLString s1;
|
||||
nsXPIDLStringTest_Value(getter_Copies(s1));
|
||||
return 0;
|
||||
EXPECT_TRUE(s1.EqualsLiteral("Hello, World"));
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ UNIFIED_SOURCES += [
|
||||
'TestThreadPool.cpp',
|
||||
'TestTimeStamp.cpp',
|
||||
'TestUTF.cpp',
|
||||
'TestXPIDLString.cpp',
|
||||
]
|
||||
|
||||
FINAL_LIBRARY = 'xul-gtest'
|
||||
|
@ -81,7 +81,6 @@ if CONFIG['MOZ_MEMORY']:
|
||||
# XXX Make these tests work in libxul builds.
|
||||
#CPP_UNIT_TESTS += [
|
||||
# 'TestThreads',
|
||||
# 'TestXPIDLString',
|
||||
# 'TestAtoms',
|
||||
#]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user