Home
last modified time | relevance | path

Searched refs:ok (Results 1 – 25 of 3488) sorted by relevance

12345678910>>...140

/third_party/openssl/test/recipes/
D25-test_verify.t35 ok(verify("ee-cert", "sslserver", ["root-cert"], ["ca-cert"]),
39 ok(!verify("ee-cert", "sslserver", [qw(root-nonca)], [qw(ca-cert)]),
41 ok(!verify("ee-cert", "sslserver", [qw(nroot+serverAuth)], [qw(ca-cert)]),
43 ok(!verify("ee-cert", "sslserver", [qw(nroot+anyEKU)], [qw(ca-cert)]),
45 ok(!verify("ee-cert", "sslserver", [qw(root-cert2)], [qw(ca-cert)]),
47 ok(!verify("ee-cert", "sslserver", [qw(root-name2)], [qw(ca-cert)]),
52 ok(verify("ee-cert-noncrit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
54 ok(!verify("ee-cert-crit-unknown-ext", "", ["root-cert"], ["ca-cert"]),
56 ok(verify("ee-cert-ocsp-nocheck", "", ["root-cert"], ["ca-cert"]),
61 ok(verify("ee-cert", "sslserver", [qw(sroot-cert)], [qw(ca-cert)]),
[all …]
D80-test_ssl_old.t127 ok(run(app([@reqcmd, "-config", $cnf,
133 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $CAreq, "-days", "30",
140 ok(run(app([@x509cmd, "-in", $CAcert,
146 ok(run(app([@reqcmd, "-config", $dummycnf,
152 ok(run(app([@reqcmd, "-config", $dummycnf,
157 ok(run(app([@verifycmd, "-CAfile", $CAcert, $CAcert])),
161 ok(run(app([@reqcmd, "-config", $cnf, "-section", "userreq",
167 ok(run(app([@x509cmd, "-CAcreateserial", "-in", $Ureq, "-days", "30",
176 ok(run(app([@x509cmd,
191 ok(run(app([@genpkeycmd, "-out", $Dkey,
[all …]
D25-test_req.t46 ok( run(app([@addext_args, "-addext", $val])));
47 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val])));
48 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val2])));
49 ok(!run(app([@addext_args, "-addext", $val, "-addext", $val3])));
50 ok(!run(app([@addext_args, "-addext", $val2, "-addext", $val3])));
53 ok(!run(app(["openssl", "req", "-x509",
64 ok(run(app(["openssl", "req",
71 ok(run(app(["openssl", "req",
76 ok(run(app(["openssl", "req",
92 ok(!run(app(["openssl", "req",
[all …]
D03-test_fipsinstall.t84 ok(!run(app(['openssl', 'fipsinstall', '-out', 'fips.cnf', '-module',
91 ok(!run(app(['openssl', 'fipsinstall', '-in', 'dummy.tmp', '-module', $infile,
99 ok(run(app(['openssl', 'fipsinstall', '-out', 'fips.cnf', '-module', $infile,
106 ok(run(app(['openssl', 'fipsinstall', '-in', 'fips.cnf', '-module', $infile,
112 ok(replace_line_file('module-mac', '', 'fips_no_module_mac.cnf')
121 ok(replace_line_file('install-mac', '', 'fips_no_install_mac.cnf')
130 ok(replace_line_file('module-mac', '00:00:00:00:00:00',
140 ok(replace_line_file('install-mac', '00:00:00:00:00:00',
150 ok(replace_line_file('install-status', 'INCORRECT_STATUS_STRING',
161 ok(!run(app(['openssl', 'fipsinstall', '-in', 'fips.cnf', '-module', $infile,
[all …]
/third_party/skia/resources/sksl/folding/
DVectorVectorFolding.sksl7 bool ok = true;
8 ok = ok && (half4(half2(1), half2(2, 3)) + half4(5, 6, 7, 8)) == half4(6, 7, 9, 11);
9 ok = ok && (half4(8, half3(10)) - half4(1)) == half4(7, 9, 9, 9);
10 ok = ok && (half4(2) * half4(1, 2, 3, 4)) == half4(2, 4, 6, 8);
11 ok = ok && (half4(12) / half4(1, 2, 3, 4)) == half4(12, 6, 4, 3);
12 ok = ok && !(half4(1) == half4(2));
13 ok = ok && (half2(1) == half2(1, 1));
14 ok = ok && (half2(1, 1) == half2(1, 1));
15 ok = ok && !(half2(1) == half2(1, 0));
16 ok = ok && (half4(1) == half4(half2(1), half2(1)));
[all …]
DMatrixFoldingES2.sksl6 bool ok = true;
7 ok = ok && (float2x2(float2(1.0, 0.0), float2(0.0, 1.0)) ==
9 ok = ok && !(float2x2(float2(1.0, 0.0), float2(1.0, 1.0)) ==
12 ok = ok && ( float2x2(1) == float2x2(1));
13 ok = ok && !( float2x2(1) == float2x2(0));
14 ok = ok && ( float2x2(-1) == -float2x2(1));
15 ok = ok && ( float2x2(0) == -float2x2(0));
16 ok = ok && (-float2x2(-1) == float2x2(1));
17 ok = ok && (-float2x2(0) == -float2x2(-0));
19 ok = ok && (float2x2(1) == float2x2(float2(1.0, 0.0), float2(0.0, 1.0)));
[all …]
DIntFoldingES2.sksl7 bool ok = true;
9 ok = ok && (x == 34);
11 ok = ok && (x == 30);
13 ok = ok && (x == 64);
15 ok = ok && (x == 16);
17 ok = ok && (x == 1);
19 ok = ok && (x == -2);
21 ok = ok && (x == 3);
23 ok = ok && (x == -4);
25 ok = ok && (x == 5);
[all …]
DFloatFolding.sksl7 bool ok = true;
9 ok = ok && (x == 34);
11 ok = ok && (x == 30);
13 ok = ok && (x == 64);
15 ok = ok && (x == 16);
17 ok = ok && (x == 19);
19 ok = ok && (x == 1);
21 ok = ok && (x == -2);
23 ok = ok && (x == 3);
25 ok = ok && (x == -4);
[all …]
DVectorScalarFolding.sksl5 bool ok = true;
9 ok = ok && (x == half4(6, 6, 7, 8));
11 ok = ok && (x == half4(7, 9, 9, 9));
13 ok = ok && (x == half4(9, 9, 10, 10));
15 ok = ok && (x == half4(6, 6, 6, 10));
17 ok = ok && (x == half4(3, 3, 6, 10));
21 ok = ok && (x == half4(6));
25 ok = ok && (x == half4(6, 6, 7, 8));
27 ok = ok && (x == half4(-7, -9, -9, -9));
29 ok = ok && (x == half4(9, 9, 10, 10));
[all …]
/third_party/skia/resources/sksl/shared/
DNegation.sksl9 bool ok = true;
10 ok = ok && (half4(-1) == -one_splat);
11 ok = ok && (half4(-1, -1, -1, -1) == -one_splat);
12 ok = ok && (half4(-1) == -one_compound);
13 ok = ok && (half4(-1, -1, -1, -1) == -one_compound);
14 ok = ok && (-half4(1) == -one_splat);
15 ok = ok && (-half4(1, 1, 1, 1) == -one_splat);
16 ok = ok && (-half4(1) == -one_compound);
17 ok = ok && (-half4(1, 1, 1, 1) == -one_compound);
18 ok = ok && (half4(-1) == -one_compound);
[all …]
DMatricesNonsquare.sksl4 bool ok = true;
7 ok = ok && (m23 == float2x3(2, 0, 0,
10 ok = ok && (m24 == float2x4(3, 0, 0, 0,
13 ok = ok && (m32 == float3x2(4, 0,
17 ok = ok && (m34 == float3x4(5, 0, 0, 0,
21 ok = ok && (m42 == float4x2(6, 0,
26 ok = ok && (m43 == float4x3(7, 0, 0,
31 ok = ok && (m22 == float2x2(2 * 4));
33 ok = ok && (m33 == float3x3(7 * 5));
37 ok = ok && (m23 == float2x3(3, 1, 1,
[all …]
DVectorScalarMath.sksl5 bool ok = true;
11 ok = ok && (x == half4(3, 2, 2, 3));
13 ok = ok && (x == half4(-1, -1, -2, -2));
15 ok = ok && (x == half4(2, 1, 1, 2));
17 ok = ok && (x == half4(9, 9, 9, 2));
19 ok = ok && (x == half4(18, 4, 9, 2));
23 ok = ok && (x == half4(0, 5, 5, 0));
27 ok = ok && (x == half4(3, 2, 2, 3));
29 ok = ok && (x == half4(9, 9, 10, 10));
31 ok = ok && (x == half4(1, 2, 1, 2));
[all …]
DVectorToMatrixCast.sksl5 bool ok = true;
9 ok = ok && half2x2(testInputs) == half2x2(-1.25, 0, 0.75, 2.25);
10 ok = ok && half2x2(half4(1, 2, 3, 4)) == half2x2(1, 2, 3, 4);
11 ok = ok && half2x2(vec1234) == half2x2(1, 2, 3, 4);
12 ok = ok && half2x2(half4(2, 0, 0, 2)) == half2x2(2);
13 ok = ok && half2x2(half4(2)) == half2x2(2, 2, 2, 2);
15 ok = ok && float2x2(testInputs) == float2x2(-1.25, 0, 0.75, 2.25);
16 ok = ok && float2x2(half4(1, 2, 3, 4)) == float2x2(1, 2, 3, 4);
17 ok = ok && float2x2(vec1234) == float2x2(1, 2, 3, 4);
18 ok = ok && float2x2(half4(4, 0, 0, 4)) == float2x2(4);
[all …]
DMatrixToVectorCast.sksl8 bool ok = true;
10 ok = ok && half4(testMatrix2x2) == half4(1, 2, 3, 4);
11 ok = ok && half4(half2x2(1, 2, 3, 4)) == half4(1, 2, 3, 4);
12 ok = ok && half4(mat1234) == half4(1, 2, 3, 4);
13 ok = ok && half4(half2x2(2)) == half4(2, 0, 0, 2);
14 ok = ok && half4(half2x2(2, 2, 2, 2)) == half4(2);
16 ok = ok && float4(testMatrix2x2) == float4(1, 2, 3, 4);
17 ok = ok && float4(half2x2(1, 2, 3, 4)) == float4(1, 2, 3, 4);
18 ok = ok && float4(mat1234) == float4(1, 2, 3, 4);
19 ok = ok && float4(float2x2(4)) == float4(4, 0, 0, 4);
[all …]
DMatrixScalarSplat.sksl4 bool ok = true;
6 ok = ok && ((float3x3(2) + 4) == float3x3(6, 4, 4, 4, 6, 4, 4, 4, 6));
7 ok = ok && ((float3x3(2) - 4) == float3x3(-2, -4, -4, -4, -2, -4, -4, -4, -2));
8 ok = ok && ((float3x3(2) * 4) == float3x3(8));
9 ok = ok && ((float3x3(2) / 4) == float3x3(0.5));
11 ok = ok && (4 + (float3x3(2)) == float3x3(6, 4, 4, 4, 6, 4, 4, 4, 6));
12 ok = ok && (4 - (float3x3(2)) == float3x3(2, 4, 4, 4, 2, 4, 4, 4, 2));
13 ok = ok && (4 * (float3x3(2)) == float3x3(8));
14 ok = ok && (4 / (float2x2(2, 2, 2, 2)) == float2x2(2, 2, 2, 2));
16 return ok;
[all …]
DMatrices.sksl4 bool ok = true;
7 ok = ok && (m1 == float2x2(1, 2, 3, 4));
11 // ok = ok && (m2 == float2x2(5, 5, 5, 5));
14 ok = ok && (m3 == float2x2(1, 2, 3, 4));
17 ok = ok && (m4 == float2x2(6, 0, 0, 6));
20 ok = ok && (m3 == float2x2(6, 12, 18, 24));
23 ok = ok && (m5 == float2x2(4, 0, 0, 4));
26 ok = ok && (m1 == float2x2(5, 2, 3, 8));
29 ok = ok && (m7 == float2x2(5, 6, 7, 8));
32 ok = ok && (m9 == float3x3(9, 0, 0, 0, 9, 0, 0, 0, 9));
[all …]
/third_party/node/test/fixtures/test-runner/output/
Dabort.snapshot3 # Subtest: ok 1
4 ok 1 - ok 1
8 # Subtest: ok 2
9 ok 2 - ok 2
13 # Subtest: ok 3
14 ok 3 - ok 3
18 # Subtest: ok 4
19 ok 4 - ok 4
23 # Subtest: not ok 1
24 not ok 5 - not ok 1
[all …]
Dabort_suite.snapshot3 # Subtest: ok 1
4 ok 1 - ok 1
8 # Subtest: ok 2
9 ok 2 - ok 2
13 # Subtest: ok 3
14 ok 3 - ok 3
18 # Subtest: ok 4
19 ok 4 - ok 4
23 # Subtest: not ok 1
24 not ok 5 - not ok 1
[all …]
/third_party/skia/tests/sksl/folding/
DVectorScalarFolding.glsl7 bool ok = true;
9 ok = ok && x == ivec4(6, 6, 7, 8);
11 ok = ok && x == ivec4(7, 9, 9, 9);
13 ok = ok && x == ivec4(9, 9, 10, 10);
15 ok = ok && x == ivec4(6, 6, 6, 10);
17 ok = ok && x == ivec4(3, 3, 6, 10);
19 ok = ok && x == ivec4(6);
21 ok = ok && x == ivec4(6, 6, 7, 8);
23 ok = ok && x == ivec4(-7, -9, -9, -9);
25 ok = ok && x == ivec4(9, 9, 10, 10);
[all …]
/third_party/skia/third_party/externals/expat/expat/doc/
Dok.min.css2ok-sans:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantare…
/third_party/skia/third_party/externals/libwebp/examples/
Dimg2webp.c77 int ok; in ReadImage() local
81 ok = ReadPictureWithWIC(filename, pic, 1, NULL); in ReadImage()
82 if (ok) return 1; in ReadImage()
86 ok = reader(data, data_size, pic, 1, NULL); in ReadImage()
88 return ok; in ReadImage()
92 int ok = 1; in SetLoopCount() local
100 ok = (err == WEBP_MUX_OK); in SetLoopCount()
101 if (!ok || !(features & ANIMATION_FLAG)) goto End; in SetLoopCount()
104 ok = (err == WEBP_MUX_OK); in SetLoopCount()
105 if (ok) { in SetLoopCount()
[all …]
/third_party/typescript/tests/baselines/reference/
DextendedUnicodePlaneIdentifiers.types103 const Ɐⱱ = "ok"; // BMP
104 >Ɐⱱ : "ok"
105 >"ok" : "ok"
107 const ������ = "ok"; // SMP
108 >������ : "ok"
109 >"ok" : "ok"
111 const ������ = "ok"; // SIP
112 >������ : "ok"
113 >"ok" : "ok"
115 const ����ⱱ�� = "ok";
[all …]
DnumericIndexerConstrainsPropertyDeclarations.types15 constructor() { } // ok
17 a: string; // ok
20 b: number; // ok
23 c: () => {} // ok
26 "d": string; // ok
29 "e": number; // ok
32 1.0: string; // ok
38 "3.0": string; // ok
47 get X() { // ok
53 set X(v) { } // ok
[all …]
/third_party/skia/tests/sksl/shared/
DVectorScalarMath.glsl7 bool ok = true;
11 ok = ok && x == ivec4(3, 2, 2, 3);
13 ok = ok && x == ivec4(-1, -1, -2, -2);
15 ok = ok && x == ivec4(2, 1, 1, 2);
17 ok = ok && x == ivec4(9, 9, 9, 2);
19 ok = ok && x == ivec4(3, 0, 9, 2);
21 ok = ok && x == ivec4(0, 5, 5, 0);
23 ok = ok && x == ivec4(3, 2, 2, 3);
25 ok = ok && x == ivec4(9, 9, 10, 10);
27 ok = ok && x == ivec4(1, 2, 1, 2);
[all …]
/third_party/node/deps/npm/tap-snapshots/test/lib/commands/
Ddoctor.js.test.cjs57 npm ping ok
58 npm -v ok current: v1.0.0, latest: v1.0.0
59 node -v ok current: v1.0.0, recommended: v1.0.0
60 npm config get registry ok using default registry (https://registry.npmjs.org/)
61 git executable in PATH ok /path/to/git
62 global bin folder in PATH ok {CWD}/global/bin
63 Perms check on cached files ok
64 Perms check on local node_modules ok
65 Perms check on global node_modules ok
66 Perms check on local bin folder ok
[all …]

12345678910>>...140