gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Functions
str.test.cc File Reference
#include <gtest/gtest.h>
#include <cstdint>
#include "base/str.hh"

Go to the source code of this file.

Functions

 TEST (StrTest, EatLeadWhite)
 
 TEST (StrTest, EatLeadWhiteNoLeadingWhitespace)
 
 TEST (StrTest, EatEndWhite)
 
 TEST (StrTest, EatEndWhiteNoTrailingWhitespace)
 
 TEST (StrTest, EatWhite)
 
 TEST (StrTest, EatWhiteNoWhitespace)
 
 TEST (StrTest, ToLower)
 
 TEST (StrTest, SplitFirst)
 
 TEST (StrTest, SplitFirstNoChar)
 
 TEST (StrTest, SplitFirstOnFirstChar)
 
 TEST (StrTest, SplitLast)
 
 TEST (StrTest, SplitLastNoChar)
 
 TEST (StrTest, SplitLastOnLastChar)
 
 TEST (StrTest, TokenizeOnSpace)
 
 TEST (StrTest, TokenizeOnSpaceIgnFalse)
 
 TEST (StrTest, TokenizedTokenDoesNotExist)
 
 TEST (StrTest, ToNumber8BitInt)
 
 TEST (StrTest, ToNumber8BitIntStringOutOfRange)
 
 TEST (StrTest, ToNumber8BitIntInvalidString)
 
 TEST (StrTest, ToNumberUnsigned8BitInt)
 
 TEST (StrTest, ToNumberUnsigned8BitIntNegative)
 
 TEST (StrTest, ToNumberUnsigned8BitIntRoundDown)
 Test that a double that can be converted to int is always rounded down. More...
 
 TEST (StrTest, ToNumber8BitUnsignedLimit)
 Test that a double can still be converted to int as long as it is below the numerical limit + 1. More...
 
 TEST (StrTest, ToNumber8BitUnsignedOutOfRange)
 Test that a double cannot be converted to int when it passes the numerical limit. More...
 
 TEST (StrTest, ToNumberUnsignedScientific)
 Test that a scientific number cannot be converted to int. More...
 
 TEST (StrTest, ToNumberIntScientificNegative)
 Test that a negative scientific number cannot be converted to int. More...
 
 TEST (StrTest, ToNumber64BitInt)
 
 TEST (StrTest, ToNumber64BitIntInvalidString)
 
 TEST (StrTest, ToNumberEnum)
 
 TEST (StrTest, DISABLED_ToNumberEnumInvalid)
 Test that trying to convert a number to an enum that is not valid fails. More...
 
 TEST (StrTest, ToNumberFloat)
 
 TEST (StrTest, ToNumberFloatIntegerString)
 
 TEST (StrTest, ToNumberFloatNegative)
 
 TEST (StrTest, ToNumberDouble)
 
 TEST (StrTest, ToNumberDoubleIntegerString)
 
 TEST (StrTest, ToNumberDoubleNegative)
 
 TEST (StrTest, ToNumberScientific)
 Test that a scientific number is converted properly to double. More...
 
 TEST (StrTest, ToBoolTrue)
 
 TEST (StrTest, ToBoolFalse)
 
 TEST (StrTest, ToBoolInvalidInput)
 
 TEST (StrTest, QuoteStringNoSpace)
 
 TEST (StrTest, QuoteStringWithSpace)
 
 TEST (StrTest, QuoteQuotedString)
 
 TEST (StrTest, QuoteStringWithTab)
 
 TEST (StrTest, StartswithDoubleStringDoesStartWith)
 
 TEST (StrTest, StartswithDoubleStringDoesNotStartWith)
 
 TEST (StrTest, StartswithDoubleCharArrayDoesStartWith)
 
 TEST (StrTest, StartswithDoubleCharArrayDoesNotStartWith)
 
 TEST (StrTest, StartswithStringCharArrayDoesStartWith)
 
 TEST (StrTest, StartswithStringCharArrayDoesNotStartWith)
 

Function Documentation

◆ TEST() [1/50]

TEST ( StrTest  ,
DISABLED_ToNumberEnumInvalid   
)

Test that trying to convert a number to an enum that is not valid fails.

Definition at line 369 of file str.test.cc.

References output(), and to_number().

◆ TEST() [2/50]

TEST ( StrTest  ,
EatEndWhite   
)

Definition at line 63 of file str.test.cc.

References eat_end_white(), and X86ISA::val.

◆ TEST() [3/50]

