Home
last modified time | relevance | path

Searched full:testing (Results 1 – 25 of 6850) sorted by relevance

12345678910>>...274

/external/toybox/tests/
Dsed.test3 #testing "name" "command" "result" "infile" "stdin"
5 testing 'as cat' 'sed ""' "one\ntwo\nthree" "" "one\ntwo\nthree"
7 SKIP_HOST=1 testing 'sed - - twice' 'sed "" - -' "hello\n" "" "hello\n"
8 testing '-n' 'sed -n ""' "" "" "one\ntwo\nthree"
9 testing '-n p' 'sed -n p' "one\ntwo\nthree" "" "one\ntwo\nthree"
10 testing 'explicit pattern' 'sed -e p -n' "one\ntwo\nthree" "" \
14 testing '' 'sed -n 1p' "one\n" "" "one\ntwo\nthree"
15 testing '' 'sed 2p' "one\ntwo\ntwo\nthree" "" "one\ntwo\nthree"
16 testing '' 'sed -n 2p' "two\n" "" "one\ntwo\nthree"
17 testing '-n $p' 'sed -n \$p' "three" "" "one\ntwo\nthree"
[all …]
Dgrep.test3 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
10 testing "-c" "grep -c 123 input" "3\n" "123\ncount 123\n123\nfasdfasdf" ""
15 testing "-l" "grep -l test foo foo2 foo3" "foo\nfoo2\n" "" ""
18 testing "-q" "grep -q test input && echo yes" "yes\n" "this is a test\n" ""
19 testing "-E" "grep -E '[0-9]' input" "1234123asdfas123123\n1\n" \
21 testing "-e" "grep -e '[0-9]' input" "1234123asdfas123123\n1\n" \
23 testing "-e -e" "grep -e one -e two -e three input" \
25 testing "-F" "grep -F is input" "this is test\nthis is test2\n" \
31 testing "-H" "grep -H is foo foo2 foo3" "foo:this is test\nfoo:this is test2\nfoo2:hello this is te…
[all …]
Dexpr.test3 [ -f testing.sh ] && . testing.sh
5 testing "integer" "expr 5" "5\n" "" ""
6 testing "integer negative" "expr -5" "-5\n" "" ""
7 testing "string" "expr astring" "astring\n" "" ""
8 testing "addition" "expr 1 + 3" "4\n" "" ""
9 testing "5 + 6 * 3" "expr 5 + 6 \* 3" "23\n" "" ""
10 testing "( 5 + 6 ) * 3" "expr \( 5 + 6 \) \* 3" "33\n" "" ""
11 testing ">" "expr 3 \> 2" "1\n" "" ""
12 testing "* / same priority" "expr 4 \* 3 / 2" "6\n" "" ""
13 testing "/ * same priority" "expr 3 / 2 \* 4" "4\n" "" ""
[all …]
Dprintf.test6 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
13 testing "text" "$PRINTF TEXT" "TEXT" "" ""
14 testing "escapes" "$PRINTF 'one\ntwo\n\v\t\r\f\e\b\athree'" \
16 testing "%b escapes" "$PRINTF %b 'one\ntwo\n\v\t\r\f\e\b\athree'" \
18 testing "null" "$PRINTF 'x\0y' | od -An -tx1" ' 78 00 79\n' "" ""
19 testing "trailing slash" "$PRINTF 'abc\'" 'abc\' "" ""
20 testing "octal" "$PRINTF ' \1\002\429\045x'" ' \001\002"9%x' "" ""
21 testing "not octal" "$PRINTF '\9'" '\9' "" ""
22 testing "hex" "$PRINTF 'A\x1b\x2B\x3Q\xa' | od -An -tx1" \
[all …]
Ddd.test6 [ -f testing.sh ] && . testing.sh
11 #testing "name" "command" "result" "infile" "stdin"
14 testing "count=2" "dd if=input count=2 ibs=1 $opt" "hi" "high\n" ""
15 testing "count= 2" "dd if=input 'count= 2' ibs=1 $opt" "hi" "high\n" ""
16 testing "count=0x2" "dd if=input 'count=0x2' ibs=1 $opt" "hi" "high\n" ""
17 testing "count=-2" "dd if=input 'count=-2' ibs=1 2>&1" "dd: invalid number '-2'\n" "" ""
19 testing "if=(file)" "dd if=input $opt" "I WANT\n" "I WANT\n" ""
20 testing "of=(file)" "dd of=file $opt && cat file" "I WANT\n" "" "I WANT\n"
21 testing "if=file of=file" "dd if=input of=foo $opt && cat foo && rm -f foo" \
23 testing "if=file | dd of=file" "dd if=input $opt | dd of=foo $opt &&
[all …]
Dfind.test3 [ -f testing.sh ] && . testing.sh
17 #testing "name" "command" "result" "infile" "stdin"
19 # Testing operators
21 testing "-type l -a -type d -o -type p" \
23 testing "-type l -type d -o -type p" "find dir -type l -type d -o -type p" \
25 testing "-type l -o -type d -a -type p" \
27 testing "-type l -o -type d -type p" "find dir -type l -o -type d -type p" \
29 testing "-type l ( -type d -o -type l )" \
31 testing "extra parentheses" \
34 testing "( -type p -o -type d ) -type p" \
[all …]
Dreadlink.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "missing" "readlink notfound || echo yes" "yes\n" "" ""
14 testing "file" "readlink file || echo yes" "yes\n" "" ""
15 testing "-f dir" "readlink -f ." "$APWD\n" "" ""
16 testing "-f missing" "readlink -f notfound" "$APWD/notfound\n" "" ""
19 testing "link" "readlink link" "notfound\n" "" ""
20 testing "link->missing" "readlink -f link" "$APWD/notfound\n" "" ""
22 testing "stays relative" "readlink link" "../../\n" "" ""
25 testing "-f link->file" "readlink -f link" "$APWD/file\n" "" ""
[all …]
Dtest.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
28 testing "-b" "type_test -b" "" "" ""
29 testing "-c" "type_test -c" "L" "" ""
30 testing "-d" "type_test -d" "d" "" ""
31 testing "-f" "type_test -f" "fs" "" ""
32 testing "-h" "type_test -h" "L" "" ""
33 testing "-L" "type_test -L" "L" "" ""
34 testing "-s" "type_test -s" "ds" "" ""
35 testing "-S" "type_test -S" "" "" ""
[all …]
Dtail.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "tail" "tail && echo yes" "oneyes\n" "" "one"
10 testing "file" "tail file1" \
12 testing "-n in bounds" "tail -n 3 file1" "nine\nten\neleven\n" "" ""
13 testing "-n out of bounds" "tail -n 999 file1" "$BIGTEST" "" ""
14 testing "-n+ in bounds" "tail -n +3 file1" \
16 testing "-n+ outof bounds" "tail -n +999 file1" "" "" ""
17 testing "-c in bounds" "tail -c 27 file1" \
19 testing "-c out of bounds" "tail -c 999 file1" "$BIGTEST" "" ""
[all …]
Dseq.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "(exit with error)" "seq 2> /dev/null || echo yes" "yes\n" "" ""
8 testing "(exit with error)" "seq 1 2 3 4 2> /dev/null || echo yes" \
10 testing "one argument" "seq 3" "1\n2\n3\n" "" ""
11 testing "two arguments" "seq 5 7" "5\n6\n7\n" "" ""
12 testing "two arguments reversed" "seq 7 5" "" "" ""
13 testing "two arguments equal" "seq 3 3" "3\n" "" ""
14 testing "two arguments equal, arbitrary negative step" "seq 1 -15 1" \
16 testing "two arguments equal, arbitrary positive step" "seq 1 +15 1" \
[all …]
Dtouch.test3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "touch" "touch walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
8 testing "1 2 3" "touch one two three && rm one two three && echo yes" "yes\n" \
10 testing "-c" "touch -c walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
11 testing "-c missing" "touch -c warrus && [ ! -e warrus ] && echo yes" \
14 testing "-t" \
19 testing "-t MMDDhhmm" \
23 testing "-t YYMMDDhhmm" \
27 testing "-t CCYYMMDDhhmm" \
[all …]
Dchgrp.test3 [ -f testing.sh ] && . testing.sh
16 # Set up a little testing hierarchy
32 #testing "name" "command" "result" "infile" "stdin"
35 testing "dir" "$IN chgrp root dir $OUT" \
37 testing "file" "$IN chgrp root dir/file $OUT" \
39 testing "dir and file" "$IN chgrp root dir dir/file $OUT" \
43 testing "symlink->file" "$IN chgrp root dir2/file $OUT" \
45 testing "symlink->dir" "$IN chgrp root dir2/dir $OUT" \
47 testing "-h symlink->dir" "$IN chgrp -h root dir2/dir $OUT" \
51 testing "-h symlink->file" "$IN chgrp -h root dir2/file $OUT" \
[all …]
/external/linux-kselftest/
DAndroid.bp66 "tools/testing/selftests/breakpoints/breakpoint_test.c",
67 "tools/testing/selftests/breakpoints/step_after_suspend_test.c",
85 "tools/testing/selftests/efivarfs/open-unlink.c",
86 "tools/testing/selftests/efivarfs/create-read.c",
97 "tools/testing/selftests/futex/functional/futex_wait_timeout.c",
98 "tools/testing/selftests/futex/functional/futex_wait_wouldblock.c",
99 "tools/testing/selftests/futex/functional/futex_requeue_pi_mismatched_ops.c",
100 "tools/testing/selftests/futex/functional/futex_wait_uninitialized_heap.c",
101 "tools/testing/selftests/futex/functional/futex_wait_private_mapped_file.c",
104 "tools/testing/selftests/futex/include",
[all …]
/external/guice/lib/build/
Dguava-testlib-16.0.1.jar ... com/google/common/util/concurrent/testing/ com/google/common/testing/ com ...
/external/webrtc/tools/valgrind-webrtc/drmemory/
Dsuppressions.txt12 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
22 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
32 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
42 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
52 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
60 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
68 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
75 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
85 *!testing::internal::HandleSehExceptionsInMethodIfSupported<testing::Test,void>
102 *!testing::internal::HandleSehExceptionsInMethodIfSupported<>
[all …]
/external/guava/guava-gwt/test/com/google/common/testing/
DEqualsTesterTest_gwt.java16 package com.google.common.testing;
19 return "com.google.common.testing.testModule"; in getModuleName()
22 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddEqualObjectWithOArgConstructor()
28 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullEqualObject()
34 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddNullReference()
40 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testAddTwoEqualObjectsAtOnceWithNull()
46 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testEqualityGroups()
52 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsIncompatibleClass()
58 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidEqualsNull()
64 …com.google.common.testing.EqualsTesterTest testCase = new com.google.common.testing.EqualsTesterTe… in testInvalidHashCode()
[all …]
/external/google-breakpad/
DMakefile.am43 AM_CXXFLAGS += -I$(top_srcdir)/src/common/android/testing/include
430 src/testing/gtest/src/gtest-all.cc \
431 src/testing/gtest/src/gtest_main.cc \
432 src/testing/src/gmock-all.cc \
450 -I$(top_srcdir)/src/testing/include \
451 -I$(top_srcdir)/src/testing/gtest/include \
452 -I$(top_srcdir)/src/testing/gtest \
453 -I$(top_srcdir)/src/testing
594 src/testing/gtest/src/gtest-all.cc \
595 src/testing/gtest/src/gtest_main.cc \
[all …]
DMakefile.in120 @ANDROID_HOST_TRUE@ -I$(top_srcdir)/src/common/android/testing/include
585 src/testing/gtest/src/gtest-all.cc \
586 src/testing/gtest/src/gtest_main.cc \
587 src/testing/src/gmock-all.cc \
612 @LINUX_HOST_TRUE@ src/testing/gtest/src/src_client_linux_linux_client_unittest_shlib-gtest-all.$(OB…
613 @LINUX_HOST_TRUE@ src/testing/gtest/src/src_client_linux_linux_client_unittest_shlib-gtest_main.$(O…
614 @LINUX_HOST_TRUE@ src/testing/src/src_client_linux_linux_client_unittest_shlib-gmock-all.$(OBJEXT) \
679 src/testing/gtest/src/gtest-all.cc \
680 src/testing/gtest/src/gtest_main.cc \
681 src/testing/src/gmock-all.cc
[all …]
/external/svox/pico/tests/data/
Dxsampa_pico_man_en-GB.txt19 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;bIn"/>.</speak>
22 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;dIn"/>.</speak>
25 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;gIv"/>.</speak>
28 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;kIn"/>.</speak>
31 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;pIn"/>.</speak>
34 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;tIn"/>.</speak>
40 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;TIN"/>.</speak>
43 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;mQk"/>.</speak>
46 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;nQk"/>.</speak>
51 <speak xml:lang="en-GB"> Testing <phoneme alphabet="xsampa" ph="&#34;DIs"/>.</speak>
[all …]
Dxsampa_pico_man_en-US.txt20 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;bIn"/>.</speak>
23 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;dIn"/>.</speak>
26 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;gIv"/>.</speak>
29 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;kIn"/>.</speak>
32 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;pIn"/>.</speak>
35 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;tIn"/>.</speak>
41 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;TIN"/>.</speak>
44 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;mA:k"/>.</speak>
47 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;nA:k"/>.</speak>
52 <speak xml:lang="en-US"> Testing <phoneme alphabet="xsampa" ph="&#34;DIs"/>.</speak>
[all …]
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlbuilder_unittest.cc26 XmlParser::ParseXml(&builder, "<testing/>"); in TEST()
27 EXPECT_EQ("<testing/>", builder.BuiltElement()->Str()); in TEST()
32 XmlParser::ParseXml(&builder, "<testing a='b'/>"); in TEST()
33 EXPECT_EQ("<testing a=\"b\"/>", builder.BuiltElement()->Str()); in TEST()
38 XmlParser::ParseXml(&builder, "<testing e='' long='some text'/>"); in TEST()
39 EXPECT_EQ("<testing e=\"\" long=\"some text\"/>", in TEST()
64 XmlParser::ParseXml(&builder, "<testing a='>'/>"); in TEST()
65 EXPECT_EQ("<testing a=\"&gt;\"/>", builder.BuiltElement()->Str()); in TEST()
70 XmlParser::ParseXml(&builder, "<testing a='&lt;>&amp;&quot;'/>"); in TEST()
71 EXPECT_EQ("<testing a=\"&lt;&gt;&amp;&quot;\"/>", in TEST()
[all …]
/external/webrtc/webrtc/common_audio/resampler/
Dpush_sinc_resampler_unittest.cc14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h"
37 class PushSincResamplerTest : public ::testing::TestWithParam<
38 ::testing::tuple<int, int, double, double>> {
41 : input_rate_(::testing::get<0>(GetParam())), in PushSincResamplerTest()
42 output_rate_(::testing::get<1>(GetParam())), in PushSincResamplerTest()
43 rms_error_(::testing::get<2>(GetParam())), in PushSincResamplerTest()
44 low_freq_error_(::testing::get<3>(GetParam())) { in PushSincResamplerTest()
257 // testing. All thresholds are in dbFS, http://en.wikipedia.org/wiki/DBFS.
261 ::testing::Values(
[all …]
/external/guava/guava-gwt/test/com/google/common/collect/testing/
DIteratorTesterTest_gwt.java16 package com.google.common.collect.testing;
19 return "com.google.common.collect.testing.testModule"; in getModuleName()
22 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testCanCatchDifferentContents()
27 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testCanCatchDifferentLengthOfIteration()
32 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testCanCatchDifferentRemoveBehaviour()
37 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testCanCatchSunJavaBug6529795InTargetIterator()
42 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testCanWorkAroundSunJavaBug6529795InTargetIterator()
47 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testMismatchedException()
52 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testMissingException()
57 …com.google.common.collect.testing.IteratorTesterTest testCase = new com.google.common.collect.test… in testSimilarException()
[all …]
/external/autotest/client/tests/bash_shared_mapping/
Dext3-tools.tar.gz ... /testing/CVS/Root ext3-tools/testing/CVS/Repository ext3-tools/testing/ ...
/external/autotest/client/tests/fsx/
Dext3-tools.tar.gz

12345678910>>...274