Home
last modified time | relevance | path

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

1234

/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[] = { argument
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()
Deval.sed32 #Do some more tests
33 s/.*/Doing some more tests -----------------------/p
DMakefile.am36 PCRE.tests BOOST.tests SPENCER.tests \
37 runtest Makefile.tests \
Dspace.inp2 Second_line_ of tests
/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.sh252 NDK_ROOT=/tmp/ndk-tests/install
493 for DIR in `ls -d $ROOTDIR/tests/build/*`; do
569 for DIR in `ls -d $ROOTDIR/tests/device/*`; do
605 for DIR in `ls -d $ROOTDIR/tests/device/*`; do
/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); \
DMakefile.DOS517 @if test -f "$(srcdir)/tests/run_make_tests"; then \
525 echo "cd tests && $(PERL) ./run_make_tests.pl -make ../make.exe $(MAKETESTFLAGS)"; \
531 echo "Can't find the GNU Make test suite ($(srcdir)/tests)."; \
/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 …]
DChangeLog3 * scripts/functions/realpath: Don't run tests with multiple
14 * scripts/features/statipattrules: Add tests for bug #16053.
116 * scripts/features/se_explicit: Add tests for handling '$$' in
167 variables are leaking out beyond the tests they are intended for.
168 Create an %extraENV hash tests can set to add more env. vars.
169 * tests/scripts/features/export: Change to use %extraENV.
170 * tests/scripts/functions/eval: Ditto.
171 * tests/scripts/functions/origin: Ditto.
172 * tests/scripts/options/dash-e: Ditto.
173 * tests/scripts/variables/SHELL: Ditto.
[all …]
/ndk/sources/host-tools/sed-4.2.1/
Dconfigure.ac71 AC_ARG_ENABLE(regex-tests,
72 [ --enable-regex-tests enable regex matcher regression tests (default=yes)],
91 # Determine whether we should run UTF-8 tests by checking if cyrillic
96 # have a couple of platforms where these tests pass. Right now, only
97 # Windows and HP/UX do not support the tests.
98 AC_MSG_CHECKING([whether UTF-8 case folding tests should pass])
/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
DREADME53 tests/run-tests.sh --test=test-stlport
57 a few tests are still failing (mostly related to wchar_t and locales).
/ndk/build/gmsl/
DREADME21 gmsl-tests
25 make -f gmsl-tests
/ndk/build/core/
Dndk-common.sh363 mkdir -p /tmp/ndk-$USER/tmp/tests
365 TMPC=/tmp/ndk-$USER/tmp/tests/test-$$.c
366 TMPO=/tmp/ndk-$USER/tmp/tests/test-$$.o
367 TMPE=/tmp/ndk-$USER/tmp/tests/test-$$$EXE
368 TMPL=/tmp/ndk-$USER/tmp/tests/test-$$.log
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dechoing2 ."echoing. It tests that when a command line starts with \n"
4 ."tests the -n option which tells make to ONLY echo the \n"
6 ."the commands with '\@' are printed. Lastly, it tests the \n"
11 ."been placed in front of the delete command line. Four tests \n"
/ndk/build/tools/
Ddev-cleanup.sh77 for PROJECT in $DIR/tests/build/*; do
80 for PROJECT in $DIR/tests/device/*; do
DDEV-SCRIPTS-USAGE.TXT306 rebuild other target prebuilts or run tests), do:
547 The $NDK/tests directory contains a number of NDK unit-tests that can be
554 $NDK/tests/run-tests.sh --package=<ndk-archive>
557 the tests with it. When all tests have run, the temporary directory is removed
562 $NDK/tests/run-tests.sh --ndk=<path>
565 test suite present under $NDK/tests/, not the one in the remote NDK directory.
571 You can get more traces from the tests by using --verbose. Use it twice to see
574 There are several kinds of tests:
576 - 'build tests' are used to test the building capabilities of the NDK.
577 I.e. the tests will only use them to check that the NDK build system
[all …]
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/
Dwildcard9 two.example and 3.example. We execute three tests. The first
10 executes the print1 target which tests the '*' wildcard by

1234