TEST ( StrTest  ,
EatEndWhiteNoTrailingWhitespace   
)

Definition at line 70 of file str.test.cc.

References eat_end_white(), and X86ISA::val.

◆ TEST() [4/50]

TEST ( StrTest  ,
EatLeadWhite   
)

Definition at line 49 of file str.test.cc.

References eat_lead_white(), and X86ISA::val.

◆ TEST() [5/50]

TEST ( StrTest  ,
EatLeadWhiteNoLeadingWhitespace   
)

Definition at line 56 of file str.test.cc.

References eat_lead_white(), and X86ISA::val.

◆ TEST() [6/50]

TEST ( StrTest  ,
EatWhite   
)

Definition at line 77 of file str.test.cc.

References eat_white(), and X86ISA::val.

◆ TEST() [7/50]

TEST ( StrTest  ,
EatWhiteNoWhitespace   
)

Definition at line 84 of file str.test.cc.

References eat_lead_white(), and X86ISA::val.

◆ TEST() [8/50]

TEST ( StrTest  ,
QuoteQuotedString   
)

Definition at line 482 of file str.test.cc.

References quote().

◆ TEST() [9/50]

TEST ( StrTest  ,
QuoteStringNoSpace   
)

Definition at line 472 of file str.test.cc.

References quote().

◆ TEST() [10/50]

TEST ( StrTest  ,
QuoteStringWithSpace   
)

Definition at line 477 of file str.test.cc.

References quote().

◆ TEST() [11/50]

TEST ( StrTest  ,
QuoteStringWithTab   
)

Definition at line 490 of file str.test.cc.

References quote().

◆ TEST() [12/50]

TEST ( StrTest  ,
SplitFirst   
)

Definition at line 110 of file str.test.cc.

References split_first(), and X86ISA::val.

◆ TEST() [13/50]

TEST ( StrTest  ,
SplitFirstNoChar   
)

Definition at line 122 of file str.test.cc.

References split_first(), and X86ISA::val.

◆ TEST() [14/50]

TEST ( StrTest  ,
SplitFirstOnFirstChar   
)

Definition at line 134 of file str.test.cc.

References split_first(), and X86ISA::val.

◆ TEST() [15/50]

TEST ( StrTest  ,
SplitLast   
)

Definition at line 146 of file str.test.cc.

References split_last(), and X86ISA::val.

◆ TEST() [16/50]

TEST ( StrTest  ,
SplitLastNoChar   
)

Definition at line 158 of file str.test.cc.

References split_last(), and X86ISA::val.

◆ TEST() [17/50]

TEST ( StrTest  ,
SplitLastOnLastChar   
)

Definition at line 170 of file str.test.cc.

References split_last(), and X86ISA::val.

◆ TEST() [18/50]

TEST ( StrTest  ,
StartswithDoubleCharArrayDoesNotStartWith   
)

Definition at line 526 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [19/50]

TEST ( StrTest  ,
StartswithDoubleCharArrayDoesStartWith   
)

Definition at line 519 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [20/50]

TEST ( StrTest  ,
StartswithDoubleStringDoesNotStartWith   
)

Definition at line 512 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [21/50]

TEST ( StrTest  ,
StartswithDoubleStringDoesStartWith   
)

Definition at line 505 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [22/50]

TEST ( StrTest  ,
StartswithStringCharArrayDoesNotStartWith   
)

Definition at line 540 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [23/50]

TEST ( StrTest  ,
StartswithStringCharArrayDoesStartWith   
)

Definition at line 533 of file str.test.cc.

References ArmISA::s, and startswith().

◆ TEST() [24/50]

TEST ( StrTest  ,
ToBoolFalse   
)

Definition at line 456 of file str.test.cc.

References output(), and to_bool().

◆ TEST() [25/50]

TEST ( StrTest  ,
ToBoolInvalidInput   
)

Definition at line 462 of file str.test.cc.

References output(), and to_bool().

◆ TEST() [26/50]

TEST ( StrTest  ,
ToBoolTrue   
)

Definition at line 449 of file str.test.cc.

References output(), and to_bool().

◆ TEST() [27/50]

TEST ( StrTest  ,
TokenizedTokenDoesNotExist   
)

Definition at line 235 of file str.test.cc.

References tokenize(), and X86ISA::val.

◆ TEST() [28/50]

TEST ( StrTest  ,
TokenizeOnSpace   
)

Definition at line 187 of file str.test.cc.

