Enable all smoke-tests
This commit is contained in:
parent
654e77182d
commit
c0f3461780
1 changed files with 14 additions and 14 deletions
|
@ -169,8 +169,8 @@ function doCommand() {
|
|||
|
||||
dotnetCmd=${dotnetDir}/dotnet
|
||||
|
||||
# rename '#'' to 'Sharp' to workaround https://github.com/dotnet/aspnetcore/issues/36900
|
||||
projectDir="${lang//"#"/"Sharp"}_${proj}"
|
||||
# rename '#'' to 'Sharp' to workaround https://github.com/dotnet/roslyn/issues/51692
|
||||
projectDir="${lang//#/Sharp}_${proj}"
|
||||
mkdir "${projectDir}"
|
||||
cd "${projectDir}"
|
||||
|
||||
|
@ -297,18 +297,18 @@ function runAllTests() {
|
|||
if [ "$excludeNonWebTests" == "false" ]; then
|
||||
doCommand C# console new restore build run multi-rid-publish
|
||||
doCommand C# classlib new restore build multi-rid-publish
|
||||
# doCommand C# xunit new restore test
|
||||
# doCommand C# mstest new restore test
|
||||
doCommand C# xunit new restore test
|
||||
doCommand C# mstest new restore test
|
||||
|
||||
doCommand VB console new restore build run multi-rid-publish
|
||||
doCommand VB classlib new restore build multi-rid-publish
|
||||
# doCommand VB xunit new restore test
|
||||
# doCommand VB mstest new restore test
|
||||
doCommand VB xunit new restore test
|
||||
doCommand VB mstest new restore test
|
||||
|
||||
# doCommand F# console new restore build run multi-rid-publish
|
||||
# doCommand F# classlib new restore build multi-rid-publish
|
||||
# doCommand F# xunit new restore test
|
||||
# doCommand F# mstest new restore test
|
||||
doCommand F# console new restore build run multi-rid-publish
|
||||
doCommand F# classlib new restore build multi-rid-publish
|
||||
doCommand F# xunit new restore test
|
||||
doCommand F# mstest new restore test
|
||||
fi
|
||||
|
||||
if [ "$excludeWebTests" == "false" ]; then
|
||||
|
@ -330,12 +330,12 @@ function runWebTests() {
|
|||
doCommand C# mvc "$@" new restore build run multi-rid-publish
|
||||
doCommand C# webapi "$@" new restore build multi-rid-publish
|
||||
doCommand C# razor "$@" new restore build run multi-rid-publish
|
||||
# doCommand C# blazorwasm "$@" new restore build run publish
|
||||
doCommand C# blazorwasm "$@" new restore build run publish
|
||||
doCommand C# blazorserver "$@" new restore build run publish
|
||||
|
||||
# doCommand F# web "$@" new restore build run multi-rid-publish
|
||||
# doCommand F# mvc "$@" new restore build run multi-rid-publish
|
||||
# doCommand F# webapi "$@" new restore build run multi-rid-publish
|
||||
doCommand F# web "$@" new restore build run multi-rid-publish
|
||||
doCommand F# mvc "$@" new restore build run multi-rid-publish
|
||||
doCommand F# webapi "$@" new restore build run multi-rid-publish
|
||||
}
|
||||
|
||||
function runXmlDocTests() {
|
||||
|
|
Loading…
Reference in a new issue