HomeSort by relevance Sort by last modified time
    Searched full:shouldfail (Results 1 - 25 of 30) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug273.go 21 func shouldfail(f func(), desc string) { func
76 shouldfail(badlen, "badlen")
77 shouldfail(biglen, "biglen")
78 shouldfail(badcap, "badcap")
79 shouldfail(badcap1, "badcap1")
80 shouldfail(bigcap, "bigcap")
81 shouldfail(badmapcap, "badmapcap")
82 shouldfail(bigmapcap, "bigmapcap")
83 shouldfail(badchancap, "badchancap")
84 shouldfail(bigchancap, "bigchancap"
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug273.go 21 func shouldfail(f func(), desc string) { func
76 shouldfail(badlen, "badlen")
77 shouldfail(biglen, "biglen")
78 shouldfail(badcap, "badcap")
79 shouldfail(badcap1, "badcap1")
80 shouldfail(bigcap, "bigcap")
81 shouldfail(badmapcap, "badmapcap")
82 shouldfail(bigmapcap, "bigmapcap")
83 shouldfail(badchancap, "badchancap")
84 shouldfail(bigchancap, "bigchancap"
    [all...]
  /art/test/024-illegal-access/src/
PublicAccess.java 22 String shouldFail = SemiPrivate.mStaticPrivvy;
23 System.out.println("Got " + shouldFail);
26 String shouldFail = SemiPrivate.privvyStaticMethod();
27 System.out.println("Got " + shouldFail);
30 String shouldFail = new SemiPrivate().mInstancePrivvy;
31 System.out.println("Got " + shouldFail);
34 String shouldFail = new SemiPrivate().privvyInstanceMethod();
35 System.out.println("Got " + shouldFail);
  /external/testng/src/test/java/test/timeout/
InvocationTimeOutSampleTest.java 17 public void shouldFail() {
TimeOutTest.java 67 verifyFailedTests("shouldFail");
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
PortParserTest.groovy 63 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
68 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
73 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
77 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(null) }
81 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort('') }
91 shouldFail(CommandSyntaxException) { PortParser.parseHostAndPort(null) }
95 shouldFail(CommandSyntaxException) { PortParser.parseHostAndPort(PARAMETERS_INSUFFICIENT) }
  /packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
PackageDeletionTaskTest.java 70 private void runTask(HashSet<String> appsToDelete, boolean shouldFail) {
72 new VerifierCallback(appsToDelete, shouldFail));
102 public VerifierCallback(HashSet<String> expectedDeletedApps, boolean shouldFail) {
104 mShouldFail = shouldFail;
  /external/boringssl/src/ssl/test/runner/
runner.go 133 shouldFail bool
564 if !test.shouldFail && (len(test.expectedError) > 0 || len(test.expectedLocalError) > 0) {
565 panic("Error expected without shouldFail in " + test.name)
751 if failed != test.shouldFail || failed && !correctFailure {
759 case failed && !test.shouldFail:
761 case !failed && test.shouldFail:
876 shouldFail: true,
888 shouldFail: true,
900 shouldFail: true,
913 shouldFail: true
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
MediaResourceManagerTest.java 110 true /* shouldFail */);
134 final int size, final boolean shouldBeCached, final boolean shouldFail) {
138 createAssertListener(shouldBeCached, shouldFail, signal));
150 final boolean shouldBeCached, final boolean shouldFail, final CountDownLatch signal) {
159 assertFalse(shouldFail);
169 assertTrue(shouldFail);
  /external/guava/guava-testlib/test/com/google/common/testing/
NullPointerTesterTest.java 434 shouldFail(new FailOneArgDoesntThrowNPE());
444 shouldFail(new FailOneArgThrowsWrongType());
465 shouldFail(new FailTwoArgsFirstArgDoesntThrowNPE());
476 shouldFail(new FailTwoArgsFirstArgThrowsWrongType());
487 shouldFail(new FailTwoArgsSecondArgDoesntThrowNPE());
498 shouldFail(new FailTwoArgsSecondArgThrowsWrongType());
509 shouldFail(new FailTwoMixedArgsFirstArgDoesntThrowNPE());
520 shouldFail(new FailTwoMixedArgsFirstArgThrowsWrongType());
554 shouldFail(new FailTwoMixedArgsSecondArgDoesntThrowNPE());
565 shouldFail(new FailTwoMixedArgsSecondArgThrowsWrongType())
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
_AbstractFakeCommandHandlerTest.groovy 73 shouldFail { commandHandler.handleCommand(null, session) }
74 shouldFail { commandHandler.handleCommand(command, null) }
109 shouldFail { commandHandler.assertValidReplyCode(0) }
113 shouldFail(IllegalStateException) { commandHandler.getRequiredSessionAttribute(session, "undefined") }
123 shouldFail(NotLoggedInException) { commandHandler.verifyLoggedIn(session) }
136 shouldFail(FileSystemException) { commandHandler.verifyFileSystemCondition(false, PATH, '') }
  /external/testng/src/test/java/test/listeners/
ConfigurationListenerTest.java 55 public void shouldFail() {
  /packages/services/Car/tests/vehiclenetworkservice_unit_tests/
VehiclePropertyAccessControlTest.cpp 80 static const std::string shouldFail[] =
91 for(auto& h : shouldFail) {
106 static const char* shouldFail[] = {"rr", "ww", "rww", "rwr", "", "k"};
116 for(auto& h : shouldFail) {
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 60 bool shouldFail;
70 @property bool shouldFail;
testfilerunner.m 48 @synthesize options, compileLine, shouldFail, binaryName, sourceName;
54 if (shouldFail) [result appendString:@"fail"];
66 if (shouldFail) {
117 if (!shouldFail) {
185 if (shouldFail) return true;
403 result.shouldFail = supposedToNotCompile;
713 if ([line shouldFail]) {
  /external/google-breakpad/src/testing/gtest/test/
gtest_repeat_test.cc 94 TEST(FooTest, ShouldFail) {
195 GTEST_FLAG(filter) = "*-*ShouldFail";
213 GTEST_FLAG(filter) = "*ShouldFail";
  /external/gtest/test/
gtest_repeat_test.cc 94 TEST(FooTest, ShouldFail) {
195 GTEST_FLAG(filter) = "*-*ShouldFail";
213 GTEST_FLAG(filter) = "*ShouldFail";
  /external/protobuf/gtest/test/
gtest_repeat_test.cc 94 TEST(FooTest, ShouldFail) {
195 GTEST_FLAG(filter) = "*-*ShouldFail";
213 GTEST_FLAG(filter) = "*ShouldFail";
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_repeat_test.cc 94 TEST(FooTest, ShouldFail) {
195 GTEST_FLAG(filter) = "*-*ShouldFail";
213 GTEST_FLAG(filter) = "*ShouldFail";
  /ndk/sources/third_party/googletest/googletest/test/
gtest_repeat_test.cc 94 TEST(FooTest, ShouldFail) {
195 GTEST_FLAG(filter) = "*-*ShouldFail";
213 GTEST_FLAG(filter) = "*ShouldFail";
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
AbstractFakeFileSystemTestCase.groovy 44 shouldFail { dirEntry.setPath('abc') }
45 shouldFail { fileEntry.setPath('abc') }
75 shouldFail(FileSystemException) { fileSystem.add(new FileEntry(NEW_FILE_IN_SUBDIR)) }
AbstractFileSystemEntryTestCase.groovy 58 shouldFail { entry.path = 'abc' }
PermissionsTest.groovy 93 shouldFail { new Permissions(string) }
AbstractFileSystemTestCase.groovy 97 shouldFail(InvalidFilenameException) { fileSystem.add(new DirectoryEntry(ILLEGAL_FILE)) }
120 shouldFail(InvalidFilenameException) { fileSystem.add(new FileEntry(ILLEGAL_FILE)) }
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
AbstractGroovyTestCase.groovy 79 def message = shouldFail(code)

Completed in 843 milliseconds

1 2