Home
last modified time | relevance | path

Searched refs:runtest (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/test/util-tests/tests/sed/
H A Dsed_addr.ksh21 function runtest { function
54 runtest "3p" "c"
55 runtest "\$p" "j"
56 runtest "7,\$p" "g h a j"
57 runtest "/d/p" "d"
58 runtest "/a/p" "a a"
61 runtest "5,7p" "e f g"
62 runtest "5,4p" "e"
63 runtest "/a/,4p" "a b c d a"
64 runtest "0,/b/p" ""
[all …]
/illumos-gate/usr/src/test/libc-tests/tests/
H A Dstrtonum.c77 runtest(const char *nstr, long long minval, long long maxval, long long expval, in runtest() function
88 runtest("1", 0, 100, 1, true); in main()
89 runtest("0", -3, 7, 0, true); in main()
90 runtest("0", 2, 10, 0, false); in main()
91 runtest("0", 2, LLONG_MAX, 0, false); in main()
92 runtest("-2", 0, LLONG_MAX, 0, false); in main()
93 runtest("0", -5, LLONG_MAX, 0, true); in main()
94 runtest("-3", -3, LLONG_MAX, -3, true); in main()
95 runtest("-2", 10, -1, 0, false); in main()
96 runtest("-2", -10, -1, -2, true); in main()
[all …]
H A Dutimes.c138 runtest(enum ttype fn, char *dir, timespec_t *atim, timespec_t *mtim) in runtest() function
480 if (!runtest(UTIMES, dir, atim, mtim)) in runtests()
482 if (!runtest(LUTIMES, dir, atim, mtim)) in runtests()
484 if (!runtest(FUTIMES, dir, atim, mtim)) in runtests()
486 if (!runtest(FUTIMESAT, dir, atim, mtim)) in runtests()
488 if (!runtest(FUTIMENS, dir, atim, mtim)) in runtests()
490 if (!runtest(UTIMENSAT, dir, atim, mtim)) in runtests()
/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dspeedtest.tcl10 proc runtest {title} { procedure
135 runtest {1000 INSERTs}
148 runtest {25000 INSERTs in a transaction}
159 runtest {100 SELECTs without an index}
168 runtest {100 SELECTs on a string comparison}
176 runtest {Creating an index}
187 runtest {5000 SELECTs with an index}
200 runtest {1000 UPDATEs without an index}
212 runtest {25000 UPDATEs with an index}
223 runtest {25000 text UPDATEs with an index}
[all …]
H A Dspeedtest2.tcl10 proc runtest {title} { procedure
127 runtest {25000 INSERTs in a transaction}
133 runtest {DELETE everything}
144 runtest {25000 INSERTs in a transaction}
150 runtest {DELETE everything}
161 runtest {25000 INSERTs in a transaction}
167 runtest {DELETE everything}
178 runtest {25000 INSERTs in a transaction}
184 runtest {DELETE everything}
195 runtest {25000 INSERTs in a transaction}
[all …]
/illumos-gate/usr/src/test/util-tests/tests/dladm/
H A Dshow-overlay-exit.ksh59 function runtest function
66 runtest $* || fatal "show-overlay=$* failed, expected success\n"
71 runtest $* && fatal "show-overlay=$* succeeded, expected failure\n"
H A Dallowed-ips.ksh41 function runtest function
48 runtest $* || fatal "allowed-ips=$* failed, expected success\n"
53 runtest $* && fatal "allowed-ips=$* succeeded, expected failure\n"
/illumos-gate/usr/src/test/os-tests/tests/sockfs/
H A Dsockpair.c81 runtest(int sotype) in runtest() function
160 runtest(SOCK_STREAM); in main()
163 runtest(SOCK_DGRAM); in main()