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

1234567891011>>

/external/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/wpa_supplicant_8/hs20/server/ca/
H A Dsetup.sh70 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 Dcrestst.h53 int32_t fail; variable
/external/parameter-framework/support/android/asio/
H A Dasio_shrinker.sh58 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/v8/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/clang/test/CodeGenCXX/
H A Ddynamic-cast.cpp7 B fail; variable
18 return 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/openssh/openbsd-compat/regress/
H A Dstrduptest.c20 static int fail = 0; variable
29 fail = 1;
33 fail = 1;
44 return fail;
H A Dclosefromtest.c30 fail(char *msg) function
50 fail("failed to close highest fd");
55 fail("closed descriptors it should not have");
61 fail("failed to close from lowest fd");
/external/testng/src/test/java/test/dependent/
H A DSampleDependent1.java15 @Test(groups = { "fail" })
16 public void fail() { method in class:SampleDependent1
20 @Test(dependsOnGroups = { "fail" })
H A DMultipleDependentSampleTest.java12 public void fail() { method in class:MultipleDependentSampleTest
13 Assert.fail();
16 @Test(dependsOnMethods = "fail")
/external/testng/src/test/java/test/failures/
H A DChild.java13 public void fail() { method in class:Child
/external/testng/src/test/java/test/superclass/
H A DChildSampleTest3.java13 public void fail() { method in class:ChildSampleTest3
/external/v8/tools/gyp/test/win/compiler-flags/
H A Dexception-handling-on.cc8 void fail() { function
19 fail();
/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/curl/tests/unit/
H A Dcurlcheck.h24 /* 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 Dcheck_resolution_list.py27 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 DAssert.java15 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 DAssert.java11 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 Dunit_test.h5 unsigned int fail; member in struct:test_result
/external/v8/test/intl/
H A Dassert.js93 function fail(expected, found, user_message = '') { function
106 fail(expected, found, user_message);
149 fail(expected, 'no exception', 'expected thrown exception');
164 fail("no expection", "exception: " + String(e), user_message);
/external/v8/test/mjsunit/
H A Derror-constructors.js51 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 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;

Completed in 2497 milliseconds

1234567891011>>