Searched refs:TEST (Results 1 - 25 of 136) sorted by relevance

123456

/freebsd-10.1-release/tools/regression/bpf/bpf_filter/
H A DMakefile53 .for TEST in ${TEST_CASES}
54 ${TEST}: ${.CURDIR}/tests/${TEST}.h ${SRCS}
55 @${CC} ${CFLAGS} -DBPF_TEST_H=\"${TEST}.h\" \
56 -o ${.CURDIR}/${TEST} ${SRCS} ${LIBS}
60 .for TEST in ${TEST_CASES}
62 @${ECHO} -n "${TEST}: "
65 @-time ${.CURDIR}/${TEST}
67 @-env MALLOC_OPTIONS=J ${.CURDIR}/${TEST}
69 @rm -f ${.CURDIR}/${TEST}
[all...]
/freebsd-10.1-release/tools/regression/lib/msun/
H A Dtest-fmaxmin.c47 #define TEST(func, type, x, y, expected) do { \ macro
73 TEST(fmaxf, float, big, small, expected_max);
74 TEST(fmaxf, float, small, big, expected_max);
75 TEST(fmax, double, big, small, expected_max);
76 TEST(fmax, double, small, big, expected_max);
77 TEST(fmaxl, long double, big, small, expected_max);
78 TEST(fmaxl, long double, small, big, expected_max);
79 TEST(fminf, float, big, small, expected_min);
80 TEST(fminf, float, small, big, expected_min);
81 TEST(fmi
[all...]
/freebsd-10.1-release/usr.sbin/etcupdate/tests/
H A Dtzsetup_test.sh65 TEST=$WORKDIR/test
73 rm -rf $OLD $NEW $TEST $CONFLICTS
74 mkdir -p $OLD $NEW $TEST
75 mkdir -p $TEST/etc
76 mkdir -p $TEST/var/db
77 mkdir -p $TEST/usr/share/zoneinfo
80 echo "foo" > $TEST/usr/share/zoneinfo/foo
84 # $1 - relative path to file that should be missing from TEST
87 if [ -e $TEST/$1 -o -L $TEST/
[all...]
H A Dconflicts_test.sh65 TEST=$WORKDIR/test
73 rm -rf $OLD $NEW $TEST $CONFLICTS
74 mkdir -p $OLD/etc $NEW/etc $TEST/etc
86 cat > $TEST/etc/login.conf <<EOF
92 $COMMAND -r -d $WORKDIR -D $TEST >/dev/null
100 rm -rf $OLD $NEW $TEST $CONFLICTS
101 mkdir -p $OLD/etc/mail $NEW/etc/mail $TEST/etc/mail
122 cat > $TEST/etc/mail/aliases <<EOF
130 $COMMAND -r -d $WORKDIR -D $TEST >/dev/null
133 # $1 - relative path to file that should be missing from TEST
[all...]
H A Dfbsdid_test.sh65 TEST=$WORKDIR/test
87 rm -rf $OLD $NEW $TEST $CONFLICTS
88 mkdir -p $OLD $NEW $TEST
93 store_id $TEST/remove ": head/remove 12345 jhb "
99 store_id $TEST/old ": head/old 12000 jhb "
100 for i in $OLD $TEST; do
115 store_id $TEST/already ": src/already,v 1.2 jhb Exp "
120 for i in $NEW $TEST; do
130 store_id $TEST/add ""
137 store_id $TEST/conflic
[all...]
H A Dignore_test.sh65 TEST=$WORKDIR/test
73 rm -rf $OLD $NEW $TEST $CONFLICTS
74 mkdir -p $OLD $NEW $TEST
76 for i in $OLD $NEW $TEST; do
83 for i in $OLD $TEST; do
87 for i in $OLD $TEST; do
92 for i in $OLD $TEST; do
98 # $1 - relative path to file that should be missing from TEST
101 if [ -e $TEST/$1 -o -L $TEST/
[all...]
H A Dpreworld_test.sh65 TEST=$WORKDIR/test
73 rm -rf $SRC $OLD $TEST $CONFLICTS
113 cp -R $OLD $TEST
114 sed -I "" -e 's/root::/root:<rpass>:/' $TEST/etc/master.passwd
115 cat >> $TEST/etc/master.passwd <<EOF
122 $OLD/etc/group > $TEST/etc/group
123 cat >> $TEST/etc/group <<EOF
129 rm $TEST/etc/inetd.conf
130 touch $TEST/etc/localtime
146 # $1 - relative path to file that should be missing from TEST
[all...]
H A Dtests_test.sh65 TEST=$WORKDIR/test
74 rm -rf $OLD $NEW $TEST $CONFLICTS
75 mkdir -p $OLD/etc $NEW/etc $TEST/etc
102 $TEST/$i/$j/$k
108 for i in $OLD $NEW $TEST; do
130 echo "bar" > $TEST/equal/difftype/difftype/fifo
131 ln -s "test" $TEST/equal/difftype/difftype/fromdir
138 ln -s "bar" $TEST/equal/difflinks/difflinks/link
145 echo "bar" > $TEST/equal/difffiles/difffiles/file
149 for i in $OLD $TEST; d
[all...]
H A Dalways_test.sh65 TEST=$WORKDIR/test
76 rm -rf $OLD $NEW $TEST $CONFLICTS
82 $TEST/$i/$j/$k
98 mkdir $TEST/first/difftype/second/fifo
103 ln -s "test link" $TEST/first/difflinks/second/link
108 echo "bar" > $TEST/first/difffiles/second/file
114 mkfifo $TEST/second/second/difftype/dir
119 ln -s "test link" $TEST/second/second/difflinks/link
124 echo "test" > $TEST/second/second/difffiles/file
136 echo "foo" > $TEST/difftyp
[all...]
/freebsd-10.1-release/contrib/ncurses/
H A Dtar-copy.sh60 TEST=`ls -d $1 2>/dev/null`
61 if test -z "$TEST"
/freebsd-10.1-release/contrib/ntp/
H A Dbuild148 TEST="${TEST-}"
149 if [ -z "$TEST" ] ; then
153 TEST="$try"
154 # echo "Using $TEST"
159 if [ -z "$TEST" ] ; then
178 ( "$TEST" config.status -nt ../configure &&
179 "$TEST" sntp/config.status -nt ../sntp/configure &&
180 ( "$TEST" '!' -f sntp/libevent/config.status ||
181 "$TEST" snt
[all...]
/freebsd-10.1-release/crypto/openssl/util/
H A Dselftest.pl80 if (open(TEST,">cctest.c")) {
81 print TEST "#include <stdio.h>\n#include <stdlib.h>\n#include <errno.h>\nmain(){printf(\"Hello world\\n\");}\n";
82 close(TEST);
98 if (open(TEST,">cctest.c")) {
99 print TEST "#include <stdio.h>\n#include <stdlib.h>\n#include <openssl/opensslv.h>\nmain(){printf(OPENSSL_VERSION_TEXT);}\n";
100 close(TEST);
/freebsd-10.1-release/tools/regression/posixshm/
H A Dposixshm.c177 TEST(remap_object, "remap object");
217 TEST(reopen_object, "reopen object");
252 TEST(readonly_mmap_write, "RDONLY object");
273 TEST(open_after_unlink, "open after unlink");
281 TEST(open_invalid_path, "open invalid path");
289 TEST(open_write_only, "open with O_WRONLY");
297 TEST(open_extra_flags, "open with extra flags");
312 TEST(open_anon, "open anonymous object");
320 TEST(open_anon_readonly, "open SHM_ANON with O_RDONLY");
328 TEST(open_bad_path_pointe
[all...]
H A Dtest.h43 #define TEST(function, name) \ macro
/freebsd-10.1-release/tools/regression/posixsem/
H A Dtest.h43 #define TEST(function, name) \ macro
H A Dposixsem.c282 TEST(open_after_unlink, "open after unlink");
290 TEST(open_invalid_path, "open invalid path");
298 TEST(open_extra_flags, "open with extra flags");
308 TEST(open_bad_value, "open with invalid initial value");
316 TEST(open_bad_path_pointer, "open bad path pointer");
329 TEST(open_path_too_long, "open pathname too long");
337 TEST(open_nonexisting_semaphore, "open nonexistent semaphore");
354 TEST(exclusive_create_existing_semaphore, "O_EXCL of existing semaphore");
362 TEST(init_bad_value, "init with invalid initial value");
370 TEST(unlink_bad_path_pointe
[all...]
/freebsd-10.1-release/contrib/binutils/libiberty/
H A Dvasprintf.c41 #ifdef TEST
141 #ifdef TEST
162 #ifdef TEST
196 #endif /* TEST */
H A D_doprnt.c35 #define TEST macro
38 #ifdef TEST /* Make sure to use the internal one. */
205 #ifdef TEST
296 #endif /* TEST */
/freebsd-10.1-release/contrib/gcclibs/libiberty/
H A Dvasprintf.c41 #ifdef TEST
141 #ifdef TEST
162 #ifdef TEST
196 #endif /* TEST */
H A D_doprnt.c35 #define TEST macro
38 #ifdef TEST /* Make sure to use the internal one. */
205 #ifdef TEST
296 #endif /* TEST */
/freebsd-10.1-release/lib/libc/stdlib/
H A Drand.c45 #ifdef TEST
47 #endif /* TEST */
156 #ifdef TEST
182 #endif /* TEST */
/freebsd-10.1-release/crypto/openssl/crypto/dsa/
H A Ddsagen.c62 #define TEST macro
71 #ifdef TEST
/freebsd-10.1-release/contrib/apr-util/test/
H A Ddbd.c23 #define TEST(msg,func) \ macro
389 TEST("create table", create_table);
390 TEST("insert rows", insert_rows);
391 TEST("invalid op", invalid_op);
392 TEST("select random", select_random);
393 TEST("select sequential", select_sequential);
394 TEST("transactions", test_transactions);
395 TEST("prepared select", test_pselect);
396 TEST("prepared query", test_pquery);
397 TEST("dro
[all...]
/freebsd-10.1-release/crypto/openssl/
H A Dconfig25 TEST="false"
33 -t*) TEST="true";;
34 -h*) TEST="true"; cat <<EOF
525 if [ "$TEST" = "false" -a -t 1 ]; then
544 if [ "$TEST" = "false" -a -t 1 ]; then
559 if [ "$TEST" = "false" -a -t 1 ]; then
592 if [ "$TEST" = "false" -a -t 1 ]; then
609 if [ "$TEST" = "false" -a -t 1 ]; then
656 # if [ "$TEST" = "false" -a -t -1 ]; then
685 if [ "$TEST"
[all...]
/freebsd-10.1-release/crypto/openssl/crypto/md4/
H A DMakefile17 TEST=md4test.c macro
46 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
74 rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(APPS)

Completed in 151 milliseconds

123456