/external/protobuf/src/google/protobuf/compiler/ |
H A D | zip_output_unittest.sh | 37 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/wpa_supplicant_8/hs20/server/ca/ |
H A D | setup.sh | 70 fail() function 105 $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" 107 $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" 108 $OPENSSL x509 -in rootCA/cacert.pem -out rootCA/cacert.der -outform DER || fail "Failed to create rootCA DER" 109 sha256sum rootCA/cacert.der > rootCA/cacert.fingerprint || fail "Failed to create rootCA fingerprint" 126 $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" 128 $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" 131 $OPENSSL x509 -in demoCA/cacert.pem -out demoCA/cacert.der -outform DER || fail "Failed to create demoCA DER." 132 sha256sum demoCA/cacert.der > demoCA/cacert.fingerprint || fail "Failed to create demoCA fingerprint" 144 $OPENSSL ca -config $PWD/openssl.cnf.tmp -batch -md sha256 -keyfile demoCA/private/cakey.pem -passin pass:$PASS -in ocsp.csr -out ocsp.pem -days 730 -extensions v3_OCSP || fail "Coul [all...] |
/external/icu/icu4c/source/test/cintltst/ |
H A D | crestst.h | 53 int32_t fail; variable
|
/external/parameter-framework/support/android/asio/ |
H A D | asio_shrinker.sh | 58 fail () { function 102 lunch $target || fail "Failed to lunch $target" 105 mma -j$(nproc) || fail "Failed to build $target" 117 xargs git add || fail "Failed to git-add some necessary ASIO headers"
|
/external/clang/test/CodeGenCXX/ |
H A D | dynamic-cast.cpp | 7 B fail; variable 18 return fail;
|
/external/icu/icu4c/source/test/intltest/ |
H A D | restest.h | 52 int32_t fail; member in class:ResourceBundleTest
|
H A D | restsnew.h | 55 int32_t fail; member in class:NewResourceBundleTest
|
/external/javassist/src/main/javassist/runtime/ |
H A D | DotClass.java | 25 public static NoClassDefFoundError fail(ClassNotFoundException e) { method in class:DotClass
|
/external/testng/src/test/java/test/dependent/ |
H A D | SampleDependent1.java | 15 @Test(groups = { "fail" }) 16 public void fail() { method in class:SampleDependent1 20 @Test(dependsOnGroups = { "fail" })
|
H A D | MultipleDependentSampleTest.java | 12 public void fail() { method in class:MultipleDependentSampleTest 13 Assert.fail(); 16 @Test(dependsOnMethods = "fail")
|
/external/testng/src/test/java/test/failures/ |
H A D | Child.java | 13 public void fail() { method in class:Child
|
/external/testng/src/test/java/test/superclass/ |
H A D | ChildSampleTest3.java | 13 public void fail() { method in class:ChildSampleTest3
|
/external/libexif/test/ |
H A D | test-tagtable.c | 28 #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/curl/tests/unit/ |
H A D | curlcheck.h | 24 /* The fail macros mark the current test step as failed, and continue */ 48 /* fail() is for when the test case figured out by itself that a check 50 #define fail(msg) do { \ macro 90 fail("unit_setup() failure"); \
|
/external/deqp/scripts/ |
H A D | check_resolution_list.py | 27 def fail (msg): function 51 fail("Invalid line in resolution list: '%s'" % line) 76 fail("Invalid resolution: '%s %s %s'" % (pattern, minRes, recRes)) 84 fail("Pattern '%s' does not match any cases" % pattern) 88 fail("Case '%s' specified multiple times (when processing '%s')" % (case, pattern)) 93 fail("Case '%s' not specified by any rule" % case)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | Assert.java | 15 public static void fail(Exception e) { method in class:Assert 16 fail(e.toString()); // can't wrap exceptions in jdk 1.3 18 public static void fail(String msg) { method in class:Assert
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Assert.java | 11 public static void fail(Exception e) { method in class:Assert 12 fail(e.toString()); // can't wrap exceptions in jdk 1.3 14 public static void fail(String msg) { method in class:Assert
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
H A D | unit_test.h | 5 unsigned int fail; member in struct:test_result
|
/external/v8/test/intl/ |
H A D | assert.js | 94 function fail(expected, found) { function 107 fail(expected, found); 165 fail("threw an exception: ", e.message || e, name_opt);
|
/external/v8/test/mjsunit/ |
H A D | error-constructors.js | 51 function fail() { assertUnreachable(); }; function 52 ReferenceError.prototype.__defineSetter__('name', fail); 53 ReferenceError.prototype.__defineSetter__('message', fail); 54 ReferenceError.prototype.__defineSetter__('stack', fail); 86 errors[i].prototype.__defineGetter__(prop, fail);
|
/external/v8/test/promises-aplus/lib/ |
H A D | assert.js | 34 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/autotest/client/tests/aio_dio_bugs/src/ |
H A D | aio-dio-subblock-eof-read.c | 27 #define fail(fmt , args...) \ macro 47 fail("only arg should be file name"); 52 fail("open returned error %d\n", errno); 56 fail("truncate returned error %d\n", errno); 61 fail("buffered read returned %d, should be 300\n", ret); 76 fail("io_queue_init returned error %d\n", ret); 80 fail("io_submit returned error %d\n", ret); 84 fail("io_getevents returned %d\n", ret); 91 fail("AIO read of last block in file returned %d bytes, "
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
H A D | sm4_parse.cpp | 32 #define fail(x) assert(0 && (x)) macro 35 #define fail(x) throw(x) macro 116 fail("Unhandled operand component type"); 133 fail("Unhandled extended operand token type"); 146 fail("Unhandled operand index representation"); 365 fail("Unhandled dcl_stream since it's undocumented"); 367 fail("Unhandled declaration");
|
/external/testng/src/test/java/test/inject/ |
H A D | InjectAfterMethodWithTestResultSampleTest.java | 19 public void fail() { method in class:InjectAfterMethodWithTestResultSampleTest 42 || ("fail".equals(name) && r.getStatus() == ITestResult.FAILURE)
|
H A D | InjectBeforeAndAfterMethodsWithTestResultSampleTest.java | 23 public void fail() { method in class:InjectBeforeAndAfterMethodsWithTestResultSampleTest 48 || ("fail".equals(name) && r.getStatus() == ITestResult.FAILURE)
|