updated SymString and cleaner tests

This commit is contained in:
Basile Burg 2014-08-25 07:58:02 +02:00
parent c1d1b2c30c
commit 30ddf44dfb
2 changed files with 10 additions and 5 deletions

View File

@ -7,7 +7,7 @@ object CurrentProject: TCEProject
outputOptions.boundsCheck = offAlways
outputOptions.optimizations = True
outputOptions.release = True
pathsOptions.outputFilename = '<CPP>..\..\cleaner.exe'
pathsOptions.outputFilename = '<CAP>cleaner.exe'
preBuildProcess.options = []
preBuildProcess.showWindow = swoNone
postBuildProcess.executable = '<CAP>cleaner.exe'

View File

@ -1,9 +1,15 @@
module runnable;
module expandSymString;
import std.stdio;
import std.getopt;
// pass --a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP> as parameters in "Run file..."
/*
pass:
--a=<CPF> --b=<CPP> --c=<CPR> --d=<CFF> --e=<CFP> --f=<CI> --g=<CAF> --h=<CAP>
as parameters in "Run, Compile and Run file..."
*/
void main(string args[])
{
@ -13,7 +19,6 @@ void main(string args[])
expanded = "";
getopt(args, std.getopt.config.passThrough, c, &expanded);
if (expanded.length != 0)
writeln(expanded);
writeln(c, " : ", expanded);
}
}