Home
last modified time | relevance | path

Searched full:testing (Results 1 – 25 of 7501) sorted by relevance

12345678910>>...301

/external/grpc-grpc/test/cpp/ext/filters/census/
Dstats_plugin_end2end_test.cc29 #include "opencensus/stats/testing/test_utils.h"
31 #include "src/proto/grpc/testing/echo.grpc.pb.h"
35 namespace testing { namespace
42 using ::opencensus::stats::testing::TestUtils;
59 class StatsPluginEnd2EndTest : public ::testing::Test {
89 const std::string client_method_name_ = "grpc.testing.EchoTestService/Echo";
90 const std::string server_method_name_ = "grpc.testing.EchoTestService/Echo";
144 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
145 ::testing::ElementsAre(client_method_name_), 17))); in TEST_F()
147 ::testing::UnorderedElementsAre(::testing::Pair( in TEST_F()
[all …]
/external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
Dcontrol_pb.rb2 # source: src/proto/grpc/testing/control.proto
6 require 'src/proto/grpc/testing/payloads_pb'
7 require 'src/proto/grpc/testing/stats_pb'
9 add_message "grpc.testing.PoissonParams" do
12 add_message "grpc.testing.ClosedLoopParams" do
14 add_message "grpc.testing.LoadParams" do
16 optional :closed_loop, :message, 1, "grpc.testing.ClosedLoopParams"
17 optional :poisson, :message, 2, "grpc.testing.PoissonParams"
20 add_message "grpc.testing.SecurityParams" do
25 add_message "grpc.testing.ChannelArg" do
[all …]
Dmessages_pb.rb2 # source: src/proto/grpc/testing/messages.proto
7 add_message "grpc.testing.BoolValue" do
10 add_message "grpc.testing.Payload" do
11 optional :type, :enum, 1, "grpc.testing.PayloadType"
14 add_message "grpc.testing.EchoStatus" do
18 add_message "grpc.testing.SimpleRequest" do
19 optional :response_type, :enum, 1, "grpc.testing.PayloadType"
21 optional :payload, :message, 3, "grpc.testing.Payload"
24 optional :response_compressed, :message, 6, "grpc.testing.BoolValue"
25 optional :response_status, :message, 7, "grpc.testing.EchoStatus"
[all …]
/external/toybox/tests/
Dsed.test3 #testing "name" "command" "result" "infile" "stdin"
5 testing 'as cat' 'sed ""' "one\ntwo\nthree" "" "one\ntwo\nthree"
7 SKIP_HOST=1 testing 'sed - - twice' 'sed "" - -' "hello\n" "" "hello\n"
8 testing '-n' 'sed -n ""' "" "" "one\ntwo\nthree"
9 testing '-n p' 'sed -n p' "one\ntwo\nthree" "" "one\ntwo\nthree"
10 testing 'explicit pattern' 'sed -e p -n' "one\ntwo\nthree" "" \
14 testing '' 'sed -n 1p' "one\n" "" "one\ntwo\nthree"
15 testing '' 'sed 2p' "one\ntwo\ntwo\nthree" "" "one\ntwo\nthree"
16 testing '' 'sed -n 2p' "two\n" "" "one\ntwo\nthree"
17 testing '-n $p' 'sed -n \$p' "three" "" "one\ntwo\nthree"
[all …]
Dgrep.test3 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
10 testing "-c" "grep -c 123 input" "3\n" "123\ncount 123\n123\nfasdfasdf" ""
15 testing "-l" "grep -l test foo foo2 foo3" "foo\nfoo2\n" "" ""
18 testing "-q" "grep -q test input && echo yes" "yes\n" "this is a test\n" ""
19 testing "-E" "grep -E '[0-9]' input" "1234123asdfas123123\n1\n" \
21 testing "-e" "grep -e '[0-9]' input" "1234123asdfas123123\n1\n" \
23 testing "-e -e" "grep -e one -e two -e three input" \
25 testing "-F" "grep -F is input" "this is test\nthis is test2\n" \
31 testing "-H" "grep -H is foo foo2 foo3" "foo:this is test\nfoo:this is test2\nfoo2:hello this is te…
[all …]
Dexpr.test3 [ -f testing.sh ] && . testing.sh
5 testing "integer" "expr 5" "5\n" "" ""
6 testing "integer negative" "expr -5" "-5\n" "" ""
7 testing "string" "expr astring" "astring\n" "" ""
8 testing "addition" "expr 1 + 3" "4\n" "" ""
9 testing "5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
10 testing "( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""
11 testing ">" "expr 3 \> 2" "1\n" "" ""
12 testing "* / same priority" "expr 4 \* 3 / 2" "6\n" "" ""
13 testing "/ * same priority" "expr 3 / 2 \* 4" "4\n" "" ""
[all …]
Dprintf.test6 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
13 testing "text" "$PRINTF TEXT" "TEXT" "" ""
14 testing "escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
16 testing "%b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
18 testing "null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19 testing "trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
22 testing "hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
[all …]
Dseq.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "(exit with error)" "seq 2> /dev/null || echo yes" "yes\n" "" ""
8 testing "(exit with error)" "seq 1 2 3 4 2> /dev/null || echo yes" \
10 testing "one argument" "seq 3" "1\n2\n3\n" "" ""
11 testing "two arguments" "seq 5 7" "5\n6\n7\n" "" ""
12 testing "two arguments reversed" "seq 7 5" "" "" ""
13 testing "two arguments equal" "seq 3 3" "3\n" "" ""
14 testing "two arguments equal, arbitrary negative step" "seq 1 -15 1" \
16 testing "two arguments equal, arbitrary positive step" "seq 1 +15 1" \
[all …]
Dfind.test3 [ -f testing.sh ] && . testing.sh
19 #testing "name" "command" "result" "infile" "stdin"
21 # Testing operators
23 testing "-type l -a -type d -o -type p" \
25 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \
27 testing "-type l -o -type d -a -type p" \
29 testing "-type l -o -type d -type p" "find dir -type l -o -type d -type p" \
31 testing "-type l ( -type d -o -type l )" \
33 testing "extra parentheses" \
36 testing "( -type p -o -type d ) -type p" \
[all …]
Ddd.test6 [ -f testing.sh ] && . testing.sh
11 #testing "name" "command" "result" "infile" "stdin"
14 testing "count=2" "dd if=input count=2 ibs=1 $opt" "hi" "high\n" ""
15 testing "count= 2" "dd if=input 'count= 2' ibs=1 $opt" "hi" "high\n" ""
16 SKIP_HOST=1 testing "count=0x2" "dd if=input 'count=0x2' ibs=1 $opt" "hi" \
18 testing "count=-2" "dd if=input 'count=-2' ibs=1 2>/dev/null || echo errored" "errored\n" "" ""
20 testing "if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" ""
21 testing "of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n"
22 testing "if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \
24 testing "if=file | dd of=file" "dd if=input $opt | dd of=foo $opt &&
[all …]
Dreadlink.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "missing" "readlink notfound || echo yes" "yes\n" "" ""
14 testing "file" "readlink file || echo yes" "yes\n" "" ""
15 testing "-f dir" "readlink -f ." "$APWD\n" "" ""
16 testing "-f missing" "readlink -f notfound" "$APWD/notfound\n" "" ""
19 testing "link" "readlink link" "notfound\n" "" ""
20 testing "link->missing" "readlink -f link" "$APWD/notfound\n" "" ""
22 testing "stays relative" "readlink link" "../../\n" "" ""
25 testing "-f link->file" "readlink -f link" "$APWD/file\n" "" ""
[all …]
/external/linux-kselftest/
DAndroid.bp67 "tools/testing/selftests/breakpoints/step_after_suspend_test.c",
76 "tools/testing/selftests/breakpoints/breakpoint_test_arm64.c",
81 "tools/testing/selftests/breakpoints/breakpoint_test.c",
92 "tools/testing/selftests/capabilities/test_execve.c",
93 "tools/testing/selftests/capabilities/validate_cap.c",
103 src: "tools/testing/selftests/cpu-hotplug/cpu-on-off-test.sh",
113 "tools/testing/selftests/efivarfs/open-unlink.c",
114 "tools/testing/selftests/efivarfs/create-read.c",
122 src: "tools/testing/selftests/efivarfs/efivarfs.sh",
132 "tools/testing/selftests/exec/execveat.c",
[all …]
/external/grpc-grpc/src/ruby/pb/src/proto/grpc/testing/
Dmessages_pb.rb2 # source: src/proto/grpc/testing/messages.proto
7 add_message "grpc.testing.BoolValue" do
10 add_message "grpc.testing.Payload" do
11 optional :type, :enum, 1, "grpc.testing.PayloadType"
14 add_message "grpc.testing.EchoStatus" do
18 add_message "grpc.testing.SimpleRequest" do
19 optional :response_type, :enum, 1, "grpc.testing.PayloadType"
21 optional :payload, :message, 3, "grpc.testing.Payload"
24 optional :response_compressed, :message, 6, "grpc.testing.BoolValue"
25 optional :response_status, :message, 7, "grpc.testing.EchoStatus"
[all …]
/external/grpc-grpc-java/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/
DTestServiceGrpc.java1 package io.grpc.testing.integration;
26 comments = "Source: grpc/testing/test.proto")
31 public static final String SERVICE_NAME = "grpc.testing.TestService";
34 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
35 io.grpc.testing.integration.EmptyProtos.Empty> getEmptyCallMethod;
39 requestType = io.grpc.testing.integration.EmptyProtos.Empty.class,
40 responseType = io.grpc.testing.integration.EmptyProtos.Empty.class,
42 public static io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty,
43 io.grpc.testing.integration.EmptyProtos.Empty> getEmptyCallMethod() { in getEmptyCallMethod()
44 …io.grpc.MethodDescriptor<io.grpc.testing.integration.EmptyProtos.Empty, io.grpc.testing.integratio… in getEmptyCallMethod()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers.h25 namespace testing {
27 class HloMatcher : public ::testing::MatcherInterface<const HloInstruction*> {
30 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloMatcher()
34 ::testing::MatchResultListener* listener) const override;
40 std::vector<::testing::Matcher<const HloInstruction*>> operands_;
51 ::testing::MatchResultListener* listener) const override;
62 std::vector<::testing::Matcher<const HloInstruction*>> operands) in HloComparisonMatcher()
66 ::testing::MatchResultListener* listener) const override;
76 HloGetTupleElementMatcher(::testing::Matcher<const HloInstruction*> operand, in HloGetTupleElementMatcher()
82 ::testing::MatchResultListener* listener) const override;
[all …]
/external/grpc-grpc/test/cpp/codegen/
Dcompiler_test_golden3 // source: src/proto/grpc/testing/compiler_test.proto
27 #include "src/proto/grpc/testing/compiler_test.pb.h"
49 namespace testing {
59 return "grpc.testing.ServiceA";
65 …MethodA1(::grpc::ClientContext* context, const ::grpc::testing::Request& request, ::grpc::testing:…
66 …ResponseReaderInterface< ::grpc::testing::Response>> AsyncMethodA1(::grpc::ClientContext* context,…
67 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(As…
69 …onseReaderInterface< ::grpc::testing::Response>> PrepareAsyncMethodA1(::grpc::ClientContext* conte…
70 …return std::unique_ptr< ::grpc::ClientAsyncResponseReaderInterface< ::grpc::testing::Response>>(Pr…
77 …::grpc::ClientWriterInterface< ::grpc::testing::Request>> MethodA2(::grpc::ClientContext* context,…
[all …]
Dcompiler_test_mock_golden3 // source: src/proto/grpc/testing/compiler_test.proto
5 #include "src/proto/grpc/testing/compiler_test.pb.h"
6 #include "src/proto/grpc/testing/compiler_test.grpc.pb.h"
12 namespace testing {
16 …::Status(::grpc::ClientContext* context, const ::grpc::testing::Request& request, ::grpc::testing:…
17 …ntAsyncResponseReaderInterface< ::grpc::testing::Response>*(::grpc::ClientContext* context, const …
18 …ntAsyncResponseReaderInterface< ::grpc::testing::Response>*(::grpc::ClientContext* context, const …
19 …aw, ::grpc::ClientWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
20 …:grpc::ClientAsyncWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
21 …:grpc::ClientAsyncWriterInterface< ::grpc::testing::Request>*(::grpc::ClientContext* context, ::gr…
[all …]
/external/grpc-grpc-java/compiler/src/testNano/golden/
DTestService.java.txt1 package io.grpc.testing.compiler.nano;
27 comments = "Source: grpc/testing/compiler/test.proto")
32 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
37 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest,
38 io.grpc.testing.compiler.nano.Test.SimpleResponse> getUnaryCallMethod;
40 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest,
41 io.grpc.testing.compiler.nano.Test.SimpleResponse> getUnaryCallMethod() {
42 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.nano.Test.SimpleRequest, io.grpc.testing.compile…
47 …io.grpc.MethodDescriptor.<io.grpc.testing.compiler.nano.Test.SimpleRequest, io.grpc.testing.compil…
50 "grpc.testing.compiler.TestService", "UnaryCall"))
[all …]
/external/grpc-grpc-java/compiler/src/test/golden/
DTestService.java.txt1 package io.grpc.testing.compiler;
25 comments = "Source: grpc/testing/compiler/test.proto")
30 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
34 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod;
38 requestType = io.grpc.testing.compiler.Test.SimpleRequest.class,
39 responseType = io.grpc.testing.compiler.Test.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
42 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod() {
43 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest, io.grpc.testing.compiler.Tes…
[all …]
/external/grpc-grpc-java/compiler/src/testLite/golden/
DTestService.java.txt1 package io.grpc.testing.compiler;
25 comments = "Source: grpc/testing/compiler/test.proto")
30 public static final String SERVICE_NAME = "grpc.testing.compiler.TestService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
34 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod;
38 requestType = io.grpc.testing.compiler.Test.SimpleRequest.class,
39 responseType = io.grpc.testing.compiler.Test.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest,
42 io.grpc.testing.compiler.Test.SimpleResponse> getUnaryCallMethod() {
43 …io.grpc.MethodDescriptor<io.grpc.testing.compiler.Test.SimpleRequest, io.grpc.testing.compiler.Tes…
[all …]
/external/webrtc/tools/valgrind-webrtc/drmemory/
Dsuppressions.txt12 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
22 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
32 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
42 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
52 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
60 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
68 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
75 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
85 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
102 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
[all …]
/external/grpc-grpc-java/testing-proto/src/generated/main/grpc/io/grpc/testing/protobuf/
DSimpleServiceGrpc.java1 package io.grpc.testing.protobuf;
25 comments = "Source: io/grpc/testing/protobuf/simpleservice.proto")
30 public static final String SERVICE_NAME = "grpc.testing.SimpleService";
33 private static volatile io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest,
34 io.grpc.testing.protobuf.SimpleResponse> getUnaryRpcMethod;
38 requestType = io.grpc.testing.protobuf.SimpleRequest.class,
39 responseType = io.grpc.testing.protobuf.SimpleResponse.class,
41 public static io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest,
42 io.grpc.testing.protobuf.SimpleResponse> getUnaryRpcMethod() { in getUnaryRpcMethod()
43 …io.grpc.MethodDescriptor<io.grpc.testing.protobuf.SimpleRequest, io.grpc.testing.protobuf.SimpleRe… in getUnaryRpcMethod()
[all …]
/external/guava/guava-gwt/test/com/google/common/testing/
DEqualsTesterTest_gwt.java16 package com.google.common.testing;
19 return "com.google.common.testing.testModule"; in getModuleName()
22 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddEqualObjectWithOArgConstructor()
28 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullEqualObject()
34 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullReference()
40 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddTwoEqualObjectsAtOnceWithNull()
46 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testEqualityGroups()
52 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsIncompatibleClass()
58 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsNull()
64 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidHashCode()
[all …]
/external/grpc-grpc-java/interop-testing/src/generated/main/java/io/grpc/testing/integration/
DTest.java2 // source: grpc/testing/test.proto
4 package io.grpc.testing.integration;
26 "\n\027grpc/testing/test.proto\022\014grpc.testing\032" +
27 "\030grpc/testing/empty.proto\032\033grpc/testing/" +
29 "all\022\023.grpc.testing.Empty\032\023.grpc.testing." +
30 "Empty\022F\n\tUnaryCall\022\033.grpc.testing.Simple" +
31 "Request\032\034.grpc.testing.SimpleResponse\022O\n" +
32 "\022CacheableUnaryCall\022\033.grpc.testing.Simpl" +
33 "eRequest\032\034.grpc.testing.SimpleResponse\022l" +
34 "\n\023StreamingOutputCall\022(.grpc.testing.Str" +
[all …]
/external/grpc-grpc/test/cpp/end2end/
DBUILD33 "//src/proto/grpc/testing:echo_proto",
49 "//src/proto/grpc/testing:echo_messages_proto",
50 "//src/proto/grpc/testing:echo_proto",
51 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
71 "//src/proto/grpc/testing:echo_messages_proto",
72 "//src/proto/grpc/testing:echo_proto",
73 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
92 "//src/proto/grpc/testing:echo_messages_proto",
93 "//src/proto/grpc/testing:echo_proto",
94 "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
[all …]

12345678910>>...301