Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
9a7d30cf
Commit
9a7d30cf
authored
9 years ago
by
Jan Tattermusch
Browse files
Options
Downloads
Patches
Plain Diff
improved C# support in run_tests.py
parent
68180a2b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tools/run_tests/build_csharp.sh
+8
-1
8 additions, 1 deletion
tools/run_tests/build_csharp.sh
tools/run_tests/run_csharp.sh
+11
-6
11 additions, 6 deletions
tools/run_tests/run_csharp.sh
tools/run_tests/run_tests.py
+8
-3
8 additions, 3 deletions
tools/run_tests/run_tests.py
with
27 additions
and
10 deletions
tools/run_tests/build_csharp.sh
+
8
−
1
View file @
9a7d30cf
...
...
@@ -30,9 +30,16 @@
set
-ex
if
[
"
$CONFIG
"
=
"dbg"
]
then
MSBUILD_CONFIG
=
"Debug"
else
MSBUILD_CONFIG
=
"Release"
fi
# change to gRPC repo root
cd
$(
dirname
$0
)
/../..
root
=
`
pwd
`
xbuild src/csharp/Grpc.sln
xbuild
/p:Configuration
=
$MSBUILD_CONFIG
src/csharp/Grpc.sln
This diff is collapsed.
Click to expand it.
tools/run_tests/run_csharp.sh
+
11
−
6
View file @
9a7d30cf
...
...
@@ -30,17 +30,22 @@
set
-ex
CONFIG
=
${
CONFIG
:-
opt
}
if
[
"
$CONFIG
"
=
"dbg"
]
then
MSBUILD_CONFIG
=
"Debug"
else
MSBUILD_CONFIG
=
"Release"
fi
# change to gRPC repo root
cd
$(
dirname
$0
)
/../..
root
=
`
pwd
`
cd
src/csharp
# TODO: All the tests run pretty fast. In the future, we might need to teach
# run_tests.py about separate tests to make them run in parallel.
for
assembly_name
in
Grpc.Core.Tests Grpc.Examples.Tests Grpc.IntegrationTesting
do
LD_LIBRARY_PATH
=
$root
/libs/dbg nunit-console
-labels
$assembly_name
/bin/Debug/
$assembly_name
.dll
done
export
LD_LIBRARY_PATH
=
$root
/libs/
$CONFIG
nunit-console
-labels
"
$1
/bin/
$MSBUILD_CONFIG
/
$1
.dll"
This diff is collapsed.
Click to expand it.
tools/run_tests/run_tests.py
+
8
−
3
View file @
9a7d30cf
...
...
@@ -61,7 +61,7 @@ class SimpleConfig(object):
self
.
environ
=
environ
self
.
environ
[
'
CONFIG
'
]
=
config
def
job_spec
(
self
,
cmdline
,
hash_targets
):
def
job_spec
(
self
,
cmdline
,
hash_targets
,
shortname
=
None
):
"""
Construct a jobset.JobSpec for a test under this config
Args:
...
...
@@ -74,6 +74,7 @@ class SimpleConfig(object):
be listed
"""
return
jobset
.
JobSpec
(
cmdline
=
cmdline
,
shortname
=
shortname
,
environ
=
self
.
environ
,
hash_targets
=
hash_targets
if
self
.
allow_hashing
else
None
)
...
...
@@ -218,9 +219,13 @@ class RubyLanguage(object):
class
CSharpLanguage
(
object
):
def
test_specs
(
self
,
config
,
travis
):
return
[
config
.
job_spec
(
'
tools/run_tests/run_csharp.sh
'
,
None
)]
assemblies
=
[
'
Grpc.Core.Tests
'
,
'
Grpc.Examples.Tests
'
,
'
Grpc.IntegrationTesting
'
]
return
[
config
.
job_spec
([
'
tools/run_tests/run_csharp.sh
'
,
assembly
],
None
,
shortname
=
assembly
)
for
assembly
in
assemblies
]
def
make_targets
(
self
):
return
[
'
grpc_csharp_ext
'
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment