mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
getting the unit tests and profiling tests to run on all platforms
This commit is contained in:
parent
4b601df80e
commit
08b157baba
@ -202,7 +202,7 @@ basic_nsStdStringWrapper<CharT, TraitsT, AllocatorT>::Assign( const basic_nsARea
|
|||||||
{
|
{
|
||||||
typedef basic_nsStdStringWrapper<CharT, TraitsT, AllocatorT> this_t;
|
typedef basic_nsStdStringWrapper<CharT, TraitsT, AllocatorT> this_t;
|
||||||
|
|
||||||
if ( rhs.Implementation() == Implementation() )
|
if ( SameImplementation(*this, rhs) )
|
||||||
mRawString = NS_STATIC_CAST(this_t, rhs).mRawString;
|
mRawString = NS_STATIC_CAST(this_t, rhs).mRawString;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#include "nscore.h"
|
#include "nscore.h"
|
||||||
#include "prlong.h"
|
#include "prlong.h"
|
||||||
#include <iostream>
|
#include <iostream.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
@ -20,11 +20,7 @@ typedef nsStdCString nsCString;
|
|||||||
static const int kTestSucceeded = 0;
|
static const int kTestSucceeded = 0;
|
||||||
static const int kTestFailed = 1;
|
static const int kTestFailed = 1;
|
||||||
|
|
||||||
#if 0
|
static const size_t N = 100000;
|
||||||
#define N 1000
|
|
||||||
#else
|
|
||||||
#define N 100000
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#include <iostream>
|
#include <iostream.h>
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
#include "nsString.h"
|
#include "nsString.h"
|
||||||
#include "nsSharedString.h"
|
#include "nsSharedString.h"
|
||||||
@ -7,7 +6,7 @@ using namespace std;
|
|||||||
|
|
||||||
// #define NS_USE_WCHAR_T
|
// #define NS_USE_WCHAR_T
|
||||||
|
|
||||||
|
#if 0
|
||||||
static
|
static
|
||||||
ostream&
|
ostream&
|
||||||
print_string( const nsAReadableString& s )
|
print_string( const nsAReadableString& s )
|
||||||
@ -20,6 +19,7 @@ print_string( const nsAReadableString& s )
|
|||||||
transform(s.BeginReading(), s.EndReading(), ostream_iterator<char>(cout), PRUnichar_to_char());
|
transform(s.BeginReading(), s.EndReading(), ostream_iterator<char>(cout), PRUnichar_to_char());
|
||||||
return cout;
|
return cout;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
template <class CharT>
|
template <class CharT>
|
||||||
@ -88,65 +88,6 @@ test_multifragment_iterators( const basic_nsAReadableString<CharT>& aString )
|
|||||||
return tests_failed;
|
return tests_failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
template <class CharT>
|
|
||||||
int
|
|
||||||
test_deprecated_GetBufferGetUnicode( const basic_nsAReadableString<CharT>& aReadable )
|
|
||||||
{
|
|
||||||
int tests_failed = 0;
|
|
||||||
|
|
||||||
if ( aReadable.GetBuffer() || aReadable.GetUnicode() )
|
|
||||||
{
|
|
||||||
cout << "FAILED |test_deprecated_GetBufferGetUnicode()|: non-zero result." << endl;
|
|
||||||
++tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
return tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
NS_SPECIALIZE_TEMPLATE
|
|
||||||
int
|
|
||||||
test_deprecated_GetBufferGetUnicode( const basic_nsAReadableString<char>& aReadable )
|
|
||||||
{
|
|
||||||
int tests_failed = 0;
|
|
||||||
|
|
||||||
if ( !aReadable.GetBuffer() )
|
|
||||||
{
|
|
||||||
cout << "FAILED |test_deprecated_GetBufferGetUnicode()|: |GetBuffer()| returned 0." << endl;
|
|
||||||
++tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( aReadable.GetUnicode() )
|
|
||||||
{
|
|
||||||
cout << "FAILED |test_deprecated_GetBufferGetUnicode()|: |GetUnicode()| returned a non-zero result." << endl;
|
|
||||||
++tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
return tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
NS_SPECIALIZE_TEMPLATE
|
|
||||||
int
|
|
||||||
test_deprecated_GetBufferGetUnicode( const basic_nsAReadableString<PRUnichar>& aReadable )
|
|
||||||
{
|
|
||||||
int tests_failed = 0;
|
|
||||||
|
|
||||||
if ( aReadable.GetBuffer() )
|
|
||||||
{
|
|
||||||
cout << "FAILED |test_deprecated_GetBufferGetUnicode()|: |GetBuffer()| returned a non-zero result." << endl;
|
|
||||||
++tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( !aReadable.GetUnicode() )
|
|
||||||
{
|
|
||||||
cout << "FAILED |test_deprecated_GetBufferGetUnicode()|: |GetUnicode()| returned 0." << endl;
|
|
||||||
++tests_failed;
|
|
||||||
}
|
|
||||||
|
|
||||||
return tests_failed;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
template <class CharT>
|
template <class CharT>
|
||||||
int
|
int
|
||||||
test_readable_hello( const basic_nsAReadableString<CharT>& aReadable )
|
test_readable_hello( const basic_nsAReadableString<CharT>& aReadable )
|
||||||
@ -352,7 +293,7 @@ main()
|
|||||||
|
|
||||||
nsSharedString* s15 = new_nsSharedString( s7 + s8 + s9 );
|
nsSharedString* s15 = new_nsSharedString( s7 + s8 + s9 );
|
||||||
tests_failed += test_readable_hello(*s15);
|
tests_failed += test_readable_hello(*s15);
|
||||||
cout << "Here's a string: \""; print_string(*s15) << "\"" << endl;
|
// cout << "Here's a string: \""; print_string(*s15) << "\"" << endl;
|
||||||
|
|
||||||
nsCString s10("He");
|
nsCString s10("He");
|
||||||
nsLiteralCString s11("l");
|
nsLiteralCString s11("l");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user