mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-01 00:13:37 +00:00
Fixed: Make sure output from the tool 'ojtest' gets to the terminal.
Also suspend stack trace etc. when the tests fails with a try ... catch.
This commit is contained in:
@@ -342,7 +342,13 @@ task("test-only", function()
|
||||
var cmd = ["ojtest"].concat(tests.items());
|
||||
var cmdString = cmd.map(utilsFile.enquote).join(" ");
|
||||
|
||||
childProcess.execSync(cmdString);
|
||||
try
|
||||
{
|
||||
childProcess.execSync(cmdString, {stdio: 'inherit'});
|
||||
}
|
||||
catch (e)
|
||||
{
|
||||
}
|
||||
});
|
||||
|
||||
task("check-missing-imports", function()
|
||||
|
||||
Reference in New Issue
Block a user