Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 141) sorted by relevance

123456

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-unittest-api_test.cc87 TestInfo const** const tests = in GetSortedTests() local
91 tests[i] = test_case->GetTestInfo(i); in GetSortedTests()
93 std::sort(tests, tests + test_case->total_test_count(), in GetSortedTests()
95 return tests; in GetSortedTests()
158 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_case); in TEST() local
160 EXPECT_STREQ("DISABLED_Dummy1", tests[0]->name()); in TEST()
161 EXPECT_STREQ("ApiTest", tests[0]->test_case_name()); in TEST()
162 EXPECT_TRUE(IsNull(tests[0]->value_param())); in TEST()
163 EXPECT_TRUE(IsNull(tests[0]->type_param())); in TEST()
164 EXPECT_FALSE(tests[0]->should_run()); in TEST()
[all …]
Dgtest-typed-test_test.cc190 const char* tests = "A, B, C"; in TEST_F() local
191 EXPECT_EQ(tests, in TEST_F()
192 state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); in TEST_F()
198 const char* tests = "A,C, B"; in TEST_F() local
199 EXPECT_EQ(tests, in TEST_F()
200 state_.VerifyRegisteredTestNames("foo.cc", 1, tests)); in TEST_F()
Dgtest_shuffle_test.py102 tests = []
103 test_iterations.append(tests)
105 tests.append(line.strip()) # 'TestCaseName.TestName'
110 def GetTestCases(tests): argument
122 for test in tests:
245 def _VerifyTestCasesDoNotInterleave(self, tests): argument
247 for test in tests:
253 (test_case, tests))
Dgtest_output_test_golden_lin.txt10 [==========] Running 63 tests from 28 test cases.
29 [----------] 2 tests from PassingTest
47 [----------] 3 tests from FatalFailureTest
81 [----------] 6 tests from SCOPED_TRACETest
257 [----------] 4 tests from MixedUpTestCaseTest
265 All tests in the same test case must use the same test fixture
271 of the classes to put the tests into different test cases.
276 All tests in the same test case must use the same test fixture
282 of the classes to put the tests into different test cases.
284 [----------] 2 tests from MixedUpTestCaseWithSameTestNameTest
[all …]
/ndk/sources/host-tools/sed-4.2.1/testsuite/
Drunptests.c38 } tests[] = variable
50 for (cnt = 0; cnt < sizeof (tests) / sizeof (tests[0]); ++cnt) in main()
51 if (tests[cnt].str == NULL) in main()
53 printf ("\n%s\n%.*s\n", tests[cnt].reg, in main()
54 (int) strlen (tests[cnt].reg), in main()
57 else if (tests[cnt].reg == NULL) in main()
58 printf ("!!! %s\n", tests[cnt].str); in main()
65 printf ("regexp: \"%s\", string: \"%s\" -> ", tests[cnt].reg, in main()
66 tests[cnt].str); in main()
69 err = regcomp (&re, tests[cnt].reg, tests[cnt].options); in main()
[all …]
Dbug-regex11.c40 } tests[] = { variable
107 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) in main()
109 n = regcomp (&re, tests[i].pattern, tests[i].flags); in main()
114 printf ("%s: regcomp %lu failed: %s\n", tests[i].pattern, i, buf); in main()
119 if (regexec (&re, tests[i].string, tests[i].nmatch, rm, 0)) in main()
121 printf ("%s: regexec %lu failed\n", tests[i].pattern, i); in main()
127 for (n = 0; n < tests[i].nmatch; ++n) in main()
128 if (rm[n].rm_so != tests[i].rm[n].rm_so in main()
129 || rm[n].rm_eo != tests[i].rm[n].rm_eo) in main()
131 if (tests[i].rm[n].rm_so == -1 && tests[i].rm[n].rm_eo == -1) in main()
[all …]
Dbug-regex28.c26 struct tests struct
32 } tests[] = { variable
55 for (i = 0; i < sizeof (tests) / sizeof (tests[i]); ++i) in main()
57 re_set_syntax (tests[i].syntax); in main()
59 if (re_compile_pattern (tests[i].regex, strlen (tests[i].regex), &r)) in main()
65 size_t len = strlen (tests[i].string); in main()
66 int rv = re_search (&r, tests[i].string, len, 0, len, NULL); in main()
67 if (rv != tests[i].retval) in main()
70 i, rv, tests[i].retval); in main()
Dbug-regex27.c26 struct tests struct
32 } tests[] = { argument
46 for (i = 0; i < sizeof (tests) / sizeof (tests[i]); ++i) in main()
49 if (regcomp (&r, tests[i].regex, tests[i].cflags)) in main()
55 int rv = regexec (&r, tests[i].string, 0, NULL, 0); in main()
56 if (rv != tests[i].retval) in main()
59 i, rv, tests[i].retval); in main()
Dbug-regex13.c40 } tests[] = { variable
84 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) in main()
87 re_set_syntax (tests[i].syntax); in main()
89 err = re_compile_pattern (tests[i].pattern, strlen (tests[i].pattern), in main()
98 start = re_search (&regbuf, tests[i].string, strlen (tests[i].string), in main()
99 0, strlen (tests[i].string), NULL); in main()
100 if (start != tests[i].start) in main()
Dbug-regex12.c39 } tests[] = { variable
58 for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) in main()
60 n = regcomp (&re, tests[i].pattern, tests[i].flags); in main()
70 if (! regexec (&re, tests[i].string, tests[i].nmatch, in main()
71 tests[i].nmatch ? rm : NULL, 0)) in main()
/ndk/tests/
DREADME2 of the NDK. Before making a new NDK release, please run tests/run-tests.sh
7 run-tests.sh
8 Run all NDK automated tests. Use --help for more options.
11 Contains tests used to check the NDK build system itself.
14 Contains tests used to check that NDK-generated binaries work properly
15 on an Android device. To run them, call "run-tests.sh" with the "adb" tool
Drun-tests-all.sh99 ANDROID_SERIAL=none ./run-tests.sh --continue-on-build-fail --abi=armeabi
102 NDK_TOOLCHAIN_VERSION=clang ANDROID_SERIAL=none ./run-tests.sh --continue-on-build-fail --abi=armea…
107 NDK_TOOLCHAIN_VERSION="${V#gcc*}" ./run-tests.sh --continue-on-build-fail --full
113 NDK_HOST_32BIT=1 NDK_TOOLCHAIN_VERSION="${V#gcc*}" ./run-tests.sh --continue-on-build-fail
121 NDK_TOOLCHAIN_VERSION="${V#gcc*}" ./run-tests.sh --continue-on-build-fail --wine # --full
129 …NDK_HOST_32BIT=1 NDK_TOOLCHAIN_VERSION="${V#gcc*}" ./run-tests.sh --continue-on-build-fail --wine …
203 …./tests/standalone/run.sh --prefix=$(get_toolchain_binprefix_for_arch $ARCH $GCC_VERSION $TAG)-gcc)
212 ./tests/standalone/run.sh --no-sysroot \
222 ./tests/standalone/run.sh --no-sysroot \
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
Dto_ullong.pass.cpp23 unsigned long long tests[] = {0, in test_to_ullong() local
31 for (std::size_t i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) in test_to_ullong()
33 unsigned long long j = tests[i]; in test_to_ullong()
Dto_ulong.pass.cpp24 std::size_t tests[] = {0, in test_to_ulong() local
32 for (std::size_t i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) in test_to_ulong()
34 std::size_t j = tests[i]; in test_to_ulong()
/ndk/sources/third_party/googletest/googletest/src/
Dgtest-typed-test.cc61 ::std::set<std::string> tests; in VerifyRegisteredTestNames()
65 if (tests.count(name) != 0) { in VerifyRegisteredTestNames()
81 tests.insert(name); in VerifyRegisteredTestNames()
91 if (tests.count(*it) == 0) { in VerifyRegisteredTestNames()
/ndk/docs/text/
DNDK-STACK.text21 I/DEBUG ( 31): pid: 351, tid: 351 %gt;%gt;%gt; /data/local/ndk-tests/crasher <<<
27 I/DEBUG ( 31): #00 pc 0000841e /data/local/ndk-tests/crasher
28 I/DEBUG ( 31): #01 pc 000083fe /data/local/ndk-tests/crasher
29 I/DEBUG ( 31): #02 pc 000083f6 /data/local/ndk-tests/crasher
31 I/DEBUG ( 31): #04 pc 000083ea /data/local/ndk-tests/crasher
32 I/DEBUG ( 31): #05 pc 00008458 /data/local/ndk-tests/crasher
40 pid: 351, tid: 351 >>> /data/local/ndk-tests/crasher <<<
42 …Stack frame #00 pc 0000841e /data/local/ndk-tests/crasher : Routine zoo in /tmp/foo/crasher/jni/…
43 …Stack frame #01 pc 000083fe /data/local/ndk-tests/crasher : Routine bar in /tmp/foo/crasher/jni/…
44 …Stack frame #02 pc 000083f6 /data/local/ndk-tests/crasher : Routine my_comparison in /tmp/foo/cr…
[all …]
/ndk/sources/host-tools/make-3.81/
DMakefile.am173 *) test -d tests || mkdir tests; \
177 rm -f tests/$$f; ln -s ../srctests/$$f tests; \
181 cd tests && $(PERL) ./run_make_tests.pl -make ../make$(EXEEXT) $(MAKETESTFLAGS); \
/ndk/tests/device/test-stlport_shared-exception/jni/
Dcatchptr1.cpp235 static int (*tests[])() = variable
258 for (ix = 0; tests[ix]; ix++) in main()
260 int n = tests[ix] (); in main()
/ndk/tests/device/test-stlport_static-exception/jni/
Dcatchptr1.cpp235 static int (*tests[])() = variable
258 for (ix = 0; tests[ix]; ix++) in main()
260 int n = tests[ix] (); in main()
/ndk/sources/host-tools/make-3.81/tests/
DREADME39 "perl.exe ./run_make-tests.pl".
49 that do (I was tired of having it run my Emacs backup files as tests :))
51 Also, sometimes the tests may behave strangely on networked
56 tests to reduce the impacts of this situation.
66 A directory named "work" will be created when the tests are run which
67 will contain any makefiles and "diff" files of tests that fail so that
80 to see the existing tests. Use the newer tests: many of the tests
82 ChangeLog in the tests directory for pointers.
90 running tests, so that if a test forgets to clean up after itself that
91 can impact future tests.
DNEWS3 Lots of new tests. Renamed to follow the GNU make scheme. Also
37 New tests for features to be included in GNU make 3.77.
44 Reworked some tests to make sure they all work with both perl4 and perl5.
60 Added new tests and updated existing ones. Note that the new tests
63 Ignore any tests whose filenames end in "~", so that Emacs backup
73 Also, some tests and stuff still haven't made it in because I
75 too, will get in eventually. Contributions of scripts (ie, tests
94 Also, some tests and stuff still haven't made it in because I
107 Reorganized tests into subdirs and renamed lots of things so that
117 you're supposed to get when all the tests pass... :-)
[all …]
/ndk/sources/third_party/googletest/googletest/
DCHANGES3 * New feature: death tests are supported on OpenBSD and in iOS
16 death tests.
32 * Parameters of value-parameterized tests are now printed in the
44 WithParamInterface<T> separately, easing conversion of legacy tests.
85 * New feature: elapsed time for the tests is printed by default.
97 * New feature: death tests on Windows, Cygwin, and Mac.
121 * New feature: value-parameterized tests.
125 * Added tests to the Xcode project.
129 * Enabled running Python tests on systems with python 2.3 installed,
135 * New feature: type-parameterized tests.
[all …]
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest-param-test.h.pump35 // Macros and functions for implementing parameterized tests
44 // Value-parameterized tests allow you to test your code with different
47 // Here is how you use value-parameterized tests:
51 // To write value-parameterized tests, first you should define a fixture
63 // Then, use the TEST_P macro to define as many parameterized tests
99 // The following statement will instantiate tests from the FooTest test case
110 // instantiations. The tests from the instantiation above will have
122 // This statement will instantiate all tests from FooTest again, each
128 // The tests from the instantiation above will have these names:
135 // Please note that INSTANTIATE_TEST_CASE_P will instantiate all tests
[all …]
/ndk/build/gmsl/
DREADME21 gmsl-tests
25 make -f gmsl-tests
/ndk/sources/cxx-stl/stlport/
DREADME.original13 bin - installation directory for STLport unit tests;
18 build/test/unit - build directory for regression (unit) tests
19 build/test/eh - build directory for exception handling tests
27 test/unit - unit (regression) tests

123456