1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Breakpoint hotkeys, autocomplete fix

This commit is contained in:
Brian Fiete 2019-12-13 14:25:15 -08:00
parent d6a9f4c9ca
commit 1c6c06fa4d
20 changed files with 316 additions and 262 deletions

View file

@ -13,7 +13,7 @@ namespace BeefBuild
const int cProgressSize = 30;
int mProgressIdx = 0;
public bool mIsTest;
public bool mIsFailTest;
public bool mTestIncludeIgnored;
public bool mDidRun;
/*void Test()
@ -103,7 +103,7 @@ namespace BeefBuild
if (mIsTest)
{
RunTests(false);
RunTests(mTestIncludeIgnored, false);
}
else if (mVerb != .New)
Compile(.Normal, null);
@ -129,8 +129,9 @@ namespace BeefBuild
case "-test":
mIsTest = true;
return true;
case "-testfail":
mIsFailTest = true;
case "-testall":
mIsTest = true;
mTestIncludeIgnored = true;
return true;
case "-clean":
mWantsClean = true;