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

1 23 4 5 6 7 8 91011>>

  /external/toybox/tests/
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...]
wc.test 3 [ -f testing.sh ] && . testing.sh
5 #testing "name" "command" "result" "infile" "stdin"
14 testing "wc" "wc >/dev/null && echo yes" "yes\n" "" ""
15 testing "empty file" "wc" " 0 0 0\n" "" ""
16 testing "standard input" "wc" " 1 3 5\n" "" "a b\nc"
17 testing "-c" "wc -c file1" "26 file1\n" "" ""
18 testing "-l" "wc -l file1" "4 file1\n" "" ""
19 testing "-w" "wc -w file1" "5 file1\n" "" ""
20 NOSPACE=1 testing "format" "wc file1" " 4 5 26 file1\n" "" "
    [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 &&
  /prebuilts/go/darwin-x86/misc/cgo/test/
cgo_test.go 7 import "testing"
13 func TestAlign(t *testing.T) { testAlign(t) }
14 func TestConst(t *testing.T) { testConst(t) }
15 func TestEnum(t *testing.T) { testEnum(t) }
16 func TestAtol(t *testing.T) { testAtol(t) }
17 func TestErrno(t *testing.T) { testErrno(t) }
18 func TestMultipleAssign(t *testing.T) { testMultipleAssign(t) }
19 func TestUnsignedInt(t *testing.T) { testUnsignedInt(t) }
20 func TestCallback(t *testing.T) { testCallback(t) }
21 func TestCallbackGC(t *testing.T) { testCallbackGC(t)
    [all...]
issue9026.go 4 "testing"
9 func test9026(t *testing.T) { issue9026.Test(t) }
  /prebuilts/go/linux-x86/misc/cgo/test/
cgo_test.go 7 import "testing"
13 func TestAlign(t *testing.T) { testAlign(t) }
14 func TestConst(t *testing.T) { testConst(t) }
15 func TestEnum(t *testing.T) { testEnum(t) }
16 func TestAtol(t *testing.T) { testAtol(t) }
17 func TestErrno(t *testing.T) { testErrno(t) }
18 func TestMultipleAssign(t *testing.T) { testMultipleAssign(t) }
19 func TestUnsignedInt(t *testing.T) { testUnsignedInt(t) }
20 func TestCallback(t *testing.T) { testCallback(t) }
21 func TestCallbackGC(t *testing.T) { testCallbackGC(t)
    [all...]
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) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/cgocover3/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/cgocover4/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/importmain/test/
test_test.go 3 import "testing"
6 func TestCase(t *testing.T) {}
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/main_test/
m_test.go 5 "testing"
8 func Test1(t *testing.T) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/testcycle/p3/
p3_test.go 4 "testing"
9 func Test(t *testing.T) {
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/testcycle/q1/
q1_test.go 3 import "testing"
6 func Test(t *testing.T) {}
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/testimport/
p_test.go 6 "testing"
9 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/cgocover2/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/cgocover3/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/cgocover4/
x_test.go 5 "testing"
8 func TestF(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/importmain/test/
test_test.go 3 import "testing"
6 func TestCase(t *testing.T) {}
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/main_test/
m_test.go 5 "testing"
8 func Test1(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/testcycle/p3/
p3_test.go 4 "testing"
9 func Test(t *testing.T) {
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/testcycle/q1/
q1_test.go 3 import "testing"
6 func Test(t *testing.T) {}
  /prebuilts/go/linux-x86/src/cmd/go/testdata/testimport/
p_test.go 6 "testing"
9 func TestF(t *testing.T) {

Completed in 1970 milliseconds

1 23 4 5 6 7 8 91011>>