Skip C# test in C++ only distribution.
This commit is contained in:
parent
8859c07a35
commit
3a5a0724f3
1 changed files with 8 additions and 0 deletions
|
@ -134,6 +134,14 @@ class GenerateAndTest {
|
|||
};
|
||||
|
||||
TEST(CsharpBootstrapTest, GeneratedCsharpDescriptorMatches) {
|
||||
// Skip this whole test if the csharp directory doesn't exist (i.e., a C++11
|
||||
// only distribution).
|
||||
string descriptor_file_name =
|
||||
"../csharp/src/Google.Protobuf/Reflection/Descriptor.cs";
|
||||
if (!File::Exists(TestSourceDir() + "/" + descriptor_file_name)) {
|
||||
return;
|
||||
}
|
||||
|
||||
MockErrorCollector error_collector;
|
||||
DiskSourceTree source_tree;
|
||||
Importer importer(&source_tree, &error_collector);
|
||||
|
|
Loading…
Add table
Reference in a new issue