summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpportunityLiu <[email protected]>2019-06-06 20:15:34 +0800
committerOpportunityLiu <[email protected]>2019-06-06 20:15:34 +0800
commitb4c94415e8c7ee24cb3f8c0ba6e0536282121adf (patch)
treebad73963173d2c5243192f2e20f1f758da0bd8d0
parentb175f88ac1c2557be21e186be4f23dae5fc7c03c (diff)
fix
-rw-r--r--.appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index fe31e67fa..48a726de3 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -34,8 +34,8 @@ test_script:
Add-AppveyorTest -Name "tests" -Framework "xmake-test" -FileName ./tests/test.lua -Outcome Running
$time = Measure-Command {
$results = xmake lua --verbose --diagnosis tests\test.lua 2>&1
- $stdout = [string]::Join("`n", $results)
$outcome = if ($?) { "Passed" } else { "Failed" }
+ $stdout = [string]::Join("`n", $results)
}
Update-AppveyorTest -Name "tests" -Framework "xmake-test" -FileName ./tests/test.lua -Outcome $outcome -Duration $time.TotalMilliseconds -StdOut $stdout