1 // Protocol Buffers - Google's data interchange format 2 // Copyright 2008 Google Inc. All rights reserved. 3 // 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file or at 6 // https://developers.google.com/open-source/licenses/bsd 7 8 #include "binary_json_conformance_suite.h" 9 #include "conformance_test.h" 10 #include "text_format_conformance_suite.h" 11 main(int argc,char * argv[])12int main(int argc, char *argv[]) { 13 google::protobuf::BinaryAndJsonConformanceSuite binary_and_json_suite; 14 google::protobuf::TextFormatConformanceTestSuite text_format_suite; 15 return google::protobuf::ForkPipeRunner::Run( 16 argc, argv, {&binary_and_json_suite, &text_format_suite}); 17 } 18