HomeSort by relevance Sort by last modified time
    Searched refs:testing (Results 51 - 75 of 7453) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/testdata/
standalone_test.go 3 import "testing"
5 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/bench/
x_test.go 3 import "testing"
5 func Benchmark(b *testing.B) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/cgocover/
p_test.go 3 import "testing"
5 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/coverasm/
p_test.go 3 import "testing"
5 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/coverbad/
p_test.go 3 import "testing"
5 func Test(t *testing.T) {}
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/coverdep/
p_test.go 3 import "testing"
5 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/coverdot2/
p_test.go 3 import "testing"
5 func TestG(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/testcycle/p1/
p1_test.go 3 import "testing"
5 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetfail/p2/
p2_test.go 3 import "testing"
5 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/
standalone_benchmark_test.go 3 import "testing"
5 func Benchmark(b *testing.B) {
standalone_test.go 3 import "testing"
5 func Test(t *testing.T) {
  /external/toybox/tests/
du.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
12 testing "(no options)" "du -k du_test" "4\tdu_test/test\n8\tdu_test\n" "" ""
13 testing "-s" "du -k -s du_test" "8\tdu_test\n" "" ""
19 testing "counts symlinks without following" "du -ks du_test" "8\tdu_test\n" "" ""
20 testing "-L follows symlinks" "du -ksL du_test" "16\tdu_test\n" "" ""
22 testing "-L avoid endless loop" "du -ksL du_test" "16\tdu_test\n" "" ""
25 testing "-HL follows symlinks" "du -ksHL du_test" "16\tdu_test\n" "" ""
26 testing "-H does not follow unspecified symlinks" "du -ksH du_test" "8\tdu_test\n" "" "
    [all...]
paste.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
12 testing "" "paste one two" "one1\ttwo1\none2\ttwo2\none3\ttwo3\n" "" ""
13 testing "" "paste -s one two" "one1\tone2\tone3\ntwo1\ttwo2\ttwo3\n" "" ""
14 testing "" "paste -s three four" "\n\n" "" ""
15 testing "" "paste three four" "" "" ""
16 testing "" "paste - - -" "uno\tdos\tdesqview\nunix\t\t\n" "" "uno\ndos\ndesqview\nunix\n"
17 testing "" "paste - - - -d ''" "unodosdesqview\nunix\n" "" "uno\ndos\ndesqview\nunix\n"
18 testing "" "paste one two one two"
    [all...]
mkdir.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "mkdir" "mkdir one && [ -d one ] && echo yes" "yes\n" "" ""
11 testing "existing" \
15 testing "one two" \
19 testing "missing/one" \
22 testing "-p" \
27 testing "-p existing" "mkdir -p existing && echo yes" "yes\n" "" ""
31 testing "(default permissions)"
    [all...]
groupdel.test 6 [ -f testing.sh ] && . testing.sh
11 #testing "name" "command" "result" "infile" "stdin"
13 testing "group_name (text)" "groupadd toyTestGroup &&
16 testing "group_name (alphanumeric)" "groupadd toy1Test2Group3 &&
19 testing "group_name (numeric)" "groupadd 987654321 &&
22 testing "group_name (with ./-)" "groupadd toy.1Test-2Group.3 &&
25 testing "group_name with group_id" "groupadd -g 49999 toyTestGroup &&
mkfifo.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "mkfifo" "mkfifo one && [ -p one ] && echo yes" "yes\n" "" ""
11 testing "existing" \
15 testing "one two" \
20 testing "(default permissions)" \
26 testing "-m 124" \
pwd.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
9 testing "pwd" "[ $(stat -c %i "$(pwd)") = $(stat -c %i .) ] && echo yes" \
11 testing "-P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i .) ] && echo yes" \
17 testing "pwd" "[ $(stat -c %i "$(pwd)") = $(stat -c %i "$PWD") ] && echo yes" \
19 testing "-P" "[ $(stat -c %i "$(pwd -P)") = $(stat -c %i "$PWD") ] || echo yes" \
25 testing "(bad PWD)" "[ "$(pwd)" = "$(cd . ; pwd)" ] && echo yes" \
readlink.test 3 [ -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" "" "
    [all...]
split.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
7 testing "split" "seq 1 12345 | split && ls xa[a-z] | wc -l" "13\n" "" ""
10 testing "-" "seq 1 12345 | split - && ls xa[a-z] | wc -l" "13\n" "" ""
14 testing "file" "split file && ls xa[a-z] | wc -l" "13\n" "" ""
17 testing "-l" "split file -l 10k && wc -l xab" "2105 xab\n" "" ""
20 testing "suffix exhaustion" \
24 testing "bytes" \
27 testing "reassembly"
    [all...]
link.test 6 [ -f testing.sh ] && . testing.sh
8 #testing "name" "command" "result" "infile" "stdin"
11 testing "fails on non-existent file" "link foo/foo baz || echo GOOD" "GOOD\n" "" ""
15 testing "create_hardlink" "link file hlink && [ file -ef hlink ] &&
20 testing "preserves_hardlinks" "link file hlink 2>/dev/null || echo 'yes'; rm -rf hlink" \
24 testing "create_hardlink_and_remove_sourcefile" "link file hlink &&
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
AClassToRemember.java 1 package org.robolectric.testing;
AnUninstrumentedClass.java 1 package org.robolectric.testing;
  /external/tensorflow/tensorflow/core/platform/
stacktrace_handler.h 20 namespace testing { namespace in namespace:tensorflow
25 } // namespace testing
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue9026.go 4 "testing"
9 func test9026(t *testing.T) { issue9026.Test(t) }
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/cgocover2/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {

Completed in 269 milliseconds

1 23 4 5 6 7 8 91011>>