| /freebsd/tools/regression/nfsmmap/test2/ |
| H A D | Makefile | 1 PROG= test2 4 CLEANFILES= test2.zeros test2.good test2.data test2.scratch 6 all: test2 test2.zeros test2.good 7 @cp ${.OBJDIR}/test2.zeros ${.OBJDIR}/test2.data 9 ssh ${NFSSERVER} touch ${.OBJDIR}/test2.data; \ 11 @cd ${.OBJDIR}; ${.OBJDIR}/test2 12 @if cmp -s ${.OBJDIR}/test2.data ${.OBJDIR}/test2.good && \ 13 cmp -s ${.OBJDIR}/test2.scratch ${.OBJDIR}/test2.good ; then \ 19 test2.zeros: test2.zeros.uu 22 test2.good: test2.good.uu
|
| /freebsd/lib/msun/tests/ |
| H A D | invtrig_test.c | 89 #define test2(func, y, x, result, excepts) \ macro 173 test2(atan2f, 0.0, ldexpf(z, e), 0.0, 0); in ATF_TC_BODY() 174 test2(atan2f, -0.0, ldexpf(z, e), -0.0, 0); in ATF_TC_BODY() 175 test2(atan2f, 0.0, ldexpf(-z, e), (float)pi, FE_INEXACT); in ATF_TC_BODY() 176 test2(atan2f, -0.0, ldexpf(-z, e), (float)-pi, FE_INEXACT); in ATF_TC_BODY() 177 test2(atan2f, ldexpf(z, e), 0.0, (float)pi / 2, FE_INEXACT); in ATF_TC_BODY() 178 test2(atan2f, ldexpf(z, e), -0.0, (float)pi / 2, FE_INEXACT); in ATF_TC_BODY() 179 test2(atan2f, ldexpf(-z, e), 0.0, (float)-pi / 2, FE_INEXACT); in ATF_TC_BODY() 180 test2(atan2f, ldexpf(-z, e), -0.0, (float)-pi / 2, FE_INEXACT); in ATF_TC_BODY() 183 test2(atan2, 0.0, ldexp(z, e), 0.0, 0); in ATF_TC_BODY() [all …]
|
| H A D | fmaxmin_test.c | 101 ATF_TC_WITHOUT_HEAD(test2); 102 ATF_TC_BODY(test2, tc) in ATF_TC_BODY() argument 170 ATF_TP_ADD_TC(tp, test2); in ATF_TP_ADD_TCS()
|
| /freebsd/contrib/netbsd-tests/usr.bin/grep/ |
| H A D | t_grep.sh | 315 printf "mackeral\000cod\000crab\000" > test2 318 grep -z -A1 cod test1 test2 321 grep -z -B1 cod test1 test2 324 grep -z -C1 cod test1 test2 482 printf "\n" > test2 488 atf_check -o file:test2 grep -vw -e "" test2 499 printf "\n" > test2 505 atf_check -o file:test2 grep -x -e "" test2 606 printf "M{1}" > test2 616 atf_check -o inline:"M\n" egrep -o -e "M{1}" test2 [all …]
|
| /freebsd/crypto/krb5/src/util/et/ |
| H A D | Makefile.in | 69 test2.o: test2.c 70 test_et.o: test1.h test2.h 73 test1.c test2.c et1.c et2.c test1.h test2.h et1.h et2.h: \ 82 test_et: test_et.o test1.o test2.o $(COM_ERR_DEPLIB) $(SUPPORT_DEPLIB) 83 $(CC_LINK) -o test_et test_et.o test1.o test2.o $(COM_ERR_LIB) $(SUPPORT_LIB) 88 $(OUTPRE)test2.$(OBJEXT) $(CLIB) 159 test1.h test1.c test2.h test2.c test_et \
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | nullfs32.sh | 23 mkdir storage test1 test2 25 mount_nullfs -o rw,noatime ./storage ./test2 29 rm ./test2/random.dd 39 umount $mntpoint/test2
|
| H A D | tmpfs10.sh | 79 test2(void) 132 test2(); function 134 test2(); function
|
| H A D | exlock2.sh | 102 ; /* wait for test2 to signal "done" */ 112 test2(void) 180 test2(); function
|
| H A D | churn.sh | 83 test2(void *arg __unused) 129 if ((r = pthread_create(&tp[0], NULL, test2, NULL)) != 0) 131 if ((r = pthread_create(&tp[1], NULL, test2, NULL)) != 0)
|
| H A D | sndstat.sh | 95 test2(void *arg __unused) 129 if ((e = pthread_create(&rp[j], NULL, test2, NULL)) != 0)
|
| H A D | mmap5.sh | 70 test2(void) 107 test2(); function
|
| H A D | mmap7.sh | 76 test2(void *arg __unused) 115 if ((e = pthread_create(&cp[i], NULL, test2, NULL)) != 0)
|
| H A D | seekdir.sh | 22 mkdir test2 24 [ `echo $mntpoint/test2/* | wc -w` -eq 1 ] ||
|
| H A D | mmap6.sh | 139 test2(void) 155 test2(); function
|
| H A D | mlockall6.sh | 112 test2(void) 165 test2(); function
|
| /freebsd/crypto/openssl/test/ |
| H A D | bio_callback_test.c | 52 char test2[] = "hello"; in test_bio_callback_ex() local 53 const size_t test2len = sizeof(test2) - 1; in test_bio_callback_ex() 158 i = BIO_puts(bio, test2); in test_bio_callback_ex() 163 || !TEST_ptr_eq(my_param_argp[0], test2) in test_bio_callback_ex() 169 || !TEST_ptr_eq(my_param_argp[1], test2) in test_bio_callback_ex() 224 char test2[] = "hello"; in test_bio_callback() local 225 const int test2len = sizeof(test2) - 1; in test_bio_callback() 310 i = BIO_puts(bio, test2); in test_bio_callback() 315 || !TEST_ptr_eq(my_param_argp[0], test2) in test_bio_callback() 321 || !TEST_ptr_eq(my_param_argp[1], test2) in test_bio_callback()
|
| /freebsd/usr.sbin/pw/tests/ |
| H A D | pw_usermod_test.sh | 107 atf_check -s exit:0 ${PW} groupadd test2 108 atf_check -s exit:0 ${PW} useradd foo -G test1,test2 110 atf_check -o match:"foo" -s exit:0 ${PW} groupshow test2 113 atf_check -o match:"bar" -s exit:0 ${PW} groupshow test2 121 atf_check -s exit:0 ${PW} groupadd test2 124 atf_check -s exit:0 ${PW} useradd foo -G test1,test2 126 atf_check -o match:"foo" -s exit:0 ${PW} groupshow test2
|
| /freebsd/bin/sh/tests/parser/ |
| H A D | alias15.0.stdout | 3 echo test2 4 test2
|
| /freebsd/usr.bin/bmake/tests/syntax/semi/ |
| H A D | Makefile.test | 16 .ifmake test2 22 test2:
|
| /freebsd/usr.bin/bmake/tests/syntax/enl/ |
| H A D | Makefile.test | 14 .elifmake test2 22 test2:
|
| /freebsd/lib/libipsec/ |
| H A D | test-policy.c | 90 int test2(void); 99 test2(); 223 test2() in test2() function
|
| /freebsd/contrib/lua/src/ |
| H A D | liolib.c | 457 static int test2 (RN *rn, const char *set) { in test2() function 490 test2(&rn, "-+"); /* optional sign */ in read_number() 491 if (test2(&rn, "00")) { in read_number() 492 if (test2(&rn, "xX")) hex = 1; /* numeral is hexadecimal */ in read_number() 496 if (test2(&rn, decp)) /* decimal point? */ in read_number() 498 if (count > 0 && test2(&rn, (hex ? "pP" : "eE"))) { /* exponent mark? */ in read_number() 499 test2(&rn, "-+"); /* exponent sign */ in read_number()
|
| /freebsd/usr.sbin/syslogd/tests/ |
| H A D | syslogd_test.sh | 394 logger -p user.debug -t test2 -h 169.254.0.1 -S 169.254.0.2:515 "hello, world" 397 logger -p user.debug -t test2 -h 169.254.0.1 -S 169.254.0.3:515 "hello, world" 445 logger -h 169.254.0.2 -p mark.debug -t test2 "hello, world" 477 logger -p user.debug -t test2 -h 169.254.0.1 -S 169.254.0.2:515 "hello, world" 540 logger -h 169.254.0.3 -P $SYSLOGD_UDP_PORT -p mail.debug -t test2 "you've got mail"
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/sha1/ |
| H A D | t_shs3.c | 11 static void test2(void); 102 test2(); in process() 121 test2(); in process() 176 static void test2(void) in test2() function
|
| /freebsd/usr.sbin/etcupdate/tests/ |
| H A D | ignore_test.sh | 235 $WORKDIR/test2.out 242 diff -u -L "correct" $WORKDIR/correct2.out -L "test" $WORKDIR/test2.out \
|