References tokenize(), and X86ISA::val.

◆ TEST() [29/50]

TEST ( StrTest  ,
TokenizeOnSpaceIgnFalse   
)

Definition at line 210 of file str.test.cc.

References tokenize(), and X86ISA::val.

◆ TEST() [30/50]

TEST ( StrTest  ,
ToLower   
)

Definition at line 95 of file str.test.cc.

References to_lower(), and X86ISA::val.

◆ TEST() [31/50]

TEST ( StrTest  ,
ToNumber64BitInt   
)

Definition at line 340 of file str.test.cc.

References output(), to_number(), and sc_dt::to_string().

◆ TEST() [32/50]

TEST ( StrTest  ,
ToNumber64BitIntInvalidString   
)

Definition at line 349 of file str.test.cc.

References output(), and to_number().

◆ TEST() [33/50]

TEST ( StrTest  ,
ToNumber8BitInt   
)

Definition at line 251 of file str.test.cc.

References output(), and to_number().

◆ TEST() [34/50]

TEST ( StrTest  ,
ToNumber8BitIntInvalidString   
)

Definition at line 266 of file str.test.cc.

References output(), and to_number().

◆ TEST() [35/50]

TEST ( StrTest  ,
ToNumber8BitIntStringOutOfRange   
)

Definition at line 259 of file str.test.cc.

References output(), and to_number().

◆ TEST() [36/50]

TEST ( StrTest  ,
ToNumber8BitUnsignedLimit   
)

Test that a double can still be converted to int as long as it is below the numerical limit + 1.

Definition at line 305 of file str.test.cc.

References output(), and to_number().

◆ TEST() [37/50]

TEST ( StrTest  ,
ToNumber8BitUnsignedOutOfRange   
)

Test that a double cannot be converted to int when it passes the numerical limit.

Definition at line 317 of file str.test.cc.

References output(), and to_number().

◆ TEST() [38/50]

TEST ( StrTest  ,
ToNumberDouble   
)

Definition at line 407 of file str.test.cc.

References output(), and to_number().

◆ TEST() [39/50]

TEST ( StrTest  ,
ToNumberDoubleIntegerString   
)

Definition at line 416 of file str.test.cc.

References output(), and to_number().

◆ TEST() [40/50]

TEST ( StrTest  ,
ToNumberDoubleNegative   
)

Definition at line 425 of file str.test.cc.

References output(), and to_number().

◆ TEST() [41/50]

TEST ( StrTest  ,
ToNumberEnum   
)

Definition at line 356 of file str.test.cc.

References output(), and to_number().

◆ TEST() [42/50]

TEST ( StrTest  ,
ToNumberFloat   
)

Definition at line 380 of file str.test.cc.

References output(), and to_number().

◆ TEST() [43/50]

TEST ( StrTest  ,
ToNumberFloatIntegerString   
)

Definition at line 389 of file str.test.cc.

References output(), and to_number().

◆ TEST() [44/50]

TEST ( StrTest  ,
ToNumberFloatNegative   
)

Definition at line 398 of file str.test.cc.

References output(), and to_number().

◆ TEST() [45/50]

TEST ( StrTest  ,
ToNumberIntScientificNegative   
)

Test that a negative scientific number cannot be converted to int.

Definition at line 333 of file str.test.cc.

References output(), and to_number().

◆ TEST() [46/50]

TEST ( StrTest  ,
ToNumberScientific   
)

Test that a scientific number is converted properly to double.

Definition at line 435 of file str.test.cc.

References output(), and to_number().

◆ TEST() [47/50]

TEST ( StrTest  ,
ToNumberUnsigned8BitInt   
)

Definition at line 273 of file str.test.cc.

References output(), and to_number().

◆ TEST() [48/50]

TEST ( StrTest  ,
ToNumberUnsigned8BitIntNegative   
)

Definition at line 281 of file str.test.cc.

References output(), and to_number().

◆ TEST() [49/50]

TEST ( StrTest  ,
ToNumberUnsigned8BitIntRoundDown   
)

Test that a double that can be converted to int is always rounded down.

Definition at line 289 of file str.test.cc.

References output(), and to_number().

◆ TEST() [50/50]

TEST ( StrTest  ,
ToNumberUnsignedScientific   
)

Test that a scientific number cannot be converted to int.

Definition at line 325 of file str.test.cc.

References output(), and to_number().


Generated on Tue Jun 22 2021 15:28:33 for gem5 by doxygen 1.8.17