forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests/EndToEndTests/UnitTests/ManagedEvalTests: added, Windows CPU-only
- Loading branch information
1 parent
3faa69a
commit f076227
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
Tests/EndToEndTests/UnitTests/ManagedEvalTests/baseline.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
CPU info: | ||
CPU Model Name: Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz | ||
Hardware threads: 8 | ||
Total Memory: 33417320 kB | ||
------------------------------------------------------------------- | ||
Microsoft (R) Test Execution Command Line Tool Version 12.0.30723.0 | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
|
||
Starting test execution, please wait... | ||
Passed EvalManagedValuesBufferTest | ||
Passed EvalManagedVariableSchemaTest | ||
Passed EvalManagedConstantNetworkTest | ||
Passed EvalManagedScalarTimesTest | ||
Passed EvalManagedSparseTimesTest | ||
Passed EvalManagedScalarTimesDualOutputTest | ||
Passed EvalManagedCrossAppDomainExceptionTest | ||
|
||
Total tests: 7. Passed: 7. Failed: 0. Skipped: 0. | ||
Test Run Successful. | ||
Test execution time: 0.4305 Seconds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
. $TEST_ROOT_DIR/run-test-common | ||
|
||
VSTEST_CONSOLE=$(cygpath -au "$VS120COMNTOOLS\\..\\IDE\\CommonExtensions\\Microsoft\\TestWindow\\vstest.console.exe") | ||
|
||
test -x "$VSTEST_CONSOLE" || exit $? | ||
|
||
"$VSTEST_CONSOLE" /inIsolation /Platform:x64 $(cygpath -aw "$TEST_BIN_DIR/UnitTests/ManagedEvalTests.dll") || exit $? |
15 changes: 15 additions & 0 deletions
15
Tests/EndToEndTests/UnitTests/ManagedEvalTests/testcases.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
dataDir: . | ||
|
||
tags: | ||
# CPU-only for now. | ||
- bvt-e (build_sku == 'cpu') and (os=='windows') | ||
- nightly-e (build_sku == 'cpu') and (os=='windows') | ||
|
||
testCases: | ||
Each test passes: | ||
patterns: | ||
- Passed | ||
|
||
Test run successful: | ||
patterns: | ||
- "Test Run Successful." |