Skip to content

Commit

Permalink
Android: align xharness output folder name to iOS/WASM (dotnet#37799)
Browse files Browse the repository at this point in the history
Use `xharness-output` instead of `TestResults`.
  • Loading branch information
akoeplinger authored Jun 12, 2020
1 parent e61269b commit 53b64c0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions eng/testing/AndroidRunnerTemplate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ while true; do
fi
done

dotnet xharness android test -i="net.dot.MonoRunner" \
XHARNESS_OUT="$EXECUTION_DIR/xharness-output"

dotnet xharness android test --instrumentation="net.dot.MonoRunner" \
--package-name="net.dot.$TEST_NAME" \
--app=$APK -o=$EXECUTION_DIR/TestResults -v
--app=$APK --output-directory=$XHARNESS_OUT -v

_exitCode=$?

echo "Xharness artifacts: $XHARNESS_OUT"

exit $_exitCode

0 comments on commit 53b64c0

Please sign in to comment.