Searched refs:conformance (Results 1 – 25 of 191) sorted by relevance
12345678
/external/protobuf/conformance/ |
D | Makefile.am | 4 conformance.proto 16 conformance.pb.cc \ 17 conformance.pb.h 23 conformance.rb \ 31 com/google/protobuf/conformance/Conformance.java \ 95 lite/com/google/protobuf/conformance/Conformance.java \ 129 bin_PROGRAMS = conformance-test-runner conformance-cpp 138 conformance.proto \ 155 nodist_conformance_test_runner_SOURCES = conformance.pb.cc 160 conformance_test_runner-conformance_test.$(OBJEXT): conformance.pb.h [all …]
|
D | conformance_test.h | 49 namespace conformance { 114 const conformance::ConformanceRequest& request, 115 const conformance::ConformanceResponse& response, 118 const conformance::ConformanceRequest& request, 119 const conformance::ConformanceResponse& response); 121 const conformance::ConformanceRequest& request, 122 conformance::ConformanceResponse* response); 124 conformance::WireFormat input_format, 126 conformance::WireFormat requested_output); 130 const conformance::TestAllTypes& input,
|
D | README.md | 8 This directory contains conformance tests for testing completeness and 12 This directory contains the tester process `conformance-test`, which 24 $ cd conformance && make test_cpp 34 [conformance.proto](https://github.com/google/protobuf/blob/master/conformance/conformance.proto). 37 (see [conformance_cpp.cc](https://github.com/google/protobuf/blob/master/conformance/conformance_cp…
|
D | conformance_cpp.cc | 39 using conformance::ConformanceRequest; 40 using conformance::ConformanceResponse; 41 using conformance::TestAllTypes; 125 case conformance::UNSPECIFIED: in DoTest() 129 case conformance::PROTOBUF: in DoTest() 134 case conformance::JSON: { in DoTest()
|
D | conformance_test.cc | 47 using conformance::ConformanceRequest; 48 using conformance::ConformanceResponse; 49 using conformance::TestAllTypes; 50 using conformance::WireFormat; 255 case conformance::PROTOBUF: in RunValidInputTest() 259 case conformance::JSON: in RunValidInputTest() 286 if (requested_output != conformance::JSON) { in RunValidInputTest() 313 if (requested_output != conformance::PROTOBUF) { in RunValidInputTest() 360 request.set_requested_output_format(conformance::PROTOBUF); in ExpectParseFailureForProto() 387 conformance::JSON, equivalent_text_format, in RunValidJsonTest() [all …]
|
D | conformance_test_runner.cc | 69 using conformance::ConformanceRequest; 70 using conformance::ConformanceResponse; 124 conformance::ConformanceResponse response_obj; in RunTest()
|
/external/protobuf/ |
D | .gitignore | 102 conformance/.libs/ 103 conformance/com/ 104 conformance/conformance-cpp 105 conformance/conformance-csharp 106 conformance/conformance-java 107 conformance/conformance-objc 108 conformance/conformance-test-runner 109 conformance/conformance.pb.cc 110 conformance/conformance.pb.h 111 conformance/Conformance.pbobjc.h [all …]
|
D | tests.sh | 38 cd conformance && make test_cpp && cd .. 70 cd conformance && make test_csharp && cd .. 144 cd conformance && make test_java && cd .. 209 --core-only --skip-xcode --skip-objc-conformance 252 cd conformance && make test_objc && cd ..
|
/external/ltp/testcases/open_posix_testsuite/ |
D | Makefile | 9 CRITICAL_MAKEFILE= conformance/interfaces/timer_settime/Makefile 14 SUBDIRS= conformance functional stress 35 all: conformance-all functional-all stress-all tools-all 59 install: bin-install conformance-install functional-install stress-install 61 test: conformance-test functional-test stress-test 64 conformance-all: $(CRITICAL_MAKEFILE) 66 @$(BUILD_MAKE) -C conformance -j1 all 68 conformance-install: 69 @$(MAKE) -C conformance install 71 conformance-test: [all …]
|
D | .gitignore | 1 /conformance/interfaces/*/Makefile 2 /conformance/interfaces/*/*/Makefile 3 /conformance/interfaces/*/*-core 4 /conformance/behavior/*/Makefile 5 /conformance/definitions/*/Makefile 6 /conformance/definitions/*/*/Makefile
|
D | README | 17 performing conformance, functional, and stress testing of the IEEE 35 - Enable assertion based traceability for conformance testing of POSIX 49 This project will cover conformance, functional, stress, performance, 52 focus mainly on conformance; however, the other types of testing will be 56 HOWTO_ConformanceTest - info on creation and structure of conformance tests
|
D | ChangeLog | 6 - A patch from Randy.Dunlap to fix shm conformance uninitialzedvariables 7 - A patch from Randy.Dunlap to fix 2 pthread conformance problems 12 - conformance/interfaces/aio_* and 13 conformance/interface/lio_listio: add new cases and bug
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/strftime/ |
D | coverage.txt | 5 conformance/interfaces/strftime/1-1: build: FAILED: Compiler output: 7 conformance/interfaces/strftime/1-1.c: In function `main': 8 conformance/interfaces/strftime/1-1.c:67: warning: `%c' yields only last 2 digits of year in some l… 9 conformance/interfaces/strftime/1-1.c:95: warning: `%D' yields only last 2 digits of year 10 conformance/interfaces/strftime/1-1.c:132: warning: `%g' yields only last 2 digits of year 11 conformance/interfaces/strftime/1-1.c:312: warning: `%x' yields only last 2 digits of year in some … 12 conformance/interfaces/strftime/1-1.c:330: warning: `%y' yields only last 2 digits of year
|
/external/golang-protobuf/conformance/ |
D | test.sh | 4 CONFORMANCE_ROOT=$1/conformance 5 CONFORMANCE_TEST_RUNNER=$CONFORMANCE_ROOT/conformance-test-runner 19 a=$CONFORMANCE_ROOT/conformance.proto 20 b=internal/conformance_proto/conformance.proto 26 $CONFORMANCE_TEST_RUNNER --failure_list failure_list_go.txt ./conformance.sh
|
/external/ltp/testcases/open_posix_testsuite/Documentation/ |
D | HOWTO_RunTests | 10 Our framework currently has the ability to build and run conformance, 19 The build and execution process varies for conformance tests. 50 This will build all of the conformance, functional, and stress tests. 56 To run conformance tests for a specific directory, just cd to the directory 60 # cd conformance/definitions/time_h ; make all test 62 To just build conformance tests, run: 63 # make conformance-all 65 To just run conformance tests, run: 66 # make conformance-test
|
D | HOWTO_DefinitionsTest | 37 For examples, see posixtestsuite/conformance/definitions/signal/15-1.c 51 For examples, see posixtestsuite/conformance/definitions/signal/22-*.c 68 For examples, see posixtestsuite/conformance/definitions/signal/43-1.c
|
D | HOWTO_ConformanceTest | 4 This document describes what conformance tests are, how they are created, 10 Conformance tests test conformance to the POSIX* specification. They test 17 The directory structure for conformance tests is as follows. 19 All tests are located in the conformance/ directory off of posixtestsuite/.
|
D | HOWTO_FunctionalStressTest | 38 conformance tests, functional tests from a different area (i.e., 47 conformance tests. The grammar for functional/stress tests is: 64 test cases for assertions as in the conformance tests.
|
/external/protobuf/objectivec/DevTools/ |
D | full_mac_build.sh | 42 --skip-objc-conformance 43 Skip the Objective C conformance tests (run on OS X). 112 --skip-objc-conformance ) 183 cd conformance 268 cd conformance
|
/external/deqp/external/openglcts/ |
D | README.md | 5 2.0/3.X conformance tests, and how to verify and submit test results. 26 - [Conformance runs](#conformance-runs) 59 This document contains instructions for certifying conformance of implementations 62 1. Configure the conformance tests and port them to your platform. 83 The conformance tests require a file system. The file system requires support 84 for long file names (i.e. > 8.3 name format). Source files in the conformance 89 Each execution of the conformance test writes a text-format results log to a disk. 90 You will need to include this log as part of your conformance submission package. 92 The conformance test executable can be large. Compiler options and CPU instruction 229 conformance submission. [all …]
|
/external/antlr/runtime/ObjC/Framework/ |
D | DebugTreeNodeStream.h | 50 #pragma mark TreeNodeStream conformance 56 #pragma mark IntStream conformance
|
D | UnbufferedCommonTreeNodeStream.h | 79 #pragma mark ANTLRTreeNodeStream conformance 95 #pragma mark ANTLRIntStream conformance
|
/external/ltp/testcases/network/nfsv4/acl/ |
D | README | 5 Testing ACL conformance, ACL limits, and ACL robustness 12 acl1: verify the conformance ok access regarding the ACL of files and directory.
|
/external/clang/test/SemaObjC/ |
D | compare-qualified-class.m | 56 // because the property type explicity adds ProtocolX conformance 62 // protocol conformance that ClassB already conforms to
|
/external/protobuf/csharp/ |
D | generate_protos.sh | 62 conformance/conformance.proto
|
12345678