1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-25 17:31:36 +01:00

Protect test runner generator against characters in strings that look like comments or functions

This commit is contained in:
Mark VanderVoord
2016-02-25 15:35:45 -05:00
parent 915e3fb9fc
commit bcf6515329
13 changed files with 72 additions and 12 deletions

View File

@@ -35,15 +35,32 @@ void test_ShouldBeIgnored(void)
//void test_ShouldAlsoNotBeTested(void)
//{
// Call_An_Expect();
//
//
// CallAFunction();
// test_CallAFunctionThatLooksLikeATest();
//}
void test_TheSecondThingToTest(void)
{
uint8_t* crazyString = "GET / HTTP/1.1\r\nHost: 127.0.0.1:8081\r\nConnection: keep-alive\r\nCache-Control: no-cache\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\r\nPostman-Token: 768c7149-c3fb-f704-71a2-63918d9195b2\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, sdch\r\nAccept-Language: en-GB,en-US;q=0.8,en;q=0.6\r\n\r\n";
Call_An_Expect();
CallAFunction();
test_CallAFunctionThatLooksLikeATest();
}
void test_TheThirdThingToTest(void)
{
CallAFunction();
}
void test_TheFourthThingToTest(void)
{
uint8_t* anotherString = "GET / HTTP/1.1\r\nHost: 127.0.0.1:8081\r\nConnection: keep-alive\r\nCache-Control: no-cache\r\nUser-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36\r\nPostman-Token: 768c7149-c3fb-f704-71a2-63918d9195b2\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, sdch\r\nAccept-Language: en-GB,en-US;q=0.8,en;q=0.6\r\n\r\n";
Call_An_Expect();
CallAFunction();
test_CallAFunctionThatLooksLikeATest();
}