Searched defs:fail (Results 1 - 25 of 272) sorted by relevance

1234567891011

/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dzip_output_unittest.sh37 fail() { function
57 || fail 'protoc failed.'
61 unzip -t $TEST_TMPDIR/testzip.zip > $TEST_TMPDIR/testzip.list || fail 'unzip failed.'
64 || fail 'testzip.pb.cc not found in output zip.'
66 || fail 'testzip.pb.h not found in output zip.'
68 || fail 'testzip_pb2.py not found in output zip.'
70 && fail 'Zip file contained manifest.'
77 jar tf $TEST_TMPDIR/testzip.jar > $TEST_TMPDIR/testzip.list || fail 'jar failed.'
80 || fail 'Foo.java not found in output jar.'
82 || fail 'Ba
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_output_unittest.sh37 fail() { function
51 testzip.proto || fail 'protoc failed.'
55 unzip -t testzip.zip > testzip.list || fail 'unzip failed.'
58 || fail 'testzip.pb.cc not found in output zip.'
60 || fail 'testzip.pb.h not found in output zip.'
62 || fail 'testzip_pb2.py not found in output zip.'
64 && fail 'Zip file contained manifest.'
71 jar tf testzip.jar > testzip.list || fail 'jar failed.'
74 || fail 'Foo.java not found in output jar.'
76 || fail 'Ba
[all...]
/external/wpa_supplicant_8/hs20/server/ca/
H A Dsetup.sh9 fail() function
26 $OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:4096 -keyout rootCA/private/cakey.pem -out rootCA/careq.pem || fail "Failed to generate Root CA private key"
28 $OPENSSL ca -config openssl.cnf.tmp -md sha256 -create_serial -out rootCA/cacert.pem -days 10957 -batch -keyfile rootCA/private/cakey.pem -passin pass:$PASS -selfsign -extensions v3_ca -outdir rootCA/newcerts -infiles rootCA/careq.pem || fail "Failed to sign Root CA certificate"
45 $OPENSSL req -config openssl.cnf.tmp -batch -new -newkey rsa:2048 -keyout demoCA/private/cakey.pem -out demoCA/careq.pem || fail "Failed to generate Intermediate CA private key"
47 $OPENSSL ca -config openssl.cnf.tmp -md sha256 -create_serial -out demoCA/cacert.pem -days 3652 -batch -keyfile rootCA/private/cakey.pem -cert rootCA/cacert.pem -passin pass:$PASS -extensions v3_ca -infiles demoCA/careq.pem || fail "Failed to sign Intermediate CA certificate"
103 $OPENSSL req -config $PWD/openssl.cnf.tmp -batch -sha256 -new -newkey rsa:2048 -nodes -out server.csr -keyout server.key -reqexts v3_osu_server || fail "Failed to generate server request"
104 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -in server.csr -out server.pem -key $PASS -days 730 -extensions ext_server -policy policy_osu_server || fail "Failed to sign server certificate"
/external/chromium_org/build/
H A Dbuild-ctags.sh18 fail() { function
34 cd "$CHROME_SRC_DIR/$1" || fail $1
38 $(ctags_cmd "$extraexcludes") 2> /dev/null || fail $1
/external/chromium_org/content/test/data/dom_storage/
H A Dcommon.js13 if (document.location.hash == '#fail')
22 function fail(message) { function
24 document.location.hash = '#fail';
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcrestst.h53 int32_t fail; variable
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1145.js43 function fail() { continue; } function
51 if (x == 0) fail(); // Hope to be inlined during optimization.
/external/icu/icu4c/source/test/cintltst/
H A Dcrestst.h53 int32_t fail; variable
/external/chromium_org/third_party/icu/source/test/intltest/
H A Drestest.h52 int32_t fail; member in class:ResourceBundleTest
H A Drestsnew.h55 int32_t fail; member in class:NewResourceBundleTest
/external/chromium_org/tools/gyp/test/win/compiler-flags/
H A Dexception-handling-on.cc8 void fail() { function
19 fail();
/external/clang/test/CodeGenCXX/
H A Ddynamic-cast.cpp6 B fail; variable
17 return fail;
/external/genext2fs/
H A Dtest-mount.sh16 fail () { function
39 /sbin/e2fsck -fn ext2.img || fail
41 mount -t ext2 -o ro,loop ext2.img mnt || fail
45 fail
59 /sbin/e2fsck -fn ext2.img || fail
61 mount -t ext2 -o ro,loop ext2.img mnt || fail
62 [ -d mnt/dev ] || fail
74 diff fout lsout || fail
/external/icu/icu4c/source/test/intltest/
H A Drestest.h52 int32_t fail; member in class:ResourceBundleTest
H A Drestsnew.h55 int32_t fail; member in class:NewResourceBundleTest
/external/javassist/src/main/javassist/runtime/
H A DDotClass.java25 public static NoClassDefFoundError fail(ClassNotFoundException e) { method in class:DotClass
/external/chromium_org/content/test/data/fileapi/
H A Dcommon.js12 if (document.location.hash == '#fail')
21 function fail(message) function
24 document.location.hash = '#fail';
52 fail('unexpectedErrorCallback:' + fileErrorToString(e));
/external/libexif/test/
H A Dtest-tagtable.c28 #define VALIDATE(s) if (!(s)) {printf("Test %s FAILED\n", #s); fail=1;}
30 #define TESTBLOCK(t) {int rc = (t); fail |= rc; \
36 int fail = 0; local
168 return fail;
174 int fail = 0; local
208 return fail;
214 int fail = 0; local
219 return fail;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.h5 unsigned int fail; member in struct:test_result
/external/chromium_org/v8/test/intl/
H A Dassert.js94 function fail(expected, found) { function
107 fail(expected, found);
165 fail("threw an exception: ", e.message || e, name_opt);
/external/chromium_org/v8/test/mjsunit/
H A Derror-constructors.js53 function fail() { assertUnreachable(); }; function
54 ReferenceError.prototype.__defineSetter__('name', fail);
55 ReferenceError.prototype.__defineSetter__('message', fail);
56 ReferenceError.prototype.__defineSetter__('stack', fail);
78 errors[i].prototype.__defineGetter__(props[j], fail);
/external/chromium_org/v8/test/promises-aplus/lib/
H A Dassert.js34 function fail(actual, expected, message, operator) { function
49 fail(actual, expected, message, '==');
55 fail(actual, expected, message, '!=');
61 fail(actual, expected, message, '===');
67 fail(actual, expected, message, '!==');
83 assert.fail = fail;
/external/deqp/scripts/
H A Dcheck_resolution_list.py7 def fail (msg): function
31 fail("Invalid line in resolution list: '%s'" % line)
56 fail("Invalid resolution: '%s %s %s'" % (pattern, minRes, recRes))
64 fail("Pattern '%s' does not match any cases" % pattern)
68 fail("Case '%s' specified multiple times (when processing '%s')" % (case, pattern))
73 fail("Case '%s' not specified by any rule" % case)
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dunit_test.h5 unsigned int fail; member in struct:test_result
/external/skia/dm/
H A DDMReporter.cpp32 void Reporter::fail(SkString msg) { function in class:DM::Reporter

Completed in 5927 milliseconds

1234567